@charset "utf-8";
/*
------------------------------
メインビジュアル

------------------------------*/


/*
メインビジュアル
------------------------------*/
.mainVidualWrap {
	position: relative;
	height: auto;
	display: flex;
	align-items: center;
}
.mainVidualWrap .mainTextWrap {
    position: absolute;
    top: 50%;                 /* 画面の縦中央に固定 */
    left: 50%;                /* 横中央 */
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;       /* 左寄せが良ければ left に変更 */
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}
.mainVidualWrap .mainImgWrap .imgItem {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
}

.mainVidualWrap .mainImgWrap .imgItem.pc_img{
	display: block;
}
.mainVidualWrap .mainImgWrap .imgItem.sp_img{
	display: none;
}

.mainVidualWrap .mainTextWrap {
	position: absolute;
	left: 10%;
	color: #fff;
}

.mainVidualWrap .mainTextWrap .mainTll_en {
	color: var(--color-main);
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.mainVidualWrap .mainTextWrap .mainTll_lg {
	letter-spacing: .2em;
	font-size: 48px;
	font-weight: bold;
	color: var(--color-black1);
	line-height: 1.5;
	margin-bottom: 20px;
}

.mainVidualWrap .mainTextWrap .mainTtl_txt {
	color: var(--color-black1);
	font-size: 18px;
	line-height: 1.7;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.mainVidualWrap .mainImgWrap .imgItem.pc_img{
		display: none;
	}
	.mainVidualWrap .mainImgWrap .imgItem.sp_img{
		display: block;
	}
	.mainVidualWrap .mainTextWrap{
		width: 90%;
		left: 5%;
	}
	.mainVidualWrap .mainTextWrap .mainTll_lg {
		font-size: 40px;
	}
}



/*
aboutWrap
------------------------------*/
.aboutWrap .flexWrap01 {
	display: flex;
	max-width: 1300px;
	padding-left: 0;
	margin-left: 10%;
	margin-right: auto;
	align-items: center;
	width: 88%;
}

.aboutWrap .flexWrap01 .flex_textWrap {
	max-width: 520px;
	width: 50%;
	margin-right: 8%;
}
@media screen and (max-width: 1300px) {
	.aboutWrap .flexWrap01 {
		margin-left: 5%;
		width: 90%;
	}
	.aboutWrap .flexWrap01 .flex_textWrap{
		margin-right: 40px;
	}
}
@media screen and (max-width: 800px) {
	.aboutWrap .flexWrap01 {
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.aboutWrap .flexWrap01 .flex_textWrap {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
}


/*
リスト
----------------------*/
.flexWrap01 .advantage_list .listItem{
	display: flex;
	margin-bottom: 40px;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	align-items: center;
	min-height: 150px;
	border: 2px solid var(--color-main);
}

.flexWrap01 .advantage_list .listItem .imgWrap{
	max-width: 100px;
	width: 20%;
	margin-right: 30px;
}

.flexWrap01 .advantage_list .listItem .textWrap{
	flex:1;
	color: #fff;
}

.flexWrap01 .advantage_list .listItem img{
	width: auto;
}

@media screen and (max-width: 800px) {
	.flexWrap01 .advantage_list .listItem{
		margin-bottom: 30px;
	}
	.flexWrap01 .advantage_list .listItem .imgWrap{
		margin-right: 20px;
	}
}




/*
Advantage
------------------------------*/
.advantageListwrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
/*    margin-bottom: 220px;*/
}

.advantageListwrap .stageCol:nth-child(3n + 1) {
    margin-left: 0;
}

.advantageListwrap .advantageListwrap_news {
    margin-bottom: 0px;
}

.advantageListwrap .stageCol {
    width: 32%;
    margin-left: 2%;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: .3s;
}



.advantageListwrap .stageColBox {
    border: 3px solid #31D570;
    position: relative;
    /*text-align: center;*/
}

.advantageListwrap .stageCol_point {
    border: 0 solid transparent;
    /* box-shadow: 0 0 8px gray; */
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
    padding-top: 0;
    height: 100%;
    background: #fff;
}

.advantageListwrap .pointImg {
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateX(-50%);
}

.advantageListwrap .stageCol_point h2 {
    margin-bottom: 20px;
    font-weight: normal;
    text-align: left;
    color: var(--color-black1);
    padding: 0 0;
    font-size: 24px;
    line-height: 1.6;
    font-weight: bold;
    min-height: 3em;
}

.advantageListwrap .point_image_block {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.advantageListwrap .stageCol_icon {
    margin-bottom: 30px;
}

.advantageListwrap .stageCol_text {
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    text-align: left;
    width: 100%;
    position: inherit;
    top: auto;
    left: auto;
    transform: inherit;
    padding: 0 0;
    margin-bottom: 10px;
}

.stageCol_text.line3txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.advantageListwrap .stageCol .number{
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-main);
}

.advantageListwrap .stageColBox img {
    display: block;
    border-radius: 20px;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s;
}

.advantageListwrap .colBtnBox {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -12%;
}

.advantageListwrap .colBtnBox img {
    display: inline-block;
    max-width: 273px;
    width: 80%;
}

.advantageListwrap .stageColBox .moreLink{
  text-align: right;
  padding-right: 30px;
  position: relative;
  font-weight: bold;
  color: #525766;
  font-size: 16px;
}

.advantageListwrap .stageColBox .moreLink:after{
  position: absolute;
  content: '';
  background: url(../img/common/icon_moreLink.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 100%;
  margin-left: 5px;
}

.advantageListwrap .stageColBox a:hover .point_image_block img{
  transform: scale(1.1);
}


@media screen and (max-width: 1180px) {
    .advantageListwrap .stageCol_point {
        min-height: 400px;
    }
    .advantageListwrap .stageCol_point h2 {
        font-size: 18px;
        /* height: 160px; */
    }
}

@media screen and (max-width: 991px) {
    .advantageListwrap .stageCol_point {
        min-height: 300px;
    }
    .advantageListwrap .stageCol_text {
        position: inherit;
        top: auto;
        left: auto;
        transform: inherit;
    }
}
@media screen and (max-width: 768px) {
    .advantageListwrap{
    flex-wrap: wrap;
    justify-content: center;
    }
    .advantageListwrap .stageCol {
    width: 40%;
    max-width: inherit;
    margin-right: inherit;
    }
/*    .advantageListwrap .stageCol:nth-child(2n){
        margin-left: 0;
    }*/
    .advantageListwrap .stageCol:nth-child(3n + 1){
        margin-left: 2%;
    }
}
@media screen and (max-width: 640px) {
    .advantageListwrap{
    display: block;
    }
    .advantageListwrap .stageCol {
        margin-bottom: 40px;
        width: 80%;
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
    .advantageListwrap .stageCol:nth-child(3n + 1){
        margin-right: auto;
        margin-left: auto;
    }
    .advantageListwrap .point_image_block {
        /*margin-bottom: 0;*/
        height: 200px;
    }
    .advantageListwrap .stageCol_point {
        padding-bottom: 0;
        min-height: 542px;
        min-height: auto;
    }
    .advantageListwrap .stageCol_point h2 {
        font-size: 18px;
            min-height: auto;
    }
    .advantageListwrap .stageCol_text {
        width: 95%;
        line-height: 1.7;
        font-size: 15px;
        margin-bottom: 10px;
    }
}





/*
導入事例
------------------------------*/
.caseWrap .comingsoonFlex {
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	justify-content: center;
}

.caseWrap .comingsoonFlex .flexItem{
	width: 50%;
	margin-left: 20px;
	margin-right: 20px;
	max-width: 520px;
}

@media screen and (max-width: 991px) {
	.caseWrap .comingsoonFlex .flexItem{
		margin-left: 10px;
		margin-right: 10px;
	}
}

/*
FAQ
------------------------------*/
.voiceBox{
    max-width: 800px;
}



/*
NEWS
------------------------------*/
.newsWrap {
    padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
    .mainVidualWrap .mainTextWrap {
        top: 55%;                    /* 少し下にずらす */
        padding: 0 10px;
    }

    .mainVidualWrap .mainTextWrap .mainTtl_lg {
        font-size: 1.8rem;           /* スマホでは文字を少し小さく */
    }
}

