@charset 'UTF-8';

/*----------
価値創造プロセス
----------*/


/*--   財務資本   --*/

.zaimu_01_block{
	display: block;
	margin: 30px auto 0px auto;
	position: relative;
	width: 100%;
	height: 242px;
	background-image: url("../../images/process/zaimu_waku.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}


.ttl_line{
	display: block;
	margin: auto;
	text-align: center;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 0.05em;
	color: #2D2D2D;
	padding: 55px 0 20px 0;
	
}

.ttl_line span{
	padding: 10px 0 10px 0;
	border-bottom: 3px solid #50B383;
}

.ttl_center_zaimu{
	display: block;
	margin: auto;
	text-align: center;
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.05em;
	color: #2D2D2D;
	padding: 15px 0 20px 0;
}

.kihon_houshin_green{
	display: block;
	margin:  0 auto 3px auto;
	text-align: center;
	background-color: #34AF76;
	color: #FFFFFF;
	padding: 15px;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.kihon_houshin_green span{
	display: inline-block;
	padding-left: 27px;
	background-image: url("../../images/process/houshin_icon.png");
	background-position: left center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}

.zaimu_01_block ul{
	display: block;
	position: relative;
	width: 74%;
	margin: 15px auto 15px auto;
}

.zaimu_01_block li{
	display: inline-block;
	position: relative;
	float: left;
	padding: 0 32px 0 26px;
	letter-spacing: 0.04em;
	margin: 0 0 10px 0;
	color: #2D2D2D;
	background-image: url("../../images/process/zaimu_arrow.png");
	background-position: left center;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	font-size: 17px;
}
	

@media screen and (max-width: 768px){
	
.zaimu_01_block{
	display: block;
	position: relative;
	clear: both;
	margin: 20px auto 0px auto;
	width: 97%;
	height: 220px;
	background-image: url("../../images/process/zaimu_waku_sp.svg");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}
.ttl_line{
	display: block;
	margin: auto;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.04em;
	color: #2D2D2D;
	padding: 22px 0 8px 0;
}
	
.ttl_center_zaimu{
	display: block;
	margin: auto;
	text-align: center;
	font-weight: 500;
	font-size: 19px;
	letter-spacing: 0.05em;
	color: #2D2D2D;
	padding: 15px 0 10px 0;
}

.kihon_houshin_green{
	display: block;
	margin:  0 auto 3px auto;
	text-align: left;
	background-color: #34AF76;
	color: #FFFFFF;
	padding: 13px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.4em;
}

.kihon_houshin_green span{
	display: inline-block;
	padding-left: 24px;
	background-image: url("../../images/process/houshin_icon.png");
	background-position: left top;
	background-size: 18px 18px;
	background-repeat: no-repeat;
}
.zaimu_01_block ul{
	display: block;
	position: relative;
	width: 77%;
	margin: 20px auto 15px auto;
}

.zaimu_01_block li{
	display: inline-block;
	position: relative;
	clear: both!important;
	padding: 0 20px 0 24px;
	letter-spacing: 0.07em;
	margin: 0 0 5px 0;
	color: #2D2D2D;
	background-image: url("../../images/process/zaimu_arrow.png");
	background-position: left center;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	font-size: 15px;
}
	
}

.accordion  {
  margin: 30px auto;
}

.accordion_title {
  position: relative;
  display: block;
  list-style: none;
  width: 100%;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid #d8d8d8;
  padding: 1.4em 1.6em 1.4em;
  line-height: 1.6em;
}

summary.accordion_title::-webkit-details-marker {
  display:none;
}


/*----------
（開閉式）エリア
----------*/

.accordion_title{
	display: block;
	margin:  0 auto 3px auto;
	text-align: center;
	background-color: #fff;
	color: #1E1E1E;
	padding: 15px;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border: 1px solid #34AF76;
	border-radius: 8px;
	box-shadow: 1px 2px 3px rgba(0,0,0, 0.2);
}

.accordion_title:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 26px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url("../../images/process/bunseki_btn_icon.png");
  background-position: right center;
  background-size: contain;
  vertical-align: middle;
}

.accordion::details-content {
  opacity: 0;
  block-size: 0;
  transition: .3s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 1.6em;
}

.accordion .accordion_content {
  padding: 0 2em 0 3em;
}

.accordion .accordion_content > *:first-of-type {
  margin-top: 0;
}

.accordion .accordion_content > *:last-of-type {
  margin-bottom: 0;
}

.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}

.accordion[open] .accordion_content {
  padding: 1.4em 2em 1.4em 3em;
}

.accordion[open] .accordion_title:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 26px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url("../../images/process/bunseki_btn_icon2.png");
  background-position: right center;
  background-size: contain;
  vertical-align: middle;
}


@media screen and (max-width: 768px){
	
/*----------
（開閉式）エリア（スマホ）
----------*/

.accordion_title{
	display: block;
	margin:  0 auto 3px auto;
	text-align: center;
	background-color: #fff;
	color: #1E1E1E;
	padding: 13px 5px 13px 5px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	border: 1px solid #34AF76;
	border-radius: 8px;
	box-shadow: 1px 2px 3px rgba(0,0,0, 0.2);
	line-height: 1.3em;
}

.accordion_title:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 22px;/*画像の幅*/
  height: 17px;/*画像の高さ*/
  background-image: url("../../images/process/bunseki_btn_icon.png");
  background-position: right top;
  background-size: contain;
  vertical-align: middle;
}

.accordion::details-content {
  opacity: 0;
  block-size: 0;
  transition: .3s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 1.6em;
}

.accordion .accordion_content {
  padding: 0 2em 0 3em;
}

.accordion .accordion_content > *:first-of-type {
  margin-top: 0;
}

.accordion .accordion_content > *:last-of-type {
  margin-bottom: 0;
}

.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}

.accordion[open] .accordion_content {
  padding: 1.4em 2em 1.4em 3em;
}

.accordion[open] .accordion_title:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 22px;/*画像の幅*/
  height: 17px;/*画像の高さ*/
  background-image: url("../../images/process/bunseki_btn_icon2.png");
  background-position: right center;
  background-size: contain;
  vertical-align: middle;
}
	
}


/*----------
プロセス（下層ページ）メイン
----------*/
.sub-main{
	display: block;
	position: relative;
	width: 100%;
	height: 112px;
	background-image: url("../../images/process/sub_main.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.sub-main-contain{
	display: block;
	position: relative;
	max-width: 1000px;
	height: 112px;
	margin: 0 auto;
	bottom: 0px;
}

.sub-main-img{
	display: block;
	position: absolute;
	right: -40px;
	top:20px;
	max-width: 700px;
	height: 112px;
	margin: 0 auto;
	bottom: 0px;
	text-align: right;
	vertical-align: bottom;
}

.sub-main-img img{
	display: block;
	position: relative;
	width: 96%;
}
	
.sub-main h2{
	display: block;
	position: absolute;
	top:55px;
	font-size: 24px;
	font-weight: 400;
	left: 0px;
	width: 300px;
	color: #FFFFFF;
	letter-spacing: 0.1em;
	background-image: url("../../images/process/sub_maru.png");
	background-size: 23px 23px;
	background-position: left;
	background-repeat: no-repeat;
	padding-left: 30px;
}

.sub-main h2 img{
	width: 350px;
}

.sub-main .copy{
	display: block;
	position: absolute;
	width: 304px;
	font-size: 27px;
	letter-spacing: 0.13em;
	top:60px;
	left: 20px;
	line-height: 1.76em;
	font-weight: 500;
	color: #fff;
	padding: 12px 0 0 0;
	border-top: 1px solid #FFFFFF; 
	text-align: left;
}

@media screen and (max-width: 768px){
	
.sub-main{
	display: block;
	position: relative;
	width: 100%;
	height: 112px;
	background-image: url("../../images/process/sub_main_sp.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.sub-main-contain{
	display: block;
	position: relative;
	max-width: 1000px;
	height: 112px;
	margin: 0 auto;
	bottom: 0px;
}

.sub-main-img{
	display: block;
	position: absolute;
	right: -40px;
	top:20px;
	max-width: 700px;
	height: 112px;
	margin: 0 auto;
	bottom: 0px;
	text-align: right;
	vertical-align: bottom;
}

.sub-main-img img{
	display: block;
	position: relative;
	width: 96%;
}
	
.sub-main h2{
	display: block;
	position: absolute;
	top:55px;
	font-size: 21px;
	font-weight: 500;
	left: 0px;
	width: 300px;
	color: #FFFFFF;
	letter-spacing: 0.06em;
	background-image: url("../../images/process/sub_maru.png");
	background-size: 20px 20px;
	background-position: left;
	background-repeat: no-repeat;
	padding-left: 26px;
	margin: 0 0 0 14px;
}

.sub-main h2 img{
	width: 350px;
}

.sub-main .copy{
	display: block;
	position: absolute;
	width: 304px;
	font-size: 27px;
	letter-spacing: 0.13em;
	top:60px;
	left: 20px;
	line-height: 1.76em;
	font-weight: 500;
	color: #fff;
	padding: 12px 0 0 0;
	border-top: 1px solid #FFFFFF; 
	text-align: left;
}
	
}

/*----------
価値創造プロセス メイン
----------*/
.process-main{
	display: block;
	position: relative;
	width: 100%;
	height: 430px;
	background-image: url("../../images/process/process_main.png"), url("../../images/top/green_bg.jpg");
	background-position: right center,center center;
	background-size: 1001px 430px, cover;
	background-repeat: no-repeat,no-repeat;
}

.process-main-contain{
	display: block;
	position: relative;
	max-width: 1000px;
	height: 430px;
	margin: 0 auto;
	bottom: 0px;
}

.process-main-img{
	display: block;
	position: absolute;
	right: -40px;
	top:0px;
	max-width: 700px;
	height: 430px;
	margin: 0 auto;
	bottom: 0px;
	text-align: right;
	vertical-align: bottom;
}

.process-main-img img{
	display: block;
	position: relative;
	width: 96%;
}
	
.process-main h2{
	display: block;
	position: absolute;
	top:180px;
	left: 30px;
	width: 300px;
}

.process-main h2 img{
	width: 350px;
}

.process-main .copy{
	display: block;
	position: absolute;
	width: 304px;
	font-size: 27px;
	letter-spacing: 0.13em;
	top:212px;
	left: 20px;
	line-height: 1.76em;
	font-weight: 500;
	color: #fff;
	padding: 12px 0 0 0;
	border-top: 1px solid #FFFFFF; 
	text-align: left;
}


/*----------
価値創造プロセス 見出し
----------*/

.process-midashi{
	display: block;
	clear: both;
	position: relative;
	max-width: 500px;
	margin: auto;
	text-align: center;
	padding: 20px 0 30px 0;
	color: #41B277;
	font-size: 27px;
	letter-spacing: 0.05em;
}

.process-midashi:before{
	content:"";
	display: block;
	clear: both;
	width: 600px;
	height: 46px;
	background-image:url("../../images/process/process_midashi01.png");
	background-size: contain;
	background-position: left top;
	background-repeat: no-repeat;
}

.process-midashi:after{
	content:"";
	display: block;
	clear: both;
	width: 600px;
	height: 46px;
	background-image:url("../../images/process/process_midashi02.png");
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
}

@media screen and (max-width: 768px){
	
.process-midashi{
	display: block;
	clear: both;
	position: relative;
	max-width: 100%;
	margin: auto;
	text-align: center;
	padding: 20px 0 30px 0;
	color: #41B277;
	font-size: 19px;
	letter-spacing: 0.04em;
}

.process-midashi:before{
	content:"";
	display: block;
	clear: both;
	width: 100%;
	height: 30px;
	background-image:url("../../images/process/process_midashi01.png");
	background-size: contain;
	background-position: left top;
	background-repeat: no-repeat;
}

.process-midashi:after{
	content:"";
	display: block;
	clear: both;
	width: 100%;
	height: 30px;
	background-image:url("../../images/process/process_midashi02.png");
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
}
	
}



/*--   製造資本   --*/

.img_2colum{
	display: flex;
	column-gap: 30px;
	margin: 30px 0 30px 0;
}

.img_2colum .l_img{
	display:block;
	width: 84%;
	height: auto;
}

.original_title {
	position: relative;
	display: block;
	max-width: 600px;
	background: #ffffff;
	border: 1px solid #34AF76;
	border-radius: 30px;
	padding: 15px 0 15px 0;
	margin: -20px auto 10px auto;
	line-height: 1.6em;
	color: #1AAF68;
	letter-spacing: 0.06em;
	font-size: 19px;
	font-weight: 500;
	text-align: center;
	box-shadow: 1px 2px 3px rgba(0,0,0, 0.2);
}

.original_box {
	display: block;
	width: 100%;
	background-color: #E8FDF2;
	padding: 66px 20px 20px 20px;
	margin: -40px auto 10px auto;
	border-radius: 16px;
	column-gap: 25px;
}

.original_flex_box {
	display: flex;
	width: 100%;
	column-gap: 25px;
}

.ori_p_box{
	width: 23%;
}
.ori_name{
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0 10px 0;
}
.ori_name span{
	font-size: 14px!important;
	font-weight: 300!important;
}

@media screen and (max-width: 768px){
	
.img_2colum{
	display: flex;
	column-gap: 15px;
	margin: 30px 0 30px 0;
}
	
.original_title {
	position: relative;
	display: block;
	width: 95%;
	background: #ffffff;
	border: 1px solid #34AF76;
	border-radius: 40px;
	padding: 12px 5px 10px 5px;
	margin: 0px auto 10px auto;
	line-height: 1.4em;
	color: #1AAF68;
	letter-spacing: 0.04em;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	box-shadow: 1px 2px 3px rgba(0,0,0, 0.2);
}

.original_box {
	display: block;
	width: 100%;
	background-color: #E8FDF2;
	padding: 66px 6px 20px 6px;
	margin: -40px auto 10px auto;
	border-radius: 16px;
	column-gap: 10px;
}

.original_flex_box {
	display: flex;
	width: 100%;
	column-gap: 5px;
}

.ori_p_box{
	width: 50%;
}
.ori_name{
	width: 100%;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	padding: 10px 0 10px 0;
	line-height: 1.32em;
}
.ori_name span{
	font-size: 11px!important;
	font-weight: 300!important;
}

	
}



/*----------
process blockエリア（2カラム）
----------*/
.process_block{
	display: block;
	position: relative;
	width: 48%;
	height: auto;
	margin: 50px 0 0 0;
}

.left{
	float: left;
}

.right{
	float: right;
}

@media screen and (max-width: 768px){
	
.process_block{
	display: block!important;
	clear: both;
	position: relative;
	width: 100%;
	height: auto;
	margin: 20px auto 0 auto;
}

.left{
	clear: both;
}

.right{
	clear: both;
}
}

/*----------
process blockエリア（2カラム）テキスト
----------*/
.process_block_txt{
	display: block;
	position: relative;
	width: 48%;
	height: 84px;
	padding: 15px 15px 15px 36px;
	margin: 24px 0 0 0;
	background-color: #FFFFFF;
	border-radius: 12px;
	box-shadow: 1px 1px 3px rgba(0,0,0, 0.15);
	line-height: 1.64em!important;
	font-size: 16px;
	letter-spacing: 0.05em;
	border: 1px solid #E3E3E3;
	text-align: center;
}
.process_block_txt:before{
	content: '';
	background-image: url("../../images/common/maru_icon.png");
	background-size: 14px 14px;
	background-repeat: no-repeat;
	padding: 0 0 0 19px;
	margin: 0 0 0 -19px;
}

.process_block_txt2{
	display: block;
	position: relative;
	width: 48%;
	height: 84px;
	padding: 27px 15px 15px 36px;
	margin: 24px 0 0 0;
	background-color: #FFFFFF;
	border-radius: 12px;
	box-shadow: 1px 1px 3px rgba(0,0,0, 0.15);
	line-height: 1.64em!important;
	font-size: 16px;
	letter-spacing: 0.05em;
	border: 1px solid #E3E3E3;
	text-align: center;
}
.process_block_txt2:before{
	content: '';
	background-image: url("../../images/common/maru_icon.png");
	background-size: 14px 14px;
	background-repeat: no-repeat;
	padding: 0 0 0 19px;
	margin: 0 0 0 -19px;
}

.left{
	float: left;
}

.right{
	float: right;
}


@media screen and (max-width: 768px){

.process_block_txt{
	display: block;
	position: relative;
	width: 100%;
	clear: both;
	height: auto;
	padding: 15px 15px 15px 20px;
	margin: 24px 0 0 0;
	background-color: #FFFFFF;
	border-radius: 12px;
	box-shadow: 1px 1px 3px rgba(0,0,0, 0.15);
	line-height: 1.6em!important;
	font-size: 14px;
	letter-spacing: 0.01em;
	border: 1px solid #E3E3E3;
}
.process_block_txt:before{
	content: '';
	background-image: url("../../images/common/maru_icon.png");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	padding: 0 0 0 19px;
	margin: 0 0 0 -19px;
}
.process_block_txt2{
	display: block;
	position: relative;
	width: 100%;
	clear: both;
	height: auto;
	padding: 17px 15px 16px 20px;
	margin: 24px 0 0 0;
	background-color: #FFFFFF;
	border-radius: 12px;
	box-shadow: 1px 1px 3px rgba(0,0,0, 0.15);
	line-height: 1.6em!important;
	font-size: 14px;
	letter-spacing: 0.01em;
	border: 1px solid #E3E3E3;
}
.process_block_txt2:before{
	content: '';
	background-image: url("../../images/common/maru_icon.png");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	padding: 0 0 0 16px;
	margin: 0 0 0 -16px;
}

}
	
.logo_box{
	display: block;
	position: relative;
	clear: both;
	width: 300px;
	height: auto;
	margin: auto;
}

.anzen_koritsu{
	display: block;
	position: relative;
	clear: both;
	width: 86%;
	height: auto;
	margin: 40px auto 40px auto;
}

.anzen_koritsu_box{
	display: flex;
	position: relative;
	clear: both;
	width: 85%;
	height: auto;
	margin: 40px auto 20px auto;
	column-gap: 27px;
}

.p_group{
	display: block;
	width: 31%;
}

.p_photo{
	display: block;
	clear: both;
	position: relative;
	width: 100%;
	height: auto;
}

.p_name{
	display: block;
	clear: both;
	position: relative;
	width: 100%;
	height: 66px;
	background-color: #37B580;
	padding: 10px;
	text-align: center;
	color: #FFFFFF;
	letter-spacing: 0.04em;
	line-height: 1.38em;
	vertical-align: middle;
}

.padd_name{
	padding: 21px 0 0 0!important;
}
.p_txt{
	display: block;
	clear: both;
	position: relative;
	height: 36px;
	padding: 10px 0 10px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #393939;
	letter-spacing: 0.04em;
	line-height: 1.4em;
}


.group_txt_01{
	display: block;
	clear: both;
	position: relative;
	width: 85%;
	margin: auto;
	text-align: center;
	color: #41B277;
	font-size: 20px;
	letter-spacing: 0.05em;
}
.group_txt_01:before{
	content: "";
	display: block;
	width: 99.5%;
	height: 13px;
	background-image: url("../../images/process/group_line.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}

.group_txt_2col{
	display: block;
	position: relative;
	width: 85%;
	height: auto;
	margin: auto;
}

.group_txt_02{
	display: block;
	float: left;
	position: relative;
	width: 65%;
	text-align: center;
	color: #41B277;
	font-size: 20px;
	letter-spacing: 0.05em;
}
.group_txt_02:before{
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	background-image: url("../../images/process/group_line02.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}

.group_txt_03{
	display: block;
	float: right;
	position: relative;
	width: 32%;
	text-align: center;
	color: #41B277;
	font-size: 20px;
	letter-spacing: 0.05em;
}
.group_txt_03:before{
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	background-image: url("../../images/process/group_line03.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 768px){
	
.process-main{
	display: block;
	position: relative;
	width: 100%;
	height: 300px;
	background-image: url("../../images/process/process_main_sp.png"), url("../../images/top/green_bg.jpg");
	background-position: center bottom,center center;
	background-size: 380px 350px, cover;
	background-repeat: no-repeat,no-repeat;
}

.process-main-contain{
	display: block;
	position: relative;
	max-width: 100%;
	height: 430px;
	margin: 0 auto;
	bottom: 0px;
}

.process-main-img{
	display: block;
	position: absolute;
	right: 0px;
	top:140px;
	max-width:100%;
	height: auto;
	margin: 0 auto;
	bottom: 0px;
	text-align: right;
	vertical-align: bottom;
}

.process-main-img img{
	display: block;
	position: relative;
	width: 100%;
}
	
.process-ttl{
		display: block;
		width: 320px;
		height: auto;
		margin: auto;
	}
	
.process-main h2{
	display: block;
	position: absolute;
	margin: auto;
	width: 320px;
	top: 60px;
	left: 6%;
	text-align: center;
}

.process-main h2 img{
	width: 250px;
}

.process-main .copy{
	display: block;
	position: absolute;
	width: 250px;
	font-size: 24px;
	letter-spacing: 0.14em;
	top:126px;
	left: 15%;
	line-height: 1.76em;
	font-weight: 500;
	color: #fff;
	padding: 12px 0 0 0;
	border-top: 1px solid #FFFFFF; 
	text-align: left;
}
	

.logo_box{
	display: block;
	position: relative;
	clear: both;
	width: 200px;
	height: auto;
	margin: auto;
}

.anzen_koritsu{
	display: block;
	position: relative;
	clear: both;
	width: 100%;
	height: auto;
	margin: 30px auto 30px auto;
}

	
.anzen_koritsu_box{
	display: flex;
	position: relative;
	clear: both;
	width: 100%;
	height: auto;
	margin: 40px auto 20px auto;
	column-gap: 6px;
}

.p_group{
	display: block;
	width: 31%;
}

.p_photo{
	display: block;
	clear: both;
	position: relative;
	width: 100%;
	height: auto;
}

.p_name{
	display: block;
	clear: both;
	position: relative;
	width: 100%;
	height: 56px;
	background-color: #37B580;
	padding: 7px;
	text-align: center;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.02em;
	line-height: 1.2em;
	vertical-align: middle;
}

.padd_name{
	padding: 21px 0 0 0!important;
}
.p_txt{
	display: block;
	clear: both;
	position: relative;
	height: 42px;
	padding: 10px 0 10px 0;
	text-align: left;
	font-size: 11px;
	font-weight: 300;
	color: #393939;
	letter-spacing: 0.02em;
	line-height: 1.2em;
}

.group_txt_01{
	display: block;
	clear: both;
	position: relative;
	width: 95%;
	margin: auto;
	text-align: center;
	color: #41B277;
	font-size: 15px;
	letter-spacing: 0.02em;
}
.group_txt_01:before{
	content: "";
	display: block;
	width: 99.5%;
	height: 13px;
	background-image: url("../../images/process/group_line.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}
	
.group_txt_2col{
	display: block;
	position: relative;
	width:95%;
	height: auto;
	margin: auto;
}

.group_txt_02{
	display: block;
	float: left;
	position: relative;
	width: 64%;
	text-align: center;
	color: #41B277;
	font-size: 17px!important;
	letter-spacing: 0.04em!important;
	margin: 0 10px 0 0;
}
.group_txt_02:before{
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	background-image: url("../../images/process/group_line02.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}

.group_txt_03{
	display: block;
	float: left;
	position: relative;
	width: 31%;
	text-align: center;
	color: #41B277;
	font-size: 17px!important;
	letter-spacing: 0.04em!important;
}
.group_txt_03:before{
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	background-image: url("../../images/process/group_line03.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
}
	
	
/*----------
Vision blockエリア
----------*/
	
.vision_block{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	margin: 20px auto 0 auto;
}

.left{
	clear: both;
}

.right{
	clear: both;
}

	
}


/*----------
人財戦略（右側コンテンツ）
----------*/

.img_2colum_jizai{
	display: flex;
	column-gap: 30px;
	margin: 30px 0 30px 0;
}

.img_2colum_jizai .l_img{
	display:block;
	width: 84%;
	height: auto;
}

.senryaku_block{
	position: relative;
    display: block;
	width: 80%;
    margin-bottom: 40px;
    padding: 26px;
	border: 2px solid #50B383;
	border-radius: 16px;
}

.senryaku_block .body{
    margin-top: 0px;
    line-height: 1.5;
	font-size: 19px!important;
	color: #2DAD6B;
	letter-spacing: 0.04em!important;
}

.senryaku_block .txt{
    width: 100%;
    padding: 0px;
	margin: 0 0 25px 0;
}

.senryaku_block .img{
	position: relative;
	display: block;
	clear: both;
    width: 100%;
}
.senryaku_block ul{
	padding: 11px 0 0 0;
}

.senryaku_block li{
    display: block;
	position: relative;
	clear: both;
	padding: 0 0 0 15px;
	margin: 5px 0 ;
	font-size: 15px;
	letter-spacing: 0.02em;
	background-image: url("../../images/process/senryaku_list_icon.png");
	background-size: 10px 21px;
	background-position: left top;
	background-repeat: no-repeat;
}
.senryaku_block .txt .btn a:hover{
    background: #00b681;
    color: #fff;
}

@media screen and (max-width: 768px){
	
.img_2colum_jizai{
	display: block;
	clear: both;
	width: 90%;
	margin: 30px auto 30px auto;
}

.img_2colum_jizai .l_img{
	display:block;
	width: 100%;
	height: auto;
}
.senryaku_block{
	position: relative;
    display: block;
	width: 100%;
    margin: 20px auto 40px auto;
    padding: 18px;
	border: 2px solid #50B383;
	border-radius: 16px;
}

.senryaku_block .body{
    margin-top: 0px;
    line-height: 1.5;
	font-size: 17px!important;
	color: #2DAD6B;
	letter-spacing: 0.06em!important;
}

.senryaku_block .txt{
    width: 100%;
    padding: 0px;
	margin: 0 0 25px 0;
}

.senryaku_block .img{
	position: relative;
	display: block;
	clear: both;
    width: 100%;
}
.senryaku_block ul{
	padding: 5px 0 0 0;
}

.senryaku_block li{
    display: block;
	position: relative;
	clear: both;
	padding: 0 0 0 15px;
	margin: 5px 0 ;
	font-size: 14px;
	letter-spacing: 0.04em;
	background-image: url("../../images/process/senryaku_list_icon.png");
	background-size: 10px 21px;
	background-position: left top;
	background-repeat: no-repeat;
}
.senryaku_block .txt .btn a:hover{
    background: #00b681;
    color: #fff;
}
}


/*----------
表彰（2カラム）
----------*/

.jinzai01_area{
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	margin: auto;
	border: 1px solid #34AF76;
	border-radius: 18px;
}

.jinzai01_2colum{
	display: flex;
	column-gap: 30px;
	margin: 0 0 0 0;
}
.jinzai01{
	display: block;
	width: 37%;
	background-color:#34AF76;
	color: #fff;
	border-top-left-radius: 18px;
	border-bottom-left-radius: 18px;
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.09em;
	padding: 55px 0 55px 0;
}
.jinzai02{
	display: block;
	width: 63%;
}

.jinzai02 ul{
	padding: 26px 0 0 0;
}

.jinzai02 li{
	padding: 0 0 7px 14px;
	background-image: url("../../images/process/list_circle_icon.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 6px 14px;
}

@media screen and (max-width: 768px){
	
.jinzai01_area{
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	margin: auto;
	border: 1px solid #34AF76;
	border-radius: 16px;
}

.jinzai01_2colum{
	display: block;
	clear: both;
	margin: 0 0 0 0;
}
.jinzai01{
	display: block;
	width: 100%;
	background-color:#34AF76;
	color: #fff;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border-bottom-left-radius: 0;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 25px 0 20px 0;
}
.jinzai02{
	display: block;
	width: 100%;
}

.jinzai02 ul{
	display: block;
	padding: 18px 0 10px 20px;
	width: 96%;
}

.jinzai02 li{
	width: 100%;
	font-size: 14px;
	padding: 0 0 7px 14px;
	background-image: url("../../images/process/list_circle_icon.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 6px 14px;
	color: #3A3A3A;
	letter-spacing: 0.05em;
}
}


/*----------
表彰（2カラム）
----------*/

.hyosho_2colum{
	display: flex;
	column-gap: 30px;
	margin: 30px 0 30px 0;
}
.hyosho01{
	display: block;
	width: 60%;
}
.hyosho02{
	display: block;
	width: 38%;
}

@media screen and (max-width: 768px){
	
.hyosho_2colum{
	display: block;
	clear: both;
	margin: 30px auto 50px auto;
	width: 100%;
}
.hyosho01{
	display: block;
	clear: both;
	width: 100%;
}
.hyosho02{
	display: block;
	clear: both;
	width: 100%;
	margin: 15px 0 20px 0;
}
}

.ttl_center_omona{
	display: block;
	margin: auto;
	text-align: center;
	padding: 15px 0 0 0;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: #272727;
}

@media screen and (max-width: 768px){
	
.ttl_center_omona{
	display: block;
	margin: auto;
	text-align: center;
	padding: 15px 0 0 0;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #272727;
}

	
}


/*----------
R-SUDの普及によって期待されること（3カラム）
----------*/

.r_sud_box{
	position: relative;
    display: block;
    margin-bottom: 80px;
    padding: 26px 26px 30px 26px ;
	border: 2px solid #50B383;
	border-radius: 18px;
}

.r_sud_midashi{
	background-color: #34AF76;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin: 0 auto 20px auto;
	letter-spacing: 0.05em;
	padding: 11px 0 11px 0;
}

.r_sud{
	position: relative;
    display: flex;
	column-gap: 25px;
	width: 100%;
	height: auto;
}

.r_sud_con{
	display: block;
	width: auto;
}

.r_sud .img{
	position: relative;
	display: block;
    width: 300px;
}
.r_sud .img img{
    width: 100%
}

.r_sud_ttl{
	display: block;
    font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin: auto;
	color: #2A2A2A;
	letter-spacing: 0.04em;
	border-bottom: 3px solid #50B383;
	padding: 0 0 12px 0;
	width: 100%;
}

.r_sud_txt{
	display: block;
	font-size: 13px;
	line-height: 1.68em!important;
	letter-spacing: 0em;
	color: #404040;
	margin: 13px auto 13px auto;
	padding: 0;
	width: 100%;
	height: 43px;
}

.r_sud .txt .body{
    margin-top: 0px;
    line-height: 1.7;
	font-size: 18px!important;
	color: #40B277;
	letter-spacing: 0.04em!important;
}

@media screen and (max-width: 768px){

.r_sud_box{
	position: relative;
    display: block;
	clear: both;
	width: 100%;
    margin: 0 auto 40px auto;
    padding: 10px;
	border: 2px solid #50B383;
	border-radius: 18px;
}

.r_sud_midashi{
	background-color: #34AF76;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin: 15px auto 20px auto;
	letter-spacing: 0.07em;
	padding: 13px 0 11px 0;
}

.r_sud{
	position: relative;
    display: block;
	clear: both;
	width: 100%;
	margin:auto;
}

.r_sud_con{
}

.r_sud .img{
	position: relative;
	display: block;
    width: 100%;
	margin: 5px auto 22px auto;
}
.r_sud .img img{
    width: 100%
}

.r_sud_ttl{
    font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin: 8px auto 2px auto;
	color: #2A2A2A;
	letter-spacing: 0.05em;
}
.r_sud .txt{
    width: 64%;
    padding-left: 40px;
}
.r_sud_txt{
	display: block;
	font-size: 14px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	color: #404040;
	margin: 10px auto 10px auto;
	height: auto!important;
}

.r_sud .txt .body{
    margin-top: 0px;
    line-height: 1.7;
	font-size: 18px!important;
	color: #40B277;
	letter-spacing: 0.04em!important;
}

	
}




/*----------
社員による紹介（1人の場合）
----------*/

.staff_block01{
	position: relative;
    display: flex;
    margin-bottom: 40px;
    padding: 26px;
	border: 2px solid #50B383;
	border-radius: 18px;
}
.staff_block01 .img{
	position: relative;
	display: block;
    width: 300px;
}
.staff_block01 .img img{
    width: 100%
}
.staff_block01 .txt{
    width: 64%;
    padding-left: 40px;
}
.staff_txt{
	display: block;
	font-size: 14px;
	line-height: 1.8em;
	letter-spacing: 0.03em!important;
	color: #2C2C2C;
	margin: 15px auto 0 auto;
		}
.position{
	line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
	letter-spacing: 0.04em;
	border-top: 1px solid #50B383;
	padding: 15px 0 0 0;
	margin: 10px 0 0 0;
}
.staff_block01 .txt .staff_title{
    line-height: 1.1;
    font-size: 18px;
    font-weight: 600;
	letter-spacing: 0.1em;
	margin: 10px 0 0 0;
	padding: 0 0 15px 0;
	border-bottom: 1px solid #50B383;
}
.staff_block01 .txt .body{
    margin-top: 0px;
    line-height: 1.7;
	font-size: 18px!important;
	color: #40B277;
	letter-spacing: 0.04em!important;
}
.staff_block01 .txt .btn{
    margin-top: 40px;
    text-align: right;
}
.staff_block01 .txt .btn a{
    position: relative;
    display: inline-block;
    padding: 8px 40px 6px 25px;
    background: #fff;
    transition: background-color .5s, color .5s;
}
.staff_block01 .txt .btn a:after{
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 8px);
    width: 15px;
    height: 15px;
    background: url(../../images/common/ico_pdf.png) no-repeat center center;
    background-size: contain;
}
.staff_block01 .txt .btn a:hover{
    background: #00b681;
    color: #fff;
}

@media screen and (max-width: 768px){

.staff_block01{
    display: block;
	clear: both;
    padding: 20px 2px 20px 2px;
    margin-bottom: 20px;
	width: 100%;
	margin: auto!important;
}

.staff_block01 .img{
    width: 90%;
	margin: auto;
}
.staff_block01 .txt{
	display: block;
    width: 90%;
	clear: both;
    margin: 20px auto 0 auto;
    padding: 0;
}
.position{
	line-height: 1.6em;
    font-size: 13px;
    font-weight: 400;
	letter-spacing: 0em;
	padding: 20px 10px 0 10px;
}
.staff_txt{
	display: block;
	padding: 15px 10px 0 10px!important;
	font-size: 14px;
	line-height: 1.8em;
	letter-spacing: 0.04em;
	color: #2C2C2C;
	margin: 0px auto 0 auto;
		}
.staff_block01 .txt .staff_title{
    font-size: 16px;
	padding: 0 10px 10px 10px;
}
.staff_block01 .body{
    margin-top: 10px;
    font-size: 14px!important;
	line-height: 1.4em!important;
	letter-spacing: 0em!important;
	padding: 0px 10px 0 10px;
}
.staff_block01 .txt .btn{
    margin-top: 20px;
    text-align: left;
}
.staff_block01 .txt .btn a{
    width: 100%;
    padding: 8px 40px 6px 15px;
}
	
}




/*----------
社員による紹介（2人の場合）
----------*/

.staff_block02{
	position: relative;
    display: block;
    margin-bottom: 40px;
    padding: 26px;
	border: 2px solid #50B383;
	border-radius: 18px;
	height: 720px;
}
.staff_block02 .img{
	position: relative;
	display: block;
    width: 300px;
	float: left;
}
.staff_block02 .img img{
    width: 100%
}
.staff_block02 .txt{
    width: 64%;
    padding-left: 0px;
	float: right;
}

.staff_block02_clear{
	display: block!important;
	clear: both!important;
}

.staff_clear_line{
	display: block;
	clear: both;
	width: 100%;
	height: 27px;
	border-bottom: 1px solid #50B383;
	margin: 0 auto 27px auto;
}
.staff_block02 .txt .staff_title{
    line-height: 1.1;
    font-size: 18px;
    font-weight: 600;
	letter-spacing: 0.1em;
	margin: 10px 0 0 0;
	padding: 0 0 15px 0;
	border-bottom: 1px solid #50B383;
}
.staff_block02 .txt .body{
    margin-top: 0px;
    line-height: 1.7;
	font-size: 18px!important;
	color: #40B277;
	letter-spacing: 0.04em!important;
}


@media screen and (max-width: 768px){

	
.staff_block02{
    display: block;
	position: relative;
	clear: both;
	width: 100%;
	height: auto;
    padding: 20px 2px 20px 2px;
    margin: 0 auto 20px auto;
}
	
.staff2_area{
	display: block;
	position: relative;
	clear: both;
	width: 90%;
	margin: auto;
	}	
.staff_block02 .img{
	display: block;
	position: relative;
	clear: both;
    width: 100%;
	padding: 0!important;
	margin: 0 auto!important;
}

.staff_block02 .txt{
	display: block;
	position: relative;
	clear: both!important;
    width: 100%;
    margin-top: 20px;
    padding: 0;
}
.staff_block02 .txt .staff_title{
    font-size: 16px;
	padding: 0 10px 10px 10px;
}
.staff_block02 .body{
	display: block;
	position: relative;
	clear: both!important;
    margin-top: 10px;
    font-size: 16px!important;
	line-height: 1.4em!important;
	letter-spacing: 0.03em!important;
	padding: 0 10px 0 10px;
}
.staff_block02 .txt .btn{
    margin-top: 20px;
    text-align: left;
}
.staff_block02 .txt .btn a{
    width: 100%;
    padding: 8px 40px 6px 15px;
}
	
}
	
