@charset "utf-8";
/* CSS Document */
/*******************************************************************************************
	index.css
********************************************************************************************/

/*==========================================================================
	メインビジュアル
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
#mainview {
	width: 100%;
    height: 300px;
	padding: 42px 0 0;
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	#mainview {
		padding: 90px 0 0;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	#mainview {
		height: 500px;
		padding: 90px 0 0;
	}
}

/*==========================================================================
	概要
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
.overviewArea {
}
.overviewArea .overviewAreainnr {
	padding: 0 3vw;
}
.overviewArea .overviewAreainnr figure {
	text-align: center;
	margin-bottom: 30px;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.overviewArea {
	}
	.overviewArea .overviewAreainnr {
	}
	.overviewArea .overviewAreainnr figure {
		text-align: center;
		margin-bottom: 60px;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	.overviewArea {
	}
	.overviewArea .overviewAreainnr {
		margin: 0 auto;
		max-width: 1100px;
	}
	.overviewArea .overviewAreainnr figure {
		text-align: center;
		margin-bottom: 80px;
	}
}


/*==========================================================================
	メニューボタン
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
.menuArea {
	position: relative;
	padding: 8vw 10px 60px;
	overflow: hidden;
	background-color: #FFF;
}
.menuArea .msg {
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	color: #FFF;
	font-size: 22px;
	font-weight: bold;
	margin: 30px 0 40px;
	text-align: center;
}
.menuArea .msg span {
	color: #ffff33;
}
.menuArea::before {
	content: "";
	z-index: 2;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 6vw solid #FFF;
    border-left: 49.5vw solid transparent;
    border-right: 49.5vw solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.menuArea::after {
	content: "";
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background:linear-gradient(to right, #0cb50a, #a7d78d);
}
.menuArea .menuAreainnr {
	padding: 0 3vw;
	position: relative;
	z-index: 2;
}
.menuArea .menuAreainnr .menuBoxlst {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.menuArea .menuAreainnr .menuBoxlst li {
	background-color: #FFF;
	box-sizing: border-box;
	padding: 30px 20px;
	margin: 0 0 20px 0;
	width: 100%;
	box-shadow: 0px 0px 16px rgba(0,0,0,0.3);
	position: relative;
	background-image: url("../common/img/triangle_btn.png");
	background-position: center bottom 12px;
	background-repeat: no-repeat;
}
.menuArea .menuAreainnr .menuBoxlst li::after {
	content: "";
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background:linear-gradient(to right, #ffff33, #9aff98);
}
.menuArea .menuAreainnr .menuBoxlst li h3 {
	margin-bottom: 15px;
	text-align: center;
}
.menuArea .menuAreainnr .menuBoxlst li figure {
	text-align: center;
	margin-bottom: 30px;
}
.menuArea .menuAreainnr .msgtxt {
	margin: 20px 3vw;
	text-align: center;
	font-weight: bold;
	color: #007acd;
	font-size: 16px;
}
.menuArea .menuAreainnr .menuBoxlst li a {
	display: block;
	color: #000;
}
.menuArea .menuAreainnr .menuBoxlst li a:link {
	color: #000;
	text-decoration: none;
}
.menuArea .menuAreainnr .menuBoxlst li a:visited {
	color: #007acd;
	text-decoration: none;
}
.menuArea .menuAreainnr .menuBoxlst li a:hover, a:active {
	color: #007acd;
	text-decoration: none;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.menuArea .msg {
		font-size: 40px;
		margin: 35px 0 60px;
	}

	.menuArea::after {
		height: 600px;
	}
	.menuArea .menuAreainnr .menuBoxlst li {
		padding: 30px 20px;
		margin: 0;
		width: 32.5%;
	}
	.menuArea .menuAreainnr .menuBoxlst li h3 {
		margin-bottom: 35px;
		font-size: 20px;
		text-align: center;
	}
	.menuArea .menuAreainnr .menuBoxlst li p {
		font-size: 16px;
		line-height: 1.8;
	}
	.menuArea .menuAreainnr .menuBoxlst li figure {
		text-align: center;
		margin-bottom: 50px;
	}
	.menuArea .menuAreainnr .msgtxt {
		margin: 50px 3vw 30px;
		text-align: center;
		font-size: 22px;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	.menuArea .msg {
		font-size: 56px;
	}
	.menuArea .menuAreainnr {
		padding: 0;
		box-sizing: border-box;
		margin: 0 auto;
		max-width: 1300px;
	}
	.menuArea .menuAreainnr .menuBoxlst li {
		padding: 35px 30px;
		margin: 0;
		width: 31.5%;
	}
	.menuArea .menuAreainnr .menuBoxlst li h3 {
		font-size: 22px;
	}
}



/*==========================================================================
	ソリューション
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
.solutionArea {
}
.solutionArea .solutionAreainnr {
	padding: 0 3vw;
}
.solutionArea .solutionAreainnr .ttlAreaWap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}
.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt {
	width: 100%;
	margin-bottom: 20px;
}
.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt p {
	font-size: 26px;
	color: #999999;
	font-weight: bold;
	line-height: 1.0;
}
.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt h2 {
	font-size: 32px;
	margin-bottom: 20px;
}
.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt p span {
	font-size: 40px;
	color: #10c30b;
    background: -webkit-linear-gradient(0deg, #fbfe34, #10c30b);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
.solutionArea .solutionAreainnr .ttlAreaWap .ttlpic {
	width: 100%;
	text-align: center;
}

.solutionArea .solutionAreainnr .sec_msg {
	text-align: center;
	margin-bottom: 20px;
	font-size: 18px;
}

/*-- ボックスリスト --*/
.solutionArea .solutionAreainnr .solBoxList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.solutionArea .solutionAreainnr .solBoxList .solBox {
	background-color: #FFF;
	box-sizing: border-box;
	padding: 30px 20px;
	margin: 0 0 20px 0;
	width: 100%;
	box-shadow: 0px 0px 16px rgba(0,0,0,0.3);
}
.solutionArea .solutionAreainnr .solBoxList .solBox h3 {
	text-align: center;
	font-size: 18px;
	border-radius: 25px;
	background:linear-gradient(to right, #00c000, #009933);
	color: #FFF;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.solutionArea .solutionAreainnr .solBoxList .solBox .pic {
	margin-bottom: 20px;
	text-align: center;
}
.solutionArea .solutionAreainnr .solBoxList .solBox .subtxt {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.4;
}
.solutionArea .solutionAreainnr .solBoxList .solBox .seclist {
	list-style: none;
}
.solutionArea .solutionAreainnr .solBoxList .solBox .seclist li {
	position: relative;
  	padding: 0 0 0 1.5em;
  	margin: 0;
}
.solutionArea .solutionAreainnr .solBoxList .solBox .seclist li::before {
	position: absolute;
  	left: 0;
  	font-family: "Font Awesome 5 Free";
  	font-weight: 900;
  	content: '\f058';
  	color: #377beb;
}

/*-- コンタクトボックス --*/
.solutionArea .solutionAreainnr .solcontBox {
	background:linear-gradient(to right, #00c000, #009933);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	margin: 20px 0 0 0;
	border-radius: 10px;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 {
	width: 100%;
	color: #FFF;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt1 {
	text-align: center;
	font-size: 16px;
	background-color: #006600;
	border-radius: 20px;
	padding: 5px 10px;
	margin: 0 auto 15px;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt2 {
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	margin: 0 auto 15px;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt2 ruby rt {
	font-size: 12px;
	text-align: center;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow2 {
	width: 100%;
	text-align: center;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow3 {
	width: 100%;
	color: #FFF;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow3 .txt1 {
	text-align: center;
	font-size: 18px;
}
.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow3 .txt2 {
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt {
		width: 63%;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt p {
		font-size: 38px;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt p span {
		font-size: 70px;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt h2 {
		font-size: 40px;
		margin-bottom: 0;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttlpic {
		width: 35%;
		text-align: right;
	}

	.solutionArea .solutionAreainnr .sec_msg {
		text-align: center;
		margin-bottom: 50px;
		font-size: 24px;
	}

	/*-- ボックスリスト --*/
	.solutionArea .solutionAreainnr .solBoxList .solBox {
		padding: 30px 20px;
		margin: 0 0 50px 0;
		width: 48%;
	}
	.solutionArea .solutionAreainnr .solBoxList .solBox h3 {
		font-size: 20px;
		border-radius: 30px;
	}
	.solutionArea .solutionAreainnr .solBoxList .solBox .subtxt {
		font-size: 20px;
	}

	/*-- コンタクトボックス --*/
	.solutionArea .solutionAreainnr .solcontBox {
		padding: 40px;
		margin: 30px 0 0 0;
		border-radius: 20px;
		justify-content: center;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 {
		width: 100%;
		color: #FFF;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt1 {
		font-size: 18px;
		border-radius: 20px;
		padding: 5px 20px;
		margin: 0 auto 25px;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt2 {
		font-size: 36px;
		margin: 0 auto 15px;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt2 ruby rt {
		font-size: 16px;
	}

	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow2 {
		width: auto;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow3 {
		width: auto;
	}
}

/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	.solutionArea .solutionAreainnr {
		box-sizing: border-box;
		margin: 0 auto;
		max-width: 1200px;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt p {
		font-size: 48px;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt p span {
		font-size: 80px;
	}
	.solutionArea .solutionAreainnr .ttlAreaWap .ttltxt h2 {
		font-size: 48px;
	}

	/*-- ボックスリスト --*/
	.solutionArea .solutionAreainnr .solBoxList .solBox {
		padding: 40px 35px;
		margin: 0 0 50px 0;
		width: 48%;
	}
	.solutionArea .solutionAreainnr .solBoxList .solBox h3 {
		font-size: 26px;
		border-radius: 34px;
	}
	.solutionArea .solutionAreainnr .solBoxList .solBox .subtxt {
		font-size: 24px;
	}

	/*-- コンタクトボックス --*/
	.solutionArea .solutionAreainnr .solcontBox {
		padding: 50px;
		margin: 35px 0 0 0;
		border-radius: 20px;
		justify-content: space-between;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 {
		width: auto;
		color: #FFF;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt1 {
		width: auto;
		display: inline-block;
	}
	.solutionArea .solutionAreainnr .solcontBox .solcontBoxrow1 .txt2 {
		margin: 0 auto;
	}
}

/*==========================================================================
	ライセンス一覧
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
.licenseArea {
}
.licenseArea .licenseAreainnr {
	padding: 0 3vw;
}
.licenseArea .licenseAreainnr .ttl {
	text-align: center;
	padding: 10px;
	background-color: #f5f4f4;
	margin: 30px 0 15px;
	position: relative;
}
.licenseArea .licenseAreainnr .ttl::after {
	content: "";
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background:linear-gradient(to right, #00c000, #0099fe);
}
.iconPdf{
	font-size: 0.8rem;
    font-weight: bold;
    background-color: #d8d8d8;
    color: #333;
    padding: 2px 10px;
    margin-left: 15px;
    border-radius: 3px;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.licenseArea .licenseAreainnr .ttl {
		font-size: 20px;
		padding: 15px;
		margin: 45px 0 30px;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	.licenseArea .licenseAreainnr {
		box-sizing: border-box;
		margin: 0 auto;
		max-width: 1000px;
	}
}

/*==========================================================================

============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/


/*****************************************************
	320px以下【sp】
******************************************************/
@media print, screen and (max-width: 320px) {
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
}

/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
}


/*==========================================================================
	検証結果
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
.reportArea {
}
.reportArea .reportAreainnr {
	padding: 0 3vw;
}
.reportArea .reportAreainnr .ttl {
	text-align: center;
	padding: 10px;
	background-color: #f5f4f4;
	margin: 30px 0 15px;
	position: relative;
}
.reportArea .reportAreainnr .ttl::after {
	content: "";
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background:linear-gradient(to right, #00c000, #0099fe);
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.reportArea .reportAreainnr .ttl {
		font-size: 20px;
		padding: 15px;
		margin: 45px 0 30px;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	.reportArea .reportAreainnr {
		box-sizing: border-box;
		margin: 0 auto;
		max-width: 1000px;
	}
}
