@charset "utf-8";
/*
///主な色設定///
メインカラー／お知らせすべて（青）：#0674B9
サブカラー／お知らせ感染症（水色）：#5CBCCB
アクセントカラー／お知らせ公募（ピンク）：#F3748A
お知らせセミナー（黄緑）：#74C565
お知らせアンケート（紫）：#B271B4
お知らせその他（オレンジ）：#F69555

↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑

*/

/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_h1 {
	font-family: "Barlow", sans-serif;
	font-size: 5.2rem;
	font-weight: 400;
	margin-bottom: 15px;
}
.c_ttl_h1_jp {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
}
.c_ttl_h2 {
	font-size: 3.2rem;
	line-height: 2.2;
	margin-bottom: 60px;
}
.c_ttl_h3 {
	color: #000;
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 30px;
}
.c_ttl_h4 {
	margin-bottom: 10px;
	color: #555;
	font-weight: bold;
	font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
	.c_ttl_h1 {
		font-size: 3.2rem;
		margin-bottom: 10px;
	}
	.c_ttl_h1_jp {
		font-size: 1.4rem;
	}
	.c_ttl_h2 {
		font-size: 2.4rem;
		margin-bottom: 50px;
	}
	.inner .c_ttl_h2 {
		font-size: 2rem;
		line-height: 2;
		margin-bottom: 30px;
	}
}

/*  .c_ttl_top01
------------------------------------- */
.c_ttl_top01 {
	font-family: "Barlow", sans-serif;
	font-size: 7.2rem;
	margin-bottom: 20px;
}
.c_ttl_top01_jp {
	font-size: 1.8rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
  	.c_ttl_top01 {
		font-size: 4rem;
	}
	.c_ttl_top01_jp {
		font-size: 1.6rem;
	}
}

/*  .c_ttl_top02
------------------------------------- */
.c_ttl_top02_bg {
    position: relative;
    top: 0vw;
	left: 0;
    background: #F2F2F2;
    padding: 50px 0 70px;
    width: 54%;
}
.c_ttl_top02 {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
.c_ttl_top02 span{
	position: absolute;
	top: -0.2vw;
	width: 100%;
	height: 100px;
	font-family: "Barlow", sans-serif;
	font-size: 7.2rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.c_ttl_top02_bg {
		width: 75%;
		padding: 50px 0 10px;
	}
	.c_ttl_top02 {
		width: 90%;
	}
	.c_ttl_top02 span {
		font-size: 3rem;
		height: 42px;
	}
}
@media screen and (max-width: 320px) {
	.c_ttl_top02_bg {
		width: 85%;
	}
}

/*  .c_ttl_top03
------------------------------------- */
.c_ttl_top03 {
	position: absolute;
	top: -83px;
}
@media screen and (max-width: 767px) {
  .c_ttl_top03 {
    top: -70px;
    left: 10px;
  }
  .c_ttl_top03 img {
    width: 60%;
  }
}

/*----------------------------------------------
  	.c_para_type01
---------------------------------------------*/
.c_para_type01 {
	text-align: justify;
	-ms-text-justify: inter-ideograph;
	text-justify: inter-ideograph;
}

/*----------------------------------------------
	.c_para_type02
---------------------------------------------*/
.c_para_type02 {
	text-indent: 1em;
}

/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn_type01
------------------------------------- */
.c_btn_type01 {
	display: inline-block;
	color: #000000;
	padding: 20px 25px;
	width: 236px;
	border: 1px solid #FA0046;
	position: relative;
	z-index: 1;
	text-decoration: none;
	transition: .5s;
	background-color: #FFF;
}
.c_btn_type01.is_fw500 { font-weight: 500; }

.c_btn_type01::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FA0046;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
.c_btn_type01::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: inline-block;
	background: url(../images/icon_btn_arrow.svg) no-repeat;
	width: 8px;
	height: 15px;
	background-size: contain;
}
.c_btn_type01:hover {
	color: #fff;
}
.c_btn_type01:hover::before {
	transform-origin: 0% 50%;
  	transform: scaleX(1);
}
.c_btn_type01:hover::after {
	background: url(../images/icon_btn_arrow_o.svg) no-repeat;
}

/*  .c_btn_type02
------------------------------------- */
.c_btn_type02 {
	display: inline-block;
	color: #fff;
	background: #D57403;
	padding: 20px 25px;
	width: 285px;
	position: relative;
	z-index: 1;
	text-decoration: none;
	transition: .5s;
}
.c_btn_type02::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #fff;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
.c_btn_type02::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: inline-block;
	background: url(../images/icon_btn_arrow_w.svg) no-repeat;
	width: 12px;
	height: 8px;
	background-size: contain;
}
.c_btn_type02:hover {
	color: #D57403;
}
.c_btn_type02:hover::before {
	transform-origin: 0% 50%;
  	transform: scaleX(1);
}
.c_btn_type02:hover::after {
	background: url(../images/icon_btn_arrow.svg) no-repeat;
}

/*  .c_btn_type03
------------------------------------- */
.c_btn_type03 {
	display: flex;
    align-items: center;
	color: #303958;
	background: #fff;
	padding: 30px 30px 30px 90px;
	width: 285px;
	height: 108px;
	position: relative;
	text-decoration: none;
	transition: .5s;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .16);
}
.c_btn_type03.is_shinrai::before,
.c_btn_type03.is_risk::before,
.c_btn_type03.is_staff::before,
.c_btn_type03.is_teiryo::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: inline-block;
	width: 46px;
	height: 46px;
	background-size: contain;
}
.c_btn_type03.is_shinrai::before {
	background: url(../images/icon_btn_concept01.svg) no-repeat;
}
.c_btn_type03.is_risk::before {
	background: url(../images/icon_btn_concept02.svg) no-repeat;
}
.c_btn_type03.is_staff::before {
	background: url(../images/icon_btn_concept03.svg) no-repeat;
}
.c_btn_type03.is_teiryo::before {
	background: url(../images/icon_btn_concept04.svg) no-repeat;
}
.c_btn_type03::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: inline-block;
	background: url(../images/icon_btn_arrow.svg) no-repeat;
	width: 12px;
	height: 8px;
	background-size: contain;
}
.c_btn_type03:hover {
	box-shadow: none;
}
@media screen and (max-width: 767px) {
  .c_btn_type03.is_shinrai::before,
  .c_btn_type03.is_risk::before,
  .c_btn_type03.is_staff::before,
  .c_btn_type03.is_teiryo::before {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*  .c_btn_type04
------------------------------------- */
.c_btn_type04 {
	display: inline-block;
	position: relative;
	z-index: 1;
	text-decoration: none;
	transition: .5s;
	border: 1px solid #12298D;
	color: #12298C;
	width: 405px;
	padding: 20px 25px 20px 60px;
}
.c_btn_type04.is_mail {
	background: url(../images/icon_btn_mail_b.svg) no-repeat;
	background-position: left 20px center;
}
.c_btn_type04::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: inline-block;
	background: url(../images/icon_btn_arrow_b.svg) no-repeat;
	width: 12px;
	height: 8px;
	background-size: contain;
}
.c_btn_type04:hover::after {
	background: url(../images/icon_btn_arrow_w.svg) no-repeat;
}
.c_btn_type04.is_mail:hover {
	background: url(../images/icon_btn_mail_w.svg) no-repeat, #12298D;
	background-position: left 20px center;
}
.c_btn_type04:hover {
	color: #fff;
}

#recruit .c_btn_type04 {
	border: 1px solid #fff;
	color: #fff;
}
#recruit .c_btn_type04.is_mail {
	background: url(../images/icon_btn_mail_w.svg) no-repeat;
	background-position: left 20px center;
}
#recruit .c_btn_type04::after {
	background: url(../images/icon_btn_arrow_w.svg) no-repeat;
}
#recruit .c_btn_type04.is_mail:hover {
	background: url(../images/icon_btn_mail_w.svg) no-repeat, #4D68DE;
	background-position: left 20px center;
}
#recruit .c_btn_type04:hover {
	border: 1px solid #4D68DE;
}

@media screen and (max-width: 767px) {
	#contact .c_btn_type04 {
		width: 100%;
	}
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
	width: 100%;
}
.c_table_type01 tr {
	border-bottom: 1px solid #DEDEDE;
}
.c_table_type01 th,
.c_table_type01 td {
	text-align: left;
	padding: 30px 0;
	vertical-align: top;
}
.c_table_type01 th {
	width: 20%;
	font-weight: normal;
}

@media screen and (max-width: 767px) {
	.c_table_type01 th,
	.c_table_type01 td {
		display: block;
		width: 100%;
	}
	.c_table_type01 th {
		padding: 0 0 15px;
	}
	.c_table_type01 tr:not(:first-of-type) th {
		padding-top: 25px;
	}
	.c_table_type01 td {
		padding: 0 0 25px;
	}
}

/*----------------------------------------------
	.c_dl_type01
---------------------------------------------*/
.c_dl_type01 {
	display: flex;
	flex-wrap: wrap;
}
.c_dl_type01 dt {
	width: 16%;
}
.c_dl_type01 dd {
	width: 84%;
}
.u_property_area .c_dl_type01 {
	font-size: 1.4rem;
}
.u_property_area .c_dl_type01 dt {
	width: 12%;
}
.u_property_area .c_dl_type01 dt:not(:last-child) {
	margin-bottom: 10px;
}
.u_property_area .c_dl_type01 dd {
	width: 80%;
	padding-left: 15px;
}

@media screen and (max-width: 767px) {
	.c_dl_type01 dt {
		width: 36%;
	}
	.c_dl_type01 dd {
		width: 64%;
	}

	.u_property_area .c_dl_type01 {
		font-size: 1.2rem;
	}
	.u_property_area .c_dl_type01 dt {
		width: 10%;
	}
}


/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
	vertical-align: top;
}

.c_list_type01 li {
	list-style: none;
	position: relative;
	  padding-left: .8em;
}

.c_list_type01.is_decimal li {
	padding-left: 2.5em;
}

.c_list_type01 li::before {
	color: #ffd14e;
	position: absolute;
	display: inline-block;
	width: 10px;
	vertical-align: middle;
	top: 8px;
	left: 0;
}
.c_list_type01.is_square li::before {
	content: "";
	  width: 8px;
	  height: 8px;
	  background: #ffd14e;
}

.c_list_type01.is_disc li::before {
	content: "";
	  width: 6px;
	  height: 6px;
	  border-radius: 50%;
	  background: #0089C4;
	  top: 10px;
}

.c_list_type01.is_triangle li::before {
	content: "";
	width: 0;
	height: 0;
	border: solid 5px transparent;
	border-left: solid 7px #E84150;
	top: 7px;
}

.c_list_type01.is_diamond li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #0089C4;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 9px;
}

.c_list_type01.is_decimal {
	counter-reset: is_decimal_counter;
}
.c_list_type01.is_decimal li::before {
	counter-increment: is_decimal_counter;
	content: counter(is_decimal_counter) ".";
	text-align: right;
	width: 25px;
	margin-right: 5px;
	color: #303958;
	vertical-align: unset;
	top: 0;
}
.c_list_type01 .is_ttl {
	font-size: 1.6rem;
}
#security .c_list_type01.is_decimal li {
	padding-left: 1.2em;
}
#security .c_list_type01.is_decimal li::before {
	font-size: 1.6rem;
	width: auto;
}

@media screen and (max-width: 767px) {
	#security .c_list_type01,
	#policy .c_list_type01 {
		margin-bottom: 60px;
	}
	#security .c_list_type01 li,
	#policy .c_list_type01 li {
		margin-bottom: 30px;
	}
}

/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 li{
	font-size: 1.6rem;
	padding-left: 30px;
	position: relative;
}

.c_list_type02 li:not(:last-child){
	margin-bottom: 20px;
}

.c_list_type02 li::before{
	content: "";
	position: absolute;
	width: 23px;
	height: 23px;
	left: 0;
	top: 3px;
	background: url(../images/icon_check.svg) no-repeat;
}

.c_list_type02.is_white li{
	color: #fff;
}
.c_list_type02.is_white li:not(:last-child){
	margin-bottom: 10px;
}

.c_list_type02.is_white li::before{
	background: url(../images/icon_check.svg) no-repeat;
}

.c_list_type02.is_disc li {
	padding-left: 1rem;
}
.c_list_type02.is_disc li::before {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #303958;
	top: 12px;
}

@media screen and (max-width: 767px) {
	.c_list_type02 li {
		font-size: 1.4rem;
	}
}


/*----------------------------------------------
	flex
---------------------------------------------*/
.c_flex {
	display: flex;
	flex-wrap: wrap;
}
/*  オプション
------------------------------------- */
/* wrap */
.is_flex_nowrap {
	flex-wrap: nowrap;
}
/* 整列 */
.is_flex_between {
  justify-content: space-between;
}
.is_flex_start {
  justify-content: flex-start;
}
.is_flex_jc_center {
  justify-content: center;
}
.is_flex_center {
	align-items: center;
}

/*----------------------------------------------
	c_footer_item
---------------------------------------------*/
.c_footer_item {
	display: flex;
	justify-content: space-between;
	font-size: 1.6rem;
}
.c_footer_item a {
	color: #303958;
	text-decoration: none;
}
.c_footer_item a:hover {
	opacity: .75;
}

.c_footer_list {
	display: flex;
	padding-top: 40px;
	border-top: 1px solid #BFC1CE;
}
.c_footer_list_item {
	width: 256px;
	color: #8B8DA8;
}
.c_footer_list_item:nth-child(2) {
	padding: 0 45px;
}
.c_footer_list_item:nth-child(3) {
	padding-left: 45px;
}
.c_footer_list_ttl {
	margin-bottom: 20px;
}
.c_footer_list ul+ul {
	border-left: 1px solid #BFC1CE;
}
.c_footer_list_child {
	margin-left: 15px;
}
.c_footer_btn {
	position: relative;
	display: block;
	width: 189px;
	color: #12298C!important;
	padding: 15px 20px;
	border: 1px solid #12298C;
	transition: .3s;
}
.c_footer_btn.is_pdf::before {
	content: "";
	position: absolute;
	display: inline-block;
	background: url(../images/icon_btn_pdf01.svg) no-repeat;
	width: 18.5px;
	height: 19px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}
.c_footer_btn:hover {
	opacity: .75;
}
@media screen and (max-width: 767px) {
  .c_footer_left {
    padding: 0 0 60px;
  }
  .c_footer_item {
    display: block;
  }
  .c_footer_list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c_footer_list .c_footer_list_item:nth-of-type(odd) {
    margin-right: -5%;
	padding: 0 5% 0 0;
  }
  .c_footer_list .c_footer_list_item:nth-of-type(even) {
    padding: 0 0 0 5%;
  }
  .c_footer_list .c_footer_list_item{
    width: 50%;
	margin-bottom: 30px;
    font-size: 1.4rem;
  }
  .c_footer_list_item:nth-child(3) {
    padding-left: 0;
  }
  .c_footer_list .c_footer_list_item:nth-of-type(3),
  .c_footer_list .c_footer_list_item:nth-of-type(4){
    margin: 20px 0 0;
    padding-top: 20px;
    position: relative;
  }
  .c_footer_list .c_footer_list_item:nth-of-type(3)::before,
  .c_footer_list .c_footer_list_item:nth-of-type(4)::before{
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #BFC1CE;
    position: absolute;
    top: -25px;
    left: 0;
  }
  .c_footer_list .c_footer_list_item .security,
  .c_footer_list .c_footer_list_item .privacy{
    font-size: 1.2rem;
  }
  .c_footer_btn {
    width: 100%;
  }
  .c_footer_list ul:nth-of-type(odd) {
    border: none;
  }
}

/*----------------------------------------------
	.c_about_item
---------------------------------------------*/
.c_about_item {
	width: 35%;
	margin-right: 90px;
	z-index: 1;
	position: relative;
}
.c_about_copy02 {
	position: absolute;
	font-family: "Barlow", sans-serif;
	font-size: 7.2rem;
	top: 11vw;
	left: 50vw;
	z-index: 1;
}
.c_about_txt {
	text-align: justify;
	margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .c_about_item {
	width: 100%;
	margin-right: 20px;
  }
  .c_about_copy02 {
    left: 20px;
    font-size: 3.6rem;
  }
  .c_about_txt {
	margin-bottom: 50px;
  }
}

/*----------------------------------------------
	c_biz_item
---------------------------------------------*/
/*  TOP
------------------------------------- */
#top .c_biz {
	position: relative;
}
#top .c_biz_item {
	display: flex;
	justify-content: flex-end;
	margin-top: 120px;
	padding-top: 140px;
}
#top .c_biz:nth-child(odd) .c_biz_item {
	flex-direction: row-reverse;
}
#top .c_biz_img{
  position: relative;
}
#top .c_biz_img img{
	width: 100%;
}
#top .c_biz:nth-child(even) .c_biz_img {
	margin-right: 20px;
}
#top .c_biz_box {
	width: 42%;
	background: #fff;
	padding: 70px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, .16);
}
#top .c_biz:nth-child(odd) .c_biz_box {
	margin-right: 20px;
}
#top .c_biz_ttl {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 40px;
}
#top .c_biz_ttl.is_fs20 {
	font-size: 2rem;
}
#top .c_biz_text {
	margin-bottom: 40px;
	text-align: justify;
	line-height: 2;
}
#top .c_biz_copy {
	position: absolute;
	left: 0;
	bottom: 0;
	font-family: "Barlow", sans-serif;
	font-size: 3.2rem;
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	text-align: right;
}
#top .c_biz:nth-child(odd) .c_biz_copy {
	right: 0;
}

#top .c_biz_item01,
#top .c_biz_item02,
#top .c_biz_item03 {
	position: relative;
	z-index: 0;
}
#top .c_biz_item01::after,
#top .c_biz_item02::after,
#top .c_biz_item03::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 1032px;
	height: 527px;
	top: 0;
	z-index: -1;
}
#top .c_biz_item01::after {
	background: url(../images/bg_biz01.png) no-repeat;
	left: 0;
}
#top .c_biz_item02::after {
	background: url(../images/bg_biz02.png) no-repeat;
	right: 0;
}
#top .c_biz_item03::after {
	background: url(../images/bg_biz03.png) no-repeat;
	left: 0;
}

@media screen and (max-width: 767px) {
	#top .c_biz:not(:last-child) {
		margin-top: 60px;
	}
	#top .c_biz_item {
		display: block;
		padding-top: 40px;
	}
	#top .c_biz:nth-child(even) .c_biz_img {
		margin-right: 0;
		text-align: right;
    	margin-bottom: 20px;
    }
	#top .c_biz .c_biz_img:nth-child(odd) {
		margin-bottom: 20px;
	}
	#top .c_biz .c_biz_img img {
		width: 60%;
	}
	#top .c_biz_box {
		width: 100%;
		padding: 40px 25px;
	}
	#top .c_biz_ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}
	#top .c_biz_text {
		margin-bottom: 30px;
	}
	#top .c_biz_copy {
		position: absolute;
		font-size: 2.5rem;
		line-height: 1;
		top: inherit;
		bottom: 0;
	}
	#top .c_biz_item01::after,
	#top .c_biz_item02::after,
	#top .c_biz_item03::after {
		width: 100%;
	}
}


	/*  BUSINESS
------------------------------------- */
.inner .c_biz {
	position: relative;
}
.inner .c_biz:not(:first-child) {
	margin-top: 120px;
}
.inner .c_biz_item {
	display: flex;
	justify-content: flex-end;
	padding-top: 70px;
}
.inner .c_biz:nth-child(even) .c_biz_item {
	flex-direction: row-reverse;
}
.inner .c_biz_img img{
	width: 100%;
}
.inner .c_biz:nth-child(even) .c_biz_img {
	margin-right: 20px;
}
.inner .c_biz_box {
	width: 58%;
	background: #fff;
	padding: 70px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, .16);
}
.inner .c_biz_box.is_shadow_none {
	box-shadow: none;
}
.inner .c_biz:nth-child(odd) .c_biz_box {
	margin-right: 20px;
}
.inner .c_biz_ttl {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 40px;
}
.inner .c_biz_ttl.is_fs20 {
	font-size: 2rem;
}
.inner .c_biz_text {
	margin-bottom: 40px;
	text-align: justify;
	line-height: 2;
}
.inner .c_biz_copy {
	position: absolute;
	left: 0;
	bottom: 0;
	font-family: "Barlow", sans-serif;
	font-size: 3.2rem;
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	text-align: right;
}
.inner .c_biz:nth-child(odd) .c_biz_copy {
	right: 0;
}
.inner .c_biz_item01,
.inner .c_biz_item02,
.inner .c_biz_item03,
.inner .c_biz_item04 {
	position: relative;
	z-index: 0;
}
.inner .c_biz_item01::after,
.inner .c_biz_item02::after,
.inner .c_biz_item03::after,
.inner .c_biz_item04::after {
	content: "";
	display: inline-block;
	position: absolute;
	min-width: 800px;
	width: 50%;
	height: 527px;
	top: 0;
	z-index: -1;
}
.inner .c_biz.is_business.is_facility.c_biz_item01::after {
	background: url(../../facility/images/img_facility02.png) no-repeat;
	left: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_facility.c_biz_item02::after {
	background: url(../../facility/images/img_facility03.png) no-repeat;
	right: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_maintenance.c_biz_item04::after {
	background: url(../../facility/images/img_facility05.png) no-repeat;
	right: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_facility.c_biz_item03::after {
	background: url(../../facility/images/img_facility04.png) no-repeat;
	left: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_building.c_biz_item01::after {
	background: url(../../facility/images/img_building02.png) no-repeat;
	right: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_consulting.c_biz_item01::after {
	background: url(../../consulting/images/img_consulting02.png) no-repeat;
	left: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_consulting.c_biz_item02::after {
	background: url(../../consulting/images/img_consulting03.png) no-repeat;
	right: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_env.c_biz_item01::after {
	background: url(../../environment/images/img_env02.png) no-repeat;
	left: 0;
	background-size: cover;
}
.inner .c_biz.is_business.is_env.c_biz_item02::after {
	background: url(../../environment/images/img_env03.png) no-repeat;
	right: 0;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	.inner .c_biz_item {
		display: block;
		padding-top: 300px;
	}
	.inner .c_biz:nth-child(even) .c_biz_img {
		margin-right: 0;
		text-align: right;
    	margin-bottom: 20px;
	}
	.inner .c_biz_box {
		width: 100%;
		padding: 40px 25px;
	}
	#building.inner .is_building .c_biz_box  {
		padding: 40px 25px 100px;
	}
	.inner .c_biz_ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.inner .c_biz_text {
		margin-bottom: 30px;
	}
  	.inner .c_biz_item01::after,
	.inner .c_biz_item02::after,
	.inner .c_biz_item03::after {
		min-width: 100%;
		width: 100%;
		height: 115vw;
  	}
	.inner .c_biz.is_business.is_facility.c_biz_item01::after,
	.inner .c_biz.is_business.is_facility.c_biz_item02::after,
	.inner .c_biz.is_business.is_building.c_biz_item01::after,
	.inner .c_biz.is_business.is_building.c_biz_item02::after,
	.inner .c_biz.is_business.is_consulting.c_biz_item01::after,
	.inner .c_biz.is_business.is_consulting.c_biz_item02::after,
	.inner .c_biz.is_business.is_env.c_biz_item01::after,
	.inner .c_biz.is_business.is_env.c_biz_item02::after {
		background-size: cover;
		background-position: top center;
	}
}


/*  .c_biz_box
------------------------------------- */
/* .is_custom01 */
.c_biz_box.is_custom01 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 420px;
	background: #fff;
	padding: 70px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, .16);
}

/* .is_bottom */
.c_biz_box.is_bottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 420px;
	background: #fff;
	padding: 70px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, .16);
}

/* .is_custom02 */
.c_biz_box.is_custom02 {
	padding: 70px 40px;
	box-shadow: none;
}
/* .is_custom010 */
.l_section.is_custom010 {
	padding: 80px 0 0;
}

@media screen and (max-width: 767px) {
	.c_biz_box.is_custom01,
	.c_biz_box.is_custom02 {
		padding: 40px 25px;
		height: auto;
	}
	.c_biz_box.is_custom02 .c_biz_text {
		margin-bottom: 0;
	}
}

/*----------------------------------------------
	c_concept
---------------------------------------------*/
.c_concept_item {
	padding: 200px 0 145px;
}
.c_concept_ttl {
	color: #fff;
	font-weight: bold;
	font-size: 3.2rem;
	margin-bottom: 40px;
}
.c_concept_box {
	display: flex;
}
.c_concept_txt {
	color: #fff;
	margin-right: 40px;
}

.c_concept_btn {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c_concept_item {
    padding: 100px 0 70px;
  }
  .c_concept_ttl {
    font-size: 2.2rem;
  }
  .c_concept_box {
    display: block;
  }
  .c_concept_txt {
    margin-right: 0;
    margin-bottom: 70px;
	line-height: 2;
  }
  .c_concept_btn {
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .c_concept_btn p {
    width: 47%;
    margin-bottom: 15px;
  }
  .c_concept_btn a {
    width: 100%;
    min-height: 155px;
    height: auto;
    flex-wrap: wrap;
    padding: 70px 10px 10px 10px;
    text-align: center;
    justify-content: center;
  }
  .c_concept_btn a::after {
    content: none;
  }
}

/*----------------------------------------------
	c_recruit
---------------------------------------------*/
.c_recruit_item {
	padding-top: 150px;
	margin-bottom: 120px;
}
.c_recruit_ttl {
	color: #fff;
	font-weight: bold;
	font-size: 3.2rem;
	margin-bottom: 20px;
}
.c_recruit_txt {
	color: #fff;
}

.c_recruit {
	display: flex;
	justify-content: flex-end;
}
.c_recruit a {
	text-decoration: none;
}
.c_recruit a:nth-child(2) {
	margin-top: 100px;
}
.c_recruit a:not(:last-child) {
	margin-right: 20px;
}
.c_recruit_box {
	background: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .16);
	transition: .3s;
}
.c_recruit_box:hover {
	box-shadow: none;
}
.c_recruit_box_img {
	overflow: hidden;
}
.c_recruit_box_img img {
	transition: .3s;
}
.c_recruit_box:hover img {
	transform: scale(1.1);
}
.c_recruit_box_ttl {
	position: relative;
	color: #D57403;
	font-size: 1.6rem;
	font-weight: normal;
	text-decoration: none;
	padding: 20px 25px;
}
.c_recruit_box_ttl::after {
	content: "";
	position: absolute;
	display: inline-block;
	background: url(../images/icon_btn_arrow.svg) no-repeat;
	width: 12px;
	height: 8px;
	top: 0;
	bottom: 0;
	margin: auto 0 auto 13px;
	background-size: contain;
}
@media screen and (max-width: 767px) {
  .c_recruit_item {
    padding-top: 70px;
    margin-bottom: 70px;
  }
  .c_recruit_ttl {
    font-size: 2.2rem;
  }
  .c_recruit_txt {
	font-size: 1.6rem;
	line-height: 2;
  }
  .c_recruit {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c_recruit a {
    width: 48%;
  }
  .c_recruit a:not(:last-child) {
    margin-right: 0;
  }
  .c_recruit a:nth-child(2) {
    margin-top: 130px;
  }
  .c_recruit a:nth-child(3) {
    margin-top: -105px;
  }
  .c_recruit_box_ttl {
	font-size: 1.4rem;
    padding: 15px 10px;
  }
  .c_recruit_box_ttl::after {
	margin-left: 15px;
  }
}
@media screen and (max-width: 375px) {
	.c_recruit_box_ttl {
		font-size: 1.3rem;
	}
}

/*----------------------------------------------
	.c_preface_txt
---------------------------------------------*/
.c_preface_txt {
  font-size: 1.6rem;
  text-align: justify;
  line-height: 2;
	width: 48%;
	height: 180px;
}

.c_preface_txt::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 570px;
	height: 760px;
	object-fit: cover;
}

.c_preface_txt.is_facility::after{
	background: url(../../facility/images/img_facility01.png) no-repeat;
}
.c_preface_txt.is_building::after{
	background: url(../../facility/images/img_building01.png) no-repeat;
}
.c_preface_txt.is_consulting::after{
	background: url(../../consulting/images/img_consulting01.png) no-repeat;
}
.c_preface_txt.is_env::after{
	background: url(../../environment/images/img_env01.png) no-repeat;
}

@media screen and (max-width: 767px) {
	.c_preface_txt {
		width: 100%;
		font-size: 1.4rem;
		height: auto;
	}
	.c_preface_txt::after {
		top: 45vw;
		left: 0;
		width: 80vw;
		height: 84vw;
	}
	.c_preface_txt.is_facility::after,
	.c_preface_txt.is_building::after,
	.c_preface_txt.is_consulting::after,
	.c_preface_txt.is_env::after {
		background-size: contain;
	}
}

/*----------------------------------------------
	.c_company_nav
---------------------------------------------*/
.c_company_nav {
	display: flex;
	justify-content: space-between;
	margin-top: 150px;
}
#message .c_company_nav {
	margin-top: 200px;
}
.c_company_nav a {
	text-decoration: none;
}
.c_company_nav_box {
	background: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .16);
	transition: .3s;
}
.c_company_nav_box:hover {
	box-shadow: none;
}
.c_company_nav_box_img {
	overflow: hidden;
}
.c_company_nav_box_img img {
	transition: .3s;
}
.c_company_nav_box:hover img {
	transform: scale(1.1);
}
.c_company_nav_box_ttl {
	position: relative;
	color: #000;
	font-size: 1.6rem;
	font-weight: normal;
	text-decoration: none;
	padding: 20px 25px;
}
.c_company_nav_box_ttl::after {
	content: "";
	position: absolute;
	display: inline-block;
	background: url(../images/icon_btn_arrow.svg) no-repeat right center;
	width: 10px;
	height: 8px;
	top: 0;
	bottom: 0;
	margin: auto 0 auto 13px;
	background-size: contain;
}

@media screen and (max-width: 767px) {
	.c_company_nav,
	#message .c_company_nav {
		flex-direction: column;
		margin-top: 120px;
	}
	.c_company_nav a:not(:last-child) {
		margin-bottom: 20px;
	}
	.c_company_nav_box {
		display: flex;
		align-items: center;
	}
	.c_company_nav_box > p {
		width: 50%;
	}
	.c_company_nav_box_ttl {
		font-size: 1.4rem;
		padding: 15px;
	}
}
@media screen and (max-width: 375px) {
	.c_company_nav_box_ttl {
		font-size: 1.3rem;
	}
}

/*----------------------------------------------
	.c_sdgs_detail
---------------------------------------------*/
.c_sdgs_detail {
	border-bottom: 1px solid #DEDEDE;
	padding: 0 0 60px;
	display: flex;
	gap: 50px;
	align-items: flex-start;
	margin: 0 120px 0;
}
.c_sdgs_detail:nth-child(4),
.c_sdgs_detail:nth-child(6),
.c_sdgs_detail:nth-child(5) {
	padding: 60px 0;
}
.c_sdgs_detailR {
	width: 340px;
	display: grid;
	justify-content: space-between;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 5px;
	flex-shrink: 0;
}
.c_sdgs_detail_ttl{
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
	.c_sdgs_detail {
		flex-direction: column;
		margin: 0;
		gap: 30px;
	}
	.c_sdgs_detail:nth-child(4),
	.c_sdgs_detail:nth-child(5),
	.c_sdgs_detail:nth-child(6) {
		padding: 40px 0;
	}
	.c_sdgs_detailR {
		width: 100%;
	}
	.c_sdgs_detail_ttl {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
}
/*----------------------------------------------
	.c_number_item
---------------------------------------------*/
.c_number_item {
	min-width: 220px;
}
.c_number_item th,
.c_number_item td{
	padding: 6px 0;
}
.c_number_item th{
	text-align: left;
}
.c_number_item td{
	text-align: right;
}
.c_number_item thead{
	border-bottom: 1px solid #DEDEDE;
}
.c_number_item thead tr th{
	font-weight: bold;
	font-size: 1.6rem;
	padding-bottom: 15px;
	height: 80px;
	vertical-align: bottom;
}
.c_number_item tbody tr th{
	font-weight: normal;
}

@media screen and (max-width: 767px) {
	.c_number_item:not(:last-child) {
		margin-bottom: 40px;
	}
	.c_number_item th,
	.c_number_item td {
		padding-top: 15px;
	}
	.c_number_item thead tr th {
		height: auto;
		font-size: 1.4rem;
	}
	.c_number_item thead tr th:nth-child(2) {
		text-align: right;
	}
}

/*----------------------------------------------
	.c_anchor_icon
---------------------------------------------*/
.c_anchor_icon {
  position: relative;
}
.c_anchor_icon.is_pdf::before {
  content: "";
  position: absolute;
  display: inline;
  top: 3px;
  right: -25px;
  width: 19px;
  height: 19px;
	background-color: #FA0046;
	-webkit-mask-image: url("../images/icon_btn_pdf02.svg");
	mask-image: url("../images/icon_btn_pdf02.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
