
/***********************************************************************************************************************

company.css

***********************************************************************************************************************/
.company{
}

.company main{
	overflow-x: hidden; /* フォールバック */
	overflow-x: clip;   /* モダンブラウザ向け */
}


/* sec *************************************************************/
.sec_hd{
	position: relative;
	padding: 0;
}

.company_offices .sec_hd{
	padding-top: 17.3611111%;
	background: #006FB5;
background: linear-gradient(90deg, rgba(0, 111, 181, 1) 0%, rgba(73, 189, 236, 1) 50%, rgba(0, 111, 181, 1) 100%);
}

.sec_lead{
	padding-top: 8%;
}
.sec_company{
	padding: 3% 0 8%;
}



@media screen and (max-width: 767px) {
.company_offices .sec_hd{
	padding-top: 43.75%;
}
.sec_lead{
	padding-top: 12%;
}
.sec_company{
	padding: 5% 0 18%;
}
}




/* h1〜 *************************************************************/
h1.h1_ttl{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	font-size: 18px;
	font-size: clamp(14px, 1.8vw, 18px);
	text-align: center;
	color: #fff;
}
h1.h1_ttl .en{
	display: block;
	font-size: 310%;
	padding-bottom: 0.1em;
}

h2.h2_ttl{
	font-size: 34px;
	font-size: clamp(22px, 3.4vw, 34px);
	line-height: 1.5em;
	text-align: center;
	margin-bottom: 1.2em; /*0.8em*/
}

h2.h2_ttl_plus{
	font-size: 30px;
	font-size: clamp(22px, 2.8vw, 30px);
	line-height: 1.3em;
	margin-bottom: 1.5em;
}
h2.h2_ttl_plus .en{
	display: block;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200; /*from 200 to 900*/
	font-style: normal;
	font-size: 50%;
	color: #006fb5;
	/*margin-bottom: 0.6em;*/
}

h4.h4_ttl{
	font-size: 22px;
	font-size: clamp(16px, 2.2vw, 22px);
	line-height: 1.6em;
	color: #006fb5;
	padding-bottom: 0.3em;
	margin-bottom: 0.6em;
	border-bottom: 1px solid #ccc;
}

p.lead{
	font-size: 18px;
	font-size: clamp(14px, 1.8vw, 18px);
	text-align: center;
	line-height: 2.2em;
}

.cate_box p{
	text-align: justify;
}


@media screen and (max-width: 767px) {
h1.h1_ttl .en{
	font-size: 250%;
}
}




/* fig_hd *************************************************************/
.fig_hd{

}
.fig_hd img{
	width: 100%;
	height: auto;
}
.fig_hd .pc{}
.fig_hd .sp{ display: none;}


@media screen and (max-width: 767px) {
.fig_hd .pc{ display: none;}
.fig_hd .sp{ display: block;}
}







/* list_company *************************************************************/
.list_company{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
}
.list_company li{
	display: flex;
	flex-direction: column;
	width: 31.6666667%;
	font-size: 18px;
	font-size: clamp(16px, 1.8vw, 18px);
	margin-top: 3%;
}
.list_company li a{
	position: relative;
	height: 100%;
	color: #333;
	font-weight: 500;
	padding: 0;
	background-color: #f7f7f7;
	border-radius: 20px;
}
.list_company li a:hover{
	color: #fff;
	background-color: #006fb5;
}

.list_company li figure{
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.list_company li figure img{
	border-radius: 20px 20px 0 0;
}
.list_company li figcaption{
	font-weight: 500;
	padding: 1em 0.8em 2.2em;
}

.list_company li a img{
	transition: transform 1s ease-in-out;
}
.list_company li a:hover img{
	transform: scale(1.1);
}



@media screen and (max-width: 767px) {
.list_company li{
	width: 48%;
	margin-top: 4%;
}
}


@media screen and (max-width: 639px) {
.list_company li{
	width: 90%;
	margin: 8% auto 0;
}
}




/* biz_arrow *************************************************************/
.list_company li .biz_arrow{
	display: block;
	position: absolute;
	bottom: 0.8em;
	right: 0.6em;
	z-index: 1;
	width: 1.5em; /*40px*/
	height: 1.5em; /*40px*/
	border-radius: 50% 50%;
	/*border: 1px solid #006fb5;*/
	background-color: #006fb5;
	vertical-align: middle;	
}

.list_company li .biz_arrow::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50% 50%;
  background: #fff;
  transform: translate(-50%, -50%) scale(0);
  /*transform: translate(-50%, -50%) scale(0);*/
  transition: transform .3s ease-in-out;
}
.list_company li:hover .biz_arrow::before {
  transform: translate(-50%, -50%) scale(1);
}

.list_company .biz_arrow .arrow-round {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1em;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  margin-top: 0.05em;
  transition: transform .3s ease-in-out;
}
.list_company .biz_arrow .arrow-round::before {
  content: "";
  position: absolute;
  bottom: 3px;
  right: -0.05em;
  display: block;
  width: 0.5em;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  transition: transform .3s ease-in-out;
}

.list_company li:hover .biz_arrow .arrow-round,
.list_company li:hover .biz_arrow .arrow-round::before{
	background-color: #006fb5;
}



@media screen and (max-width: 767px) {
.list_company .biz_arrow .arrow-round::before {
  bottom: 2.5px;
}
}






/*******************************************

社長メッセージ

*******************************************/

/* sec *************************************************************/
.sec_message{
	padding: 8% 0 8%;
}


@media screen and (max-width: 767px) {
.sec_message{
	padding: 12% 0 18%;
}
}



/* h1〜 *************************************************************/
.sec_message p.align_c_l{
	line-height: 2.4em;
}
.sec_message p.ceo{
	font-size: 14px;
	font-size: clamp(12px, 1.4vw, 14px);
	line-height: 3em;
	text-align: right;
	padding: 0;
	margin: 2em 0 0;
}
.sec_message p.ceo span{
	display: inline-block;
	width: 170px;
	margin-left: 1.5em;
}


@media screen and (max-width: 767px) {
.sec_message p.align_c_l .resp_autowrap{
	display: inline;	
}
}






/*************************************************************

会社概要

*************************************************************/

/* sec *************************************************************/
.sec_overview{
	padding: 8% 0 0;
}
.sec_equipment{
	padding: 8% 0 0;
}
.sec_qualification{
	padding: 8% 0;
}

@media screen and (max-width: 767px) {
.sec_overview{
	padding: 12% 0 0;
}
.sec_equipment{
	padding: 12% 0 0;
}
.sec_qualification{
	padding: 12% 0 18%;
}
}



/* float_outline *************************************************************/
.float_outline{
	font-size: 16px;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 2em;
	border-top: 1px solid #d5d5d5;
}
.float_outline tr{
	border-bottom: 1px solid #d5d5d5;
}
.float_outline th{
	width: 10em;
	font-weight: 500;
	color: #333;
	text-align: left;
	padding: 1.8em 1em;
}
.float_outline td{
	width: calc(100% - 12em);
	padding: 1.8em 1em;
	text-align: justify;
}


@media screen and (max-width: 767px) {
.float_outline th{
	display: block;
	width: auto;
	padding: 1.2em 0.5em 0;
}
.float_outline td{
	display: block;
	width: auto;
	padding: 0.5em 0.5em 1.2em;
}
}



/* list_jigyo *************************************************************/
.list_jigyo{

}
.list_jigyo li{
	line-height: 1.6em;
	text-indent: -2.6em;
	padding-left: 2.6em;
	margin-top: 0.5em;
}
.list_jigyo li:first-child{
	margin-top: 0;
}



/* gmap_head *************************************************************/
.gmap_head {
    position: relative;
    width: 100%;
    padding-top: 33.3333333%;
	margin-top: 3em;
    height: 0;
}
.gmap_head iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 767px) {
.gmap_head {
    padding-top: 65%;
}
}





/* float_equipment *************************************************************/
.float_equipment{
	border: 1px solid #d5d5d5;
	margin-bottom: 1em;
}
.float_equipment tr{
	border-bottom: 1px solid #d5d5d5;
}
.float_equipment tr:nth-child(odd){
	background-color: #f7f7f7;
}
.float_equipment .only_pc{}
.float_equipment .only_sp{ display: none;}


.float_equipment th{
	position: sticky;
	top: 100px;
	font-size: 16px;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 2em;
	font-weight: 600;
	color: #fff;
	text-align: center;
	padding: 0.7em 0;
	background-color: #888;
	border-right: 1px solid #d5d5d5;
}
.float_equipment td{
	font-size: 14px;
	font-size: clamp(12px, 1.6vw, 14px);
	line-height: 2em;
	padding: 1.8em 1em;
	text-align: justify;
	border-right: 1px solid #d5d5d5;
}
.float_equipment td.name{
	width: 15em;
	font-size: 140%;
	color: #333;
	font-weight: 500;
	text-align: left;
}
.float_equipment td.num{
	width: 3em;
	font-size: 140%;
	font-weight: 500;
	text-align: right;
}

.float_equipment td.empty{
}


@media screen and (max-width: 767px) {
.float_equipment .only_pc{ display: none;}
.float_equipment .only_sp{ display: inline;}

.float_equipment th{
	width: auto;
	top: 60px;
	border-right: none;
}
.float_equipment td{
	display: block;
	width: auto;
	border-right: none;
	padding: 1em 1em 0;
}
.float_equipment td.name{
	width: auto;
}
.float_equipment td.num{
	width: auto;
	padding-bottom: 1em;
}
.float_equipment td.empty{
	display: none;
}
}





/*************************************************************

事業所／グループ会社

*************************************************************/

/* sec *************************************************************/
.sec_officeMap{
	overflow-y: hidden;
	position: relative;
	padding: 0 0;
	background-color: #f7f7f7;
}
.sec_officeMap::after{
	content: "";
	display: block;
	position: relative;
	z-index: 3;
	bottom: 0;
	width: 100%;
	height: 90px;
	background: #FFFFFF;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 247, 1) 100%);
}
.sec_officeMap .pankuzu_wrap{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.sec_offices{
	padding: 0 0;
}
.sec_groups{
	padding: 8% 0;
}


@media screen and (max-width: 767px) {
.sec_officeMap::after{
	height: 40px;
}
.sec_officeMap .pankuzu_wrap{
	position: relative;
	left: 0;
	transform: translateX(0);
}
.sec_offices{
	padding: 0 0;
}
.sec_groups{
	padding: 12% 0 18%;
}
}



/* h1〜 *************************************************************/
h3.h3_location{
	font-size: 22px;
	font-size: clamp(16px, 2.2vw, 22px);
	line-height: 1.5em;
}
.office_txt p.lead{
	text-align: left;
}


@media screen and (max-width: 767px) {
.office_txt p.lead{
	text-shadow: 0 0 5px #f7f7f7, 0 0 5px #f7f7f7;
}
}



/* office_txt *************************************************************/
.office_txt{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5%;
	width: 38%;
}


@media screen and (max-width: 767px) {
.office_txt{
	position: relative;
	top: 0;
	transform: translateY(0);
	width: 90%;
	padding-top: 10%;
}
}


/* fig_officeMap *************************************************************/
.fig_officeMap{
	width: 62.5%;
	margin-left: auto;
	margin-top: -12%;
}


@media screen and (max-width: 767px) {
.fig_officeMap{
	width: 95%;
	margin-top: -18%;
}
}


/* list_location *************************************************************/
.list_location{
	border-top: 1px solid #d5d5d5;
}
.list_location li{
	padding: 3em 0;
	border-bottom: 1px solid #d5d5d5;
}


/* location_box *************************************************************/
.location_box{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
}
.location_box_name{
	width: 33.3333333%;
}
.location_box_adr{
	width: 65%;
}

.location_box_adr dl{
	font-size: 16px;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.6em;
}
.location_box_adr dl dt{
	color: #333;
	font-weight: 500;
	margin-top: 1em;
}
.location_box_adr dl dt.job{
	color: #333;
	font-weight: 600;
	margin: 0 0 1.2em;
}
.location_box_adr dl dd{
}
.location_box_adr dl dd .resp_autowrap{
	vertical-align: baseline;
}

@media screen and (max-width: 767px) {
.location_box_name{
	width: 100%;
	margin-bottom: 1em;
}
.location_box_adr{
	width: 100%;
}
}



/* btn_map *************************************************************/
a.btn_map{
	font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300; /*from 200 to 900*/
  font-style: normal;
	margin-left: 1em;
}
i.icon_pin{
	display: inline-block;
	width: 1em;
	height: 1.2em;
	margin: 0 0.1em -0.1em 0;
	background: url("/company/offices/img/icon_pin.svg") bottom left / contain no-repeat;
}




/*************************************************************

沿革

*************************************************************/

/* sec *************************************************************/
.sec_history{
	padding: 8% 0 8%;
}


@media screen and (max-width: 767px) {
.sec_history{
	padding: 12% 0 18%;
}
}


/* h1〜 *************************************************************/
h2.h2_history{
	font-size: 28px;
	font-size: clamp(20px, 2.8vw, 28px);
	line-height: 1.6em;
	text-align: center;
	color: #006fb5;
	margin-bottom: 1em;
}
	
h3.h3_history{
	position: relative;
	font-size: 40px;
	font-size: clamp(30px, 4.0vw, 40px);
	font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200; /*from 200 to 900*/
  font-style: normal;
	color: #006fb5;
	line-height: 1em;
	text-align: right;
	padding-right: 1em;
	margin-bottom: 0.3em;
}
h3.h3_history::before{
	content: "";
	position: absolute;
	top: 0.3em;
	right: -5px;
	width: 10px;
	height: 10px;
	line-height: 1;
	border-radius: 50%;
	background-color: #006fb5;
}

.history_box_txt p{
	font-size: 14px;
	font-size: clamp(12px, 1.4vw, 14px);
	line-height: 1.6em;
	text-align: right;
	padding: 0 0;
	margin: 0.6em 5em 0 0; 
}


@media screen and (max-width: 767px) {
h3.h3_history{
	text-align: left;
	padding-right: 0;
	padding-left: 0.5em;
}
h3.h3_history::before{
	top: 0.3em;
	right: 0;
	left: -4px;
	width: 8px;
	height: 8px;
}
.history_box_txt p{
	text-align: left;
	margin: 0.5em 0 0 3em; 
}
.history_box_txt p .resp_autowrap{
	display: inline;
}
}




/* history_wrap *************************************************************/
.history_wrap{
	position: relative;
	width: 96%;
	margin: 0 auto;
}
.history_wrap::before{
	/*content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	margin-left: -0.5px;
	background-color: #99DDFF;*/
}

.p-history__list{
	position: relative;
}
.p-history__list::before {
  content: "";
  width: 1px;
  height: calc(var(--scroll-progress) * 1%); /* 進捗率に応じてラインの高さを変化 */
  background-color: #99DDFF;
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -0.5px;
}


@media screen and (max-width: 767px) {
.history_wrap{
	width: 90%;
}
.p-history__list::before {
  left: 0;
}
}



/* history_box *************************************************************/
.history_box{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
	margin-top: 8%;
}
.history_box:first-child{
	margin-top: 0;
}

.history_box_txt{
	width: 50%;
}
.history_box_photo{
	align-self: flex-start;
	position: sticky;
	top: 100px;
	width: 48%;
}
.history_box_photo img{
	width: 100%;
	height: auto;
}


@media screen and (max-width: 767px) {
.history_box_txt{
	width: 100%;
}
.history_box_photo{
	width: 95%;
	margin: 10% 0 0 auto;
}
}



/* history_box *************************************************************/
.list_history{

}
.list_history li{
	margin-top: 8%;
}




/*************************************************************

社会貢献活動

*************************************************************/

/* sec *************************************************************/
.sec_contribute{
	padding: 4% 0 8%; /*8% 0 0*/
}


@media screen and (max-width: 767px) {
.sec_contribute{
	padding: 8% 0 18%; /*12% 0 0*/
}
}


/* h1〜 *************************************************************/
h2.h2_contribute{
	font-size: 26px;
	font-size: clamp(18px, 2.6vw, 26px);
	line-height: 1.6em;
	color: #006fb5;
	margin-bottom: 0.5em;
}



/* list_contribute *************************************************************/
.list_contribute{
}
.list_contribute li{
	margin-top: 6%;
}
.list_contribute li:first-child{
	margin-top: 0;
}


@media screen and (max-width: 767px) {
.list_contribute li{
	margin-top: 8%;
}
}



/* contribute_box *************************************************************/
.contribute_box{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
}
.contribute_box_photo{
	width: 45%;
}
.contribute_box_txt{
	width: 51.6666667%;
}
.contribute_box_photo img{
	width: 100%;
	height: auto;
}
.contribute_box_txt p{
	/*line-height: 1.8em;*/
	padding-bottom: 0.5em;
}


@media screen and (max-width: 767px) {
.contribute_box_photo{
	width: 100%;
}
.contribute_box_txt{
	width: 100%;
	margin-top: 2em;
}
}






/*************************************************************

品質・環境／加入団体・認証団体

*************************************************************/

/* sec *************************************************************/
.sec_quality{
	padding: 4% 0 0; /*8% 0 0*/
}
.sec_organize{
	padding: 8% 0 0;
}
.sec_initiatives{
	padding: 8% 0;
}


@media screen and (max-width: 767px) {
.sec_quality{
	padding: 8% 0 0; /*12% 0 0*/
}
.sec_organize{
	padding: 12% 0 0;
}
.sec_initiatives{
	padding: 12% 0 18%;
}
}


/* h1〜 *************************************************************/



@media screen and (max-width: 767px) {
.sec_quality p .resp_autowrap{
	display: inline;
}
}



/* list_quality *************************************************************/
.list_quality{
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
}
.list_quality > li{
	margin-top: 5%;
}
.list_quality > li:nth-child(1),
.list_quality > li:nth-child(2){
	margin-top: 0;
}

.list_quality > li.col1{
	width: 100%;
}
.list_quality > li.col2{
	width: 45%;
}
.list_quality > li p{
	margin-bottom: 0;
	padding-bottom: 0;
}


@media screen and (max-width: 979px) {
.list_quality > li.col2{
	width: 100%;
	margin-top: 8%; /*12%*/
}
.list_quality > li.col2:first-child{
	margin-top: 0;
}
}



/* ph_international *************************************************************/
.ph_international{
	float: left;
	width: 35.714286%;
	max-width: 200px;
	margin: 0.8em 2em 0 0;
}
.ph_international img{
	border: 1px solid #eee;
}

@media screen and (max-width: 979px) {
.ph_international{
	float: right;
	margin: 0.8em 0 0 2em;
}
}




/* quality_detail *************************************************************/
dl.quality_detail{
	margin-top: 3em; /*2.4em*/
}
h4.h4_ttl + dl.quality_detail{
	margin-top: 2em;
}

dl.quality_detail dt{
	position: relative;
	font-size: 16px;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.6em;
	color: #666;
	margin: 0 0 0.6em;
	padding-left: 1.2em;
}
dl.quality_detail dt.ttl{
	color: #333;
	font-weight: 500;
}
dl.quality_detail dt.ttl_big{
	font-size: 18px;
	font-size: clamp(16px, 1.8vw, 18px);
	font-weight: 500;
	color: #333;
	padding-left: 0;
	margin-bottom: 0.4em;
}

dl.quality_detail dt::before{
	content: "";
	display: block;
	position: absolute;
	top: 0.6em;
	left: 0.3em;
	width: 0.4em;
	height: 0.4em;
	background-color: #006fb5;
	border-radius: 50%;
}
dl.quality_detail dt.ttl_big::before{
	content: "";
	display: none;
}

dl.quality_detail dd{
	font-size: 14px;
	font-size: clamp(12px, 1.6vw, 14px);
	line-height: 1.8em;
	color: #666;
	text-align: justify;
	padding-left: 1.2em;
}

dl.quality_detail dt a{
	font-size: 80%;
	color: #666;
	text-decoration: underline;
}
dl.quality_detail dt a:hover{
	color: #006fb5;
	text-decoration: none;
}

dl.quality_detail dt a i.icon_blank{
	display: inline-block;
	width: 11px;
	height: 9px;
	background: url("/common/img/icon_blank.svg") left bottom / contain no-repeat;
	margin-left: 0.5em;
}
