@charset "UTF-8";
/*----------------------------------------------------------------
  breadcrumb
----------------------------------------------------------------*/
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb_item a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.breadcrumb_item a:hover {
  opacity: 0.7;
}

.breadcrumb_item a.breadcrumb_link {
  text-decoration: underline;
}

.breadcrumb_separator {
  opacity: 0.5;
}

/*----------------------------------------------------------------
  common
----------------------------------------------------------------*/
.section_en_title02 {
  font-size: 92px;
}

.subcontent {
  background-image: url(../img/common/sub_content.jpg);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -110px;
}

.subcontent_news {
  margin-top: -100px;
}

.subcontent_company {
  margin-top: -100px;
}

/*----------------------------------------------------------------
  policy
----------------------------------------------------------------*/
.policy_section:last-child {
  border-bottom: none;
}

.policy_section_title {
  position: relative;
  padding-left: 0;
}

/*----------------------------------------------------------------
  company
----------------------------------------------------------------*/
.company_greeting_img {
  width: 640px;
}
.company_greeting_img figure {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.company_greeting_img figure img {
  width: 100%;
}

.company_greeting_content {
  max-width: 620px;
}

.company_outline_img img {
  display: block;
}

.company_outline_row {
  background-color: #F7F7F7;
}

.company_outline_th {
  min-width: 300px;
  border-right: 2px solid #dddddd;
}

.company_outline_td {
  margin-bottom: 0;
}

.company_map_embed iframe {
  width: 100%;
  height: 590px;
  border: 0;
}

/*----------------------------------------------------------------
  works（施工実績一覧）
----------------------------------------------------------------*/
.works_filter_btn {
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  max-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.works_filter_btn:not(.works_filter_btn_active):hover {
  background-color: #000;
  color: #fff !important;
  opacity: 1;
}

.works_filter_btn_active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .works_filter_btn_active:hover {
    background-color: #ffffff;
    color: #000000;
    opacity: 1;
  }
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.works_card .works_card_link {
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.works_card .works_card_link:hover {
  opacity: 0.8;
}
.works_card .works_card_img {
  position: relative;
  overflow: hidden;
}
.works_card .works_card_img picture {
  display: block;
  width: 100%;
}
.works_card .works_card_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.works_card .works_card_label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 1;
}

.works_single_inner {
  max-width: 1400px;
}

.works_single_img_wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56%;
          flex: 0 0 56%;
  max-width: 56%;
}

.works_single_main_img {
  width: 100%;
}
.works_single_main_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_single_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.works_single_detail_label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
}

.works_single_detail_value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}

.works_single_compare {
  max-width: 1200px;
}

.works_single_compare_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.works_single_compare_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_single_gallery {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.works_single_gallery_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px) / 4);
          flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
}
.works_single_gallery_item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_single_btn {
  border: 2px solid #000;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease, border-color 0.3s ease;
  transition: all 0.3s ease, border-color 0.3s ease;
}
.works_single_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008cd6;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 0;
}
.works_single_btn:hover {
  border-color: #008cd6;
}
.works_single_btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.works_single_btn:hover > span {
  color: #fff;
}
.works_single_btn:hover .works_single_btn_arrow .material-icons {
  background-color: #fff;
  color: #008cd6;
}
.works_single_btn > span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.works_single_btn .works_single_btn_arrow {
  position: relative;
  z-index: 1;
}
.works_single_btn .works_single_btn_arrow .material-icons {
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.works_single_btn_arrow {
  width: 36px;
  height: 36px;
}

/*----------------------------------------------------------------
  news
----------------------------------------------------------------*/
.news_filter_btn {
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  max-height: 40px;
}
.news_filter_btn:not(.news_filter_btn_active):hover {
  background-color: #000;
  color: #fff !important;
  opacity: 1;
}

.news_filter_btn_active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .news_filter_btn_active:hover {
    background-color: #ffffff;
    color: #000000;
    opacity: 1;
  }
}

.news_area .news_list_full {
  max-width: none !important;
  margin-top: 0 !important;
}
.news_area .news_list_full .news_item {
  border-bottom: 1px solid #e0e0e0;
}
.news_area .news_list_full .news_item:first-child {
  border-top: 1px solid #e0e0e0;
}
.news_area .news_list_full .news_item a {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news_area .news_list_full .news_item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008cd6;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 0;
}
.news_area .news_list_full .news_item a:hover {
  opacity: 1;
}
.news_area .news_list_full .news_item a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
}
.news_area .news_list_full .news_item a:hover .news_date,
.news_area .news_list_full .news_item a:hover .news_title {
  color: #fff;
}
.news_area .news_list_full .news_item a .news_date,
.news_area .news_list_full .news_item a .news_title {
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news_area .news_list_full .news_item a .news_title {
  max-width: 900px !important;
}
.news_area .news_list_full .news_item a .news_category {
  position: relative;
  z-index: 1;
}

.news_category {
  min-width: 100px;
}

.news_pagination_arrow {
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid #008cd6;
}
.news_pagination_arrow:hover {
  background-color: #ffffff !important;
  color: #fff !important;
  opacity: 1;
}
.news_pagination_arrow:hover .material-icons {
  color: #008cd6 !important;
}
.news_pagination_arrow .material-icons {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_pagination_num {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.news_pagination_num:not(.news_pagination_num_active):hover {
  background-color: #000;
  color: #fff !important;
  opacity: 1;
}

.news_pagination_num_active {
  background-color: #e0e0e0;
  color: #000;
  border-color: #e0e0e0;
  cursor: unset !important;
}

.news_pagination .wp-pagenavi,
.works_pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.news_pagination .wp-pagenavi a,
.news_pagination .wp-pagenavi span,
.works_pagination .wp-pagenavi a,
.works_pagination .wp-pagenavi span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.news_pagination .wp-pagenavi .page,
.news_pagination .wp-pagenavi .current,
.news_pagination .wp-pagenavi .extend,
.works_pagination .wp-pagenavi .page,
.works_pagination .wp-pagenavi .current,
.works_pagination .wp-pagenavi .extend {
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
}
.news_pagination .wp-pagenavi .page:hover,
.works_pagination .wp-pagenavi .page:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}
.news_pagination .wp-pagenavi .current,
.works_pagination .wp-pagenavi .current {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  color: #000;
  cursor: default;
}
.news_pagination .wp-pagenavi .previouspostslink,
.news_pagination .wp-pagenavi .nextpostslink,
.works_pagination .wp-pagenavi .previouspostslink,
.works_pagination .wp-pagenavi .nextpostslink {
  background-color: #008cd6;
  border: 2px solid #008cd6;
  color: transparent;
  font-size: 0;
  position: relative;
}
.news_pagination .wp-pagenavi .previouspostslink::before,
.news_pagination .wp-pagenavi .nextpostslink::before,
.works_pagination .wp-pagenavi .previouspostslink::before,
.works_pagination .wp-pagenavi .nextpostslink::before {
  font-family: "Material Icons";
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.news_pagination .wp-pagenavi .previouspostslink::before,
.works_pagination .wp-pagenavi .previouspostslink::before {
  content: "arrow_back";
}
.news_pagination .wp-pagenavi .nextpostslink::before,
.works_pagination .wp-pagenavi .nextpostslink::before {
  content: "arrow_forward";
}
.news_pagination .wp-pagenavi .previouspostslink:hover,
.news_pagination .wp-pagenavi .nextpostslink:hover,
.works_pagination .wp-pagenavi .previouspostslink:hover,
.works_pagination .wp-pagenavi .nextpostslink:hover {
  background-color: #fff;
  opacity: 1;
}
.news_pagination .wp-pagenavi .previouspostslink:hover::before,
.news_pagination .wp-pagenavi .nextpostslink:hover::before,
.works_pagination .wp-pagenavi .previouspostslink:hover::before,
.works_pagination .wp-pagenavi .nextpostslink:hover::before {
  color: #008cd6;
}
.news_pagination .wp-pagenavi .first,
.news_pagination .wp-pagenavi .last,
.works_pagination .wp-pagenavi .first,
.works_pagination .wp-pagenavi .last {
  background-color: #fff;
  border: 2px solid #008cd6;
  color: #008cd6;
}
.news_pagination .wp-pagenavi .first:hover,
.news_pagination .wp-pagenavi .last:hover,
.works_pagination .wp-pagenavi .first:hover,
.works_pagination .wp-pagenavi .last:hover {
  background-color: #008cd6;
  color: #fff;
  opacity: 1;
}
.news_pagination .wp-pagenavi .extend,
.works_pagination .wp-pagenavi .extend {
  border: none;
  background: transparent;
  cursor: default;
}

.news_single_img {
  max-width: 600px;
  margin-bottom: 0;
}
.news_single_img img {
  width: 100%;
  height: auto;
}

.news_heading_lg {
  background-color: #363636;
  position: relative;
  padding-left: 45px;
  margin-top: 80px;
}
.news_heading_lg::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background-color: #008cd6;
}

.news_heading_md {
  margin-top: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid #008cd6;
}

.news_heading_sm {
  padding-left: 20px;
  position: relative;
  border-left: none;
  margin-top: 80px;
}
.news_heading_sm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 50%;
  background-color: #000;
}
.news_heading_sm::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 50%;
  background-color: #008cd6;
}

.news_single_content p {
  font-size: 18px;
  font-weight: 400;
  color: #363636;
  letter-spacing: 0;
  line-height: 2;
  margin-bottom: 40px;
}
.news_single_content h2 {
  background-color: #363636;
  position: relative;
  padding: 20px 40px 20px 45px;
  margin-top: 80px;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.5;
}
.news_single_content h2::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background-color: #008cd6;
}
.news_single_content h3 {
  margin-top: 80px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #008cd6;
  font-size: 24px;
  font-weight: 900;
  color: #008cd6;
  letter-spacing: 0;
  line-height: 1.5;
}
.news_single_content h4 {
  padding-left: 20px;
  position: relative;
  border-left: none;
  margin-top: 80px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
  color: #363636;
  letter-spacing: 0;
  line-height: 1.5;
}
.news_single_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 50%;
  background-color: #000;
}
.news_single_content h4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 50%;
  background-color: #008cd6;
}
.news_single_content img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.news_single_content figure {
  max-width: 600px;
  margin-bottom: 40px;
}
.news_single_content figure img {
  margin-bottom: 0;
}
.news_single_content ul,
.news_single_content ol {
  margin-bottom: 40px;
  padding-left: 1.5em;
}
.news_single_content ul li,
.news_single_content ol li {
  font-size: 18px;
  line-height: 2;
  color: #363636;
}

.news_single_btn {
  border: 2px solid #000;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease, border-color 0.3s ease;
  transition: all 0.3s ease, border-color 0.3s ease;
}
.news_single_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008cd6;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 0;
}
.news_single_btn:hover {
  opacity: 1;
  border-color: #008cd6;
}
.news_single_btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.news_single_btn:hover span:first-child {
  color: #fff;
}
.news_single_btn:hover .news_single_btn_arrow .material-icons {
  background-color: #fff;
  color: #008cd6;
}
.news_single_btn > span {
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news_single_btn .news_single_btn_arrow {
  position: relative;
  z-index: 1;
}
.news_single_btn .news_single_btn_arrow .material-icons {
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.news_single_btn_arrow {
  width: 30px;
  height: 30px;
}

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

contact

----------------------------------------------------------------*/
.contact_form_section {
  background-color: #fff;
}

.contact_form_wrap {
  margin: 0 auto;
  background-color: #f7f7f7;
}

.contact_form_table {
  width: 100%;
  border-collapse: collapse;
}
.contact_form_table tr {
  border-bottom: 1px solid #dddddd;
}
.contact_form_table th {
  width: 280px;
  padding: 30px 0px;
  text-align: left;
  vertical-align: middle;
}
.contact_form_table th p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0;
}
.contact_form_table td {
  padding: 30px 0px;
  vertical-align: middle;
}
.contact_form_table td p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.contact_form_table td p .wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-list-item {
  margin: 0 0.7rem 0 0 !important;
}

.contact_label_required {
  display: inline-block;
}

.contact_label_optional {
  display: inline-block;
  background-color: #999999;
}

.contact_input {
  width: 100%;
  background-color: #fff;
  border: 1px solid #A4A4A4;
  border-radius: 0;
  font-family: inherit;
}
.contact_input[type=text], .contact_input[type=email], .contact_input[type=tel] {
  height: 45px;
}
.contact_input::-webkit-input-placeholder {
  color: #E1E1E1;
  font-size: 16px;
}
.contact_input::-moz-placeholder {
  color: #E1E1E1;
  font-size: 16px;
}
.contact_input:-ms-input-placeholder {
  color: #E1E1E1;
  font-size: 16px;
}
.contact_input::-ms-input-placeholder {
  color: #E1E1E1;
  font-size: 16px;
}
.contact_input::placeholder {
  color: #E1E1E1;
  font-size: 16px;
}
.contact_input:focus {
  outline: none;
  border-color: #008cd6;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  background-color: #fff;
  min-width: 16px;
  min-height: 16px;
}

.contact_form_table th {
  width: 300px;
}

.contact_form_table .contact_textarea_th {
  vertical-align: top;
}

.textarea_th {
  vertical-align: top !important;
}

.wpcf7-spinner {
  display: none !important;
}

.contact_textarea {
  width: 100%;
  border: 1px solid #A4A4A4;
  border-radius: 0;
  font-family: inherit;
  resize: vertical;
}
.contact_textarea::-webkit-input-placeholder {
  color: #aaa;
}
.contact_textarea::-moz-placeholder {
  color: #aaa;
}
.contact_textarea:-ms-input-placeholder {
  color: #aaa;
}
.contact_textarea::-ms-input-placeholder {
  color: #aaa;
}
.contact_textarea::placeholder {
  color: #aaa;
}
.contact_textarea:focus {
  outline: none;
  border-color: #008cd6;
}

.contact_submit_btn {
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 300px;
}
.contact_submit_btn:hover {
  background-color: #fff;
  color: #008cd6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bg_red {
  background-color: #D81B23;
}

.company_history_row {
  border-bottom: 1px solid #dddddd;
}

.company_history_row_first {
  border-top: 1px solid #dddddd;
}

.company_history_content .manth_area {
  width: 100px;
  white-space: nowrap;
}

.company_history_content04 {
  position: relative;
  left: -10px;
}

.company_history_cert {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.company_history .ml_80 {
  margin-left: -8px !important;
}

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

aboutページ

----------------------------------------------------------------*/
.subcontent_about {
  margin-top: -100px;
}

.about_hero {
  position: relative;
}

.about_hero_bg {
  position: relative;
  width: 100%;
  background-image: url(../img/about/about_bg01.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 235px 0;
}

.about_img01_area {
  background-image: url(../img/about/about_map.png);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
}
.about_img01_area .about_img01 {
  position: relative;
  z-index: 10;
  top: -40px;
  width: 35.4vw;
  min-width: 500px;
}

.about_hero_map {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 45%;
  z-index: 2;
  opacity: 0.8;
}
.about_hero_map img {
  width: 100%;
  height: auto;
}

.about_features {
  background-color: #F2F9FD;
}

.about_feature_item {
  margin-bottom: 0;
}

.about_feature_row {
  position: relative;
}

.about_feature_img {
  width: 50%;
  max-width: 640px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about_feature_img img {
  width: 100%;
  height: auto;
  display: block;
}

.about_feature_content {
  width: 50%;
  position: relative;
  max-width: 680px;
}

.about_feature_icon {
  position: absolute;
  top: -30%;
  right: 0;
  width: 278px;
  z-index: 0;
}
.about_feature_icon img {
  width: 100%;
  height: auto;
}

.about_feature_text {
  position: relative;
  z-index: 1;
}

.about_initiative_card {
  width: calc(25% - 30px);
}

.about_initiative_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 225px;
}
.about_initiative_icon img {
  width: 100%;
  height: auto;
}

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

serviceページ

----------------------------------------------------------------*/
.service_mv {
  margin-right: auto;
  margin-left: 0;
}
.service_mv .mv_img img {
  width: 1020px;
  max-width: 80%;
}
.service_mv .service_text_area {
  top: 50%;
  right: -120px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service_mv .service_text_area01 {
  right: -50px;
}
.service_mv .service_text_area02 {
  right: 0px;
}
.service_mv .service_text_area04 {
  right: -100px;
}

.service_worries {
  background-color: #F2F9FD;
}
.service_worries .service_worries_inner {
  gap: 60px 0;
}
.service_worries .service_worries_inner .box {
  width: 31%;
  border: 2px solid #000;
  -webkit-box-shadow: 4px 4px 0 #000;
          box-shadow: 4px 4px 0 #000;
}
.service_worries .service_worries_inner .box .nam {
  top: -20px;
  left: 20px;
}
.service_worries .service_worries_inner .box_stealth {
  visibility: hidden;
  opacity: 0;
}

.service_repair.service_repair01 {
  background-color: #F7F7F7;
  background-image: url(../img/factory/repair_bg01.png);
  background-position: right 2% top;
  background-repeat: no-repeat;
}
.service_repair.service_repair01 .service_repair_row .repair_main01 {
  width: 54%;
}
.service_repair.service_repair01 .service_repair_row .text_area {
  width: 42%;
}
.service_repair.service_repair01 .service_repair_row .text_area li {
  border-bottom: 1px solid #DDDDDD;
}
.service_repair.service_repair01 .fot_img_area .box {
  width: 23%;
}
.service_repair.service_repair02 .fot_img_area {
  gap: 60px 0;
}
.service_repair.service_repair02 .fot_img_area .box {
  width: 32%;
}

.service_details .service_details_inner .service_details_row {
  gap: 60px 0;
}
.service_details .service_details_inner .service_details_row .box {
  width: 48%;
}

.service_faq {
  background-color: #F2F9FD;
}
.service_faq .service_faq_inner .service_faq_row .text_a {
  color: #ddd;
}

.service_flow {
  background-image: url(../img/inspection/flow_bg01.svg);
}
.service_flow .service_flow_row {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 10px;
}
.service_flow .service_flow_row .icon_wap {
  width: 130px;
  position: relative;
}
.service_flow .service_flow_row .text_wap {
  width: calc(100% - 220px);
}
.service_flow .service_flow_row:not(:last-child) .icon_wap::after {
  content: "";
  position: absolute;
  top: 146px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 110px);
  background: #000;
}

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

点検項目テーブル

----------------------------------------------------------------*/
.inspection_table_wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
}

.inspection_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  table-layout: fixed;
}

.inspection_table_header_item {
  width: 300px;
  background-color: #ffffff;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

.inspection_table_header {
  background-color: #363636;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
}

.inspection_table_item {
  background-color: #dddddd;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

.inspection_table_cell {
  background-color: #f7f7f7;
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
}