@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media (max-width: 768px) {
  html {
    font-size: 2vw;
  }
}

a:hover{
	opacity:0.7;
	color: unset;
	text-decoration: none;
}

body {
  line-height: 1.5;
  font-size: 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #231815;
}

img, iframe {
  max-width: 100%;
}

.center {
  text-align: center;
}

header {
  padding-top: 30px;
  padding-bottom: 15px;
  border-bottom: 4px solid #44AF35;
}
@media (max-width: 768px) {
  header {
    padding-top: 5vw;
    padding-bottom: 8vw;
  }
}
header .container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1040px;
}
@media (max-width: 768px) {
  header .container {
    width: 100%;
    padding: 0 5%;
    align-items: center;
  }
}
header .container > p {
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  header .container > p {
    font-size: 3vw;
    margin-bottom: 2vw;
    margin-right: 10vw;
  }
}
header .container .logo {
  width: 265px;
}
@media (max-width: 768px) {
  header .container .logo {
    width: 40%;
    text-align: center;
  }
}
header .container .header_body {
  width: 550px;
  text-align: right;
}
@media (max-width: 768px) {
  header .container .header_body {
    width: 60%;
  }
}
header .container .header_body nav {
  margin-top: 1em;
}
@media (max-width: 768px) {
  header .container .header_body nav {
    position: fixed;
    background-color: #efefef;
    margin: 0;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}
nav > ul {
  display: flex;
  justify-content: flex-end;
  border-right: 1px solid #000;
}
@media (max-width: 768px) {
  nav > ul {
    flex-wrap: wrap;
    border: 0;
    margin-top: 15vw;
  }
}
nav > ul > li {
  font-size: 1.8rem;
  border-left: 1px solid #000;
  position: relative;
}
@media (max-width: 768px) {
  nav > ul > li {
    font-size: 2.8rem;
    width: 100%;
    margin-bottom: 0.5em;
    text-align: center;
    border: 0;
  }
}
nav > ul > li ul {
  display: none;
  position: absolute;
  top: 27px;
}
@media (min-width: 769px) {
  nav > ul > li ul {
    padding: 0.5em 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 5;
    width: 15em;
  }
}
@media (max-width: 768px) {
  nav > ul > li ul {
    display: block;
    position: relative;
    padding-top: 2vw;
    top: auto;
  }
}
nav > ul > li ul li {
  font-size: 0.8em;
}
nav > ul > li ul li a {
  display: block;
  padding: 0.2em 1.3em;
  text-align: left;
}
nav > ul > li ul li a::before {
  content: "- ";
}
@media (max-width: 768px) {
  nav > ul > li ul li a {
    padding: 0.5em 1em;
    text-align: center;
  }
}
nav > ul > li > a {
  display: inline-block;
  padding: 0 1em;
  position: relative;
}

/*sp menu*/
.sp_navi {
  display: none;
}

@media (max-width: 768px) {
  .sp_navi {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  .panel_btn {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0px;
  }

  .panel_btn_icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3px;
    margin: -4px 0 0 -15px;
    background: #44AF35;
    transition: 0.2s;
  }

  .panel_btn_icon:before, .panel_btn_icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 3px;
    background: #44AF35;
    transition: 0.3s;
  }

  .panel_btn_icon:before {
    margin-top: -10px;
  }

  .panel_btn_icon:after {
    margin-top: 6px;
  }

  .panel_btn .close {
    background: transparent;
  }

  .panel_btn .close:before, .panel_btn .close:after {
    margin-top: 0;
    background-color: #d4b67c;
  }

  .panel_btn .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  .panel_btn .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}
.contents_body {
  width: 1040px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contents_body {
    width: 100%;
    padding: 0 5%;
  }
}
.contents_body h1 {
  text-align: center;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 80px;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .contents_body h1 {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.contents_body h1::after {
  content: "";
  display: block;
  margin: auto;
  margin-top: 30px;
  width: 1em;
  height: 3px;
  background-color: #44AF35;
}
@media (max-width: 768px) {
  .contents_body h1::after {
    margin-top: 20px;
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.container .half_col {
  width: 100%;
  max-width: 520px;
}
@media (max-width: 768px) {
  .container .half_col {
    max-width: none;
  }
}

.tel {
  text-align: right;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 0.7;
}
@media (max-width: 768px) {
  .tel {
    padding: 0 5%;
    font-size: 6.5vw;
  }
}
@media (min-width: 769px) {
  .tel {
    margin-right: 11px;
  }
}
.tel span {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  display: inline-block;
  color: #fff;
  padding: 5px 20px;
  z-index: 2;
}
@media (max-width: 768px) {
  .tel span {
    font-size: 2vw;
    padding: 1vw 2vw;
  }
}
.tel span::before {
  transform: skewX(-45deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #F2971B;
  z-index: -1;
}

footer {
  margin-top: 85px;
  border-top: 4px solid #44AF35;
}
@media (min-width: 769px) {
  footer {
    min-width: 1040px;
  }
}
footer .footer_body {
  background-color: #EFEFEF;
  background-image: url(../img/common/footer_bg_logo.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 80%;
  padding: 35px 0 40px 0;
}
@media (max-width: 768px) {
  footer .footer_body {
    padding-top: 25px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
footer .footer_body .container {
  width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  footer .footer_body .container {
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
footer .footer_body .container nav > ul {
  margin-top: 1em;
}
footer .footer_body .container nav > ul > li {
  font-size: 1.5rem;
}
footer .footer_body .container nav > ul > li ul {
  width: 20em;
  top: 22px;
  padding: 1em 0;
}
footer .footer_body .container .tel {
  width: 320px;
}
@media (max-width: 768px) {
  footer .footer_body .container .tel {
    width: 100%;
    text-align: center;
  }
}
footer .footer_body .office {
  width: auto;
  margin: 0;
}
@media (max-width: 768px) {
  footer .footer_body .office {
    width: 100%;
  }
}
footer .footer_body .office .logo {
  margin-bottom: 25px;
}
footer .footer_body .office p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-right: 60px;
}
@media (max-width: 768px) {
  footer .footer_body .office p {
    margin-right: 5vw;
  }
}
footer > p {
  text-align: center;
  font-size: 1.2rem;
  padding: 2em 0;
}

.top .mainv {
  text-align: center;
  width: 100%;
  height: 44.5vw;
  display: flex;
  justify-content: center;
  background-image: url(../img/top/top_2023_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.top .mainv > p {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 3px;
  top: 40%;
  position: relative;
}
.top .mainv > p img {
  width: 70%;
}
@media (min-width: 769px) {
  .top .mainv {
    min-width: 1040px;
  }

}
.top .contents_body h1 {
  margin: 80px auto 55px auto;
}
@media (max-width: 768px) {
  .top .contents_body h1 {
    margin: 40px auto;
  }
  .top .mainv > p {
    font-size: 60%;

  }
}
.top .contents_body h2 {
  margin: 0 40px 0 30px;
  display: inline-block;
}
.top .contents_body .top_services ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 25px;
  margin-top: 73px;
}
.top .contents_body .top_services ul li {
  font-size: 2.5rem;
  /* font-family: "Noto Serif JP", serif; */
  max-width: 490px;
  text-align: center;
  /* border-bottom: 3px solid #44AF35; */
  /* margin-bottom: 50px; */
  /* padding-bottom: 15px; */
}
@media (max-width: 768px) {
  .top .contents_body .top_services ul li {
    max-width: none;
  }
}
.top .contents_body .top_services ul li img {
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.top .contents_body .top_contact {
  margin-top: 85px;
}
.top .contents_body .top_contact ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .top .contents_body .top_contact ul {
    flex-wrap: wrap;
  }
}
.top .contents_body .top_contact ul li {
  font-size: 2.4rem;
  max-width: 490px;
  width: 100%;
}
@media (max-width: 768px) {
  .top .contents_body .top_contact ul li {
    max-width: none;
    margin-bottom: 1em;
  }
}
.top .contents_body .top_contact ul li:nth-of-type(2) a img {
  margin-top: 10px;
}
.top .contents_body .top_contact ul li a {
  display: block;
  text-align: center;
  border: 3px solid #F7B52C;
  width: 100%;
  height: 100%;
  padding: 45px 55px 30px 55px;
}
@media (max-width: 768px) {
  .top .contents_body .top_contact ul li a {
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 4.7vw;
  }
}
.top .contents_body .top_contact ul li a img {
  display: inline-block;
  margin-bottom: 1em;
}

@media (min-width: 769px) {
  .company .container .header_body nav > ul > li:nth-of-type(2) {
    position: relative;
  }
}
@media (min-width: 769px) {
  .company .container .header_body nav > ul > li:nth-of-type(2)::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    display: inline-block;
    width: 2em;
    height: 2px;
    background-color: #44AF35;
  }
}
.company .contents_body h2 {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  color: #fff;
  padding: 0.3em;
  margin: 0 auto 1em auto;
  background-color: #44AF35;
}
.company .contents_body section {
  margin-bottom: 85px;
}
/* .company .contents_body section table tr th {
  font-weight: normal;
  text-align: justify;
  text-align-last: justify;
  padding-right: 0.5em;
} */
/* @media (max-width: 768px) {
  .company .contents_body section table tr th {
    display: block;
    width: 100%;
    text-align: left;
    text-align-last: auto;
    font-weight: bold;
  }
} */
/* .company .contents_body section table tr td {
  text-indent: -1em;
  padding-left: 2em;
}
@media (max-width: 768px) {
  .company .contents_body section table tr td {
    display: block;
    width: 100%;
    text-indent: 0;
    padding-left: 0;
    margin-bottom: 1em;
  }
} */
/* .company .contents_body section table tr td::before {
  content: "：";
  display: inline-block;
  margin-right: 0.5em;
}
@media (max-width: 768px) {
  .company .contents_body section table tr td::before {
    display: none;
  }
} */
@media (min-width: 769px) {
  .company .contents_body section .message_body {
    width: 740px;
    padding-right: 1em;
  }
}
.company .contents_body section .message_img {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .company .contents_body section .message_img {
    text-align: center;
    width: 100%;
  }
}
.company .contents_body section .message_img strong {
  font-weight: normal;
  font-size: 1.5em;
}
.company .contents_body section .message_img img {
  display: inline-block;
  margin-bottom: 15px;
}
.company .contents_body p {
  margin-bottom: 1em;
}

@media (min-width: 769px) {
  .services .container .header_body nav > ul > li:nth-of-type(1) {
    position: relative;
  }
}
@media (min-width: 769px) {
  .services .container .header_body nav > ul > li:nth-of-type(1)::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    display: inline-block;
    width: 2em;
    height: 2px;
    background-color: #44AF35;
  }
}
.services .contents_body section {
  margin-bottom: 80px;
}
.services .contents_body section h2 {
  font-size: 3rem;
  text-align: center;
  color: #44AF35;
  border-bottom: 4px solid #44AF35;
  margin-bottom: 1em;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .services .contents_body section h2 {
    font-size: 5vw;
  }
}
.services .contents_body section.service_head p {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .services .contents_body section.service_head p img {
    margin: auto;
    display: block;
  }
}
.services .contents_body section table {
  width: 100%;
  font-size: 2.4rem;
  border: 1px solid #231815;
  margin-bottom: 0.5em;
}
.services .contents_body section table caption {
  text-align: center;
  color: #fff;
  background-color: #44AF35;
  border: 1px solid #231815;
  border-bottom: 0;
}
.services .contents_body section table tr th, .services .contents_body section table tr td {
  border: 1px solid #231815;
  padding: 0.2em;
  text-align: center;
}
.services .contents_body section table tr th {
  font-weight: normal;
  background-color: #DCDDDD;
}
.services .contents_body section table tr td.price {
  font-weight: bold;
  color: #F7B52C;
}
.services .contents_body section table tr:nth-of-type(odd) {
  background-color: #F0F7ED;
}
.services .contents_body section.cost .container {
  margin-bottom: 1em;
}
.services .contents_body section.cost .container div:nth-of-type(1) {
  width: 550px;
}
@media (max-width: 768px) {
  .services .contents_body section.cost .container div:nth-of-type(1) {
    width: 100%;
  }
}
.services .contents_body section.cost .container div:nth-of-type(2) {
  width: 445px;
}
@media (max-width: 768px) {
  .services .contents_body section.cost .container div:nth-of-type(2) {
    width: 100%;
  }
}
.services .contents_body section.cost .container div:nth-of-type(2) p {
  font-size: 1.8rem;
}
.services .contents_body section .service_contact a {
  display: block;
  font-size: 3.4rem;
  text-align: center;
  padding: 0.3em;
  margin-top: 1em;
  color: #fff;
  background-color: #F7B52C;
}
.services .contents_body section.clean_option div.container {
  justify-content: flex-start;
  margin-bottom: 55px;
}
.services .contents_body section.clean_option div.container h4 {
  width: 310px;
  height: 100px;
  color: #fff;
  background-color: #44AF35;
  border-radius: 5px;
  padding: 10px 30px;
  margin-right: 1em;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .services .contents_body section.clean_option div.container h4 {
    width: 100%;
    margin-right: 0;
    font-size: 5vw;
  }
}
.services .contents_body section.clean_option div.container h4::before {
  content: "";
  display: inline-block;
  width: 107px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.services .contents_body section.clean_option div.container ul li::before {
  content: "● ";
  color: #44AF35;
}
.services .contents_body section.clean_option .floor_clean h4::before {
  background-image: url(../img/services/services1_clean_option01.svg);
  height: 71px;
}
.services .contents_body section.clean_option .garbage h4::before {
  background-image: url(../img/services/services1_clean_option02.svg);
  height: 71px;
}
.services .contents_body section.clean_option .restroom_clean h4::before {
  background-image: url(../img/services/services1_clean_option03.svg);
  height: 71px;
}
.services .contents_body section.other ul li::before {
  content: "● ";
  color: #44AF35;
}
.services .contents_body h3 {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  color: #fff;
  padding: 0.3em;
  margin: 0 auto 1em auto;
  background-color: #44AF35;
}

.services2 .service_head .flowchart {
  text-align: center;
}
.services2 .service_head .omakase {
  display: block;
  font-size: 3.4rem;
  text-align: center;
  padding: 0.3em;
  margin-top: 1em;
  color: #fff;
  background-color: #F7B52C;
}
.services2 ul.services_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .services2 ul.services_list {
    flex-wrap: wrap;
  }
}
.services2 ul.services_list li {
  text-align: center;
  font-size: 3.4rem;
  padding: 1em;
  width: 9em;
  color: #fff;
  background-color: #44AF35;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .services2 ul.services_list li {
    width: 100%;
    margin-bottom: 0.5em;
  }
}

.services3 .service_head .pdca h3 {
  background: none;
  color: #000;
  font-weight: bold;
  font-size: 6rem;
  padding: 0;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .services3 .service_head .pdca h3 {
    margin-bottom: 0.1em;
  }
}
.services3 .service_head .pdca ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .services3 .service_head .pdca ul {
    flex-wrap: wrap;
  }
}
.services3 .service_head .pdca ul li {
  width: 240px;
  background-color: #44AF35;
  color: #fff;
  text-align: center;
  padding: 0.2em 0;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .services3 .service_head .pdca ul li {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
.services3 .service_head .pdca p {
  font-size: 3rem;
  text-align: center;
}
.services3 .support p {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .services3 .support p img {
    display: block;
    margin: auto;
  }
}
.services3 .support dl {
  max-width: 587px;
  width: 100%;
  margin: 0 auto 3em auto;
}
.services3 .support dl dt {
  font-size: 3rem;
  text-align: center;
  background-color: #EFEFEF;
  border: 1px solid #44AF35;
  font-weight: normal;
}
.services3 .support dl dd {
  padding-top: 1em;
}

@media (min-width: 769px) {
  .inquiry .container .header_body nav > ul > li:nth-of-type(3) {
    position: relative;
  }
}
@media (min-width: 769px) {
  .inquiry .container .header_body nav > ul > li:nth-of-type(3)::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    display: inline-block;
    width: 2em;
    height: 2px;
    background-color: #44AF35;
  }
}
.inquiry header nav > ul > li:nth-of-type(4) > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.7em;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #44AF35;
}
@media (max-width: 768px) {
  .inquiry header nav > ul > li:nth-of-type(4) > a::before {
    bottom: -0.2em;
  }
}
.inquiry .contents_body h1::after {
  background-color: #F7B52C;
}
.inquiry .contents_body h2 {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  color: #fff;
  padding: 0.3em;
  margin: 0 auto 1em auto;
  background-color: #F7B52C;
}
.inquiry .contents_body section {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.inquiry .contents_body section p {
  margin-bottom: 1em;
}
.inquiry .contents_body section .caption {
  color: #E50012;
}
.inquiry .contents_body section table {
  width: 100%;
}
.inquiry .contents_body section table tr {
  border: 1px solid #231815;
}
.inquiry .contents_body section table tr th, .inquiry .contents_body section table tr td {
  font-weight: 300;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .inquiry .contents_body section table tr th, .inquiry .contents_body section table tr td {
    display: block;
    width: 100%;
  }
}
.inquiry .contents_body section table tr th {
  padding: 1.2rem 2rem;
  background-color: #F4F4F4;
  white-space: nowrap;
  text-align: center;
}
.inquiry .contents_body section table tr th .must {
  color: #E50012;
}
.inquiry .contents_body section table tr td {
  padding: 1.2rem;
  font-size: 2.6rem;
}
.inquiry .contents_body section table tr td input {
  border: 1px solid #231815;
  width: 100%;
}
.inquiry .contents_body section table tr td input.maildomain, .inquiry .contents_body section table tr td input.mailaddress {
  width: 40%;
}
.inquiry .contents_body section table tr td span.chkbox {
  line-height: 1;
  display: inline-block;
}
.inquiry .contents_body section table tr td span.chkbox label {
  position: relative;
  padding-left: 32px;
}
.inquiry .contents_body section table tr td span.chkbox label::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #231815;
}
.inquiry .contents_body section table tr td span.chkbox input[type=checkbox] {
  display: none;
}
.inquiry .contents_body section table tr td span.chkbox input[type=checkbox]:checked + label::before {
  content: "✓";
  font-size: 20px;
  color: #fff;
  background-color: #06f;
}
.inquiry .contents_body section table tr td textarea {
  border: 1px solid #231815;
}
@media (max-width: 768px) {
  .inquiry .contents_body section table tr td textarea {
    width: 100%;
  }
}
.inquiry .contents_body section .submit_area {
  text-align: center;
  margin: 60px auto;
}
.inquiry .contents_body section .submit_area input[type=submit], .inquiry .contents_body section .submit_area input[type=reset], .inquiry .contents_body section .submit_area input[type=button] {
  font-size: 3rem;
  color: #fff;
}
.inquiry .contents_body section .submit_area input[type=submit] {
  background-color: #F7B52C;
  padding: 1em 3em;
  margin-right: 115px;
}
@media (max-width: 768px) {
  .inquiry .contents_body section .submit_area input[type=submit] {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.inquiry .contents_body section .submit_area input[type=reset], .inquiry .contents_body section .submit_area input[type=button] {
  background-color: #B5B5B6;
  padding: 1em 2em;
}
.inquiry .contents_body section.formarea {
  max-width: 870px;
  margin: 0 auto 85px;
}
.inquiry .contents_body section.formarea ol {
  counter-reset: number 0;
  margin: 2em auto;
  max-width: 750px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.inquiry .contents_body section.formarea ol li {
  font-size: 2.8rem;
  font-weight: 400;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.inquiry .contents_body section.formarea ol li::before {
  text-indent: 0;
  font-size: 20px;
  counter-increment: number;
  content: counter(number);
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #231815;
  display: inline-block;
}


/* ===========2023/11/02追加=========== */

.service4_flex {
  display: flex;
}

.service4_flex img{
  width: 100%;
}

.service4_flex p{
  text-align: justify;
  width: 98%;
  padding-left: 30px;
}

.flex_illust {
  width: 100%;
}

.service4_flex2 {
  display: flex;
  margin-top: 40px;
}

.service4_flex2 img{
  width: 100%;
}

.service4_flex2_text {
  text-align: justify;
  width: 98%;
  padding-left: 30px;
}

.text_c {
  color: #44AF35;
  font-size: 28px;
}

@media (max-width: 768px) {
  .service4_flex {
    flex-direction: column;
  }
  .service4_flex p{
    width: 100%;
    padding-left: 0;
  }
  .service4_flex2 {
    flex-direction: column;
  }
  .service4_flex2_text {
    width: 100%;
    padding-left: 0;
  }
}

.company_table_new {
  border: 1px solid #9fa0a0;
  border-collapse: collapse;
  width: 70%;
  margin: 0 auto;
  }
  
  .company_table_new th {
    background: #efefef;
    border: 1px solid #9fa0a0;
    padding: 1em 40px;
    text-align: center;
    text-align-last: justify;
    font-weight: normal;
    vertical-align: top;
    width: 25%;
  }
  
  .company_table_new td {
    padding: 10px 10px 10px 30px;
    border: 1px solid #9fa0a0;
    width: 70%;
    vertical-align: middle;
  }

  .company_table_list {

  }

  .company_table_list li{
    position: relative;
    padding: 0 0 0 16px;
  }

  .company_table_list li::before {
    content: "";
    position: absolute;
    top: 50%;   /* 縦軸をセンタリングする */ 
    left: 0;
    transform: translateY(-50%);   /* 縦軸をセンタリングする */  
    border: 5px solid transparent;
    border-left: 8px solid #000;  
  }

  .company_map1 {
    
  }

  .company_map2 {
    margin-top: 75px;
  }

  @media (max-width: 768px) {
    .company_table_new {
      width: 100%;
    }
    .company_table_new th {
      padding: 1em 12px;
    }
    .company_table_new td {
      padding: 10px 10px 10px 18px;
    }

    .company_table_list li::before {
      top: 19px;   
    }
  }

  @media (max-width: 480px) {
    .company_table_list li::before {
      top: 12px;   
    }
  }
  .main_img_wrap {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  width: 100vw;
}

.main_img_wrap > img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.top_flex {
  display: flex;
}

.main_img_text_1 {
  position: absolute;
  color: black;
  white-space: nowrap;
  transform: translate(-50%,-50%);
  top: 24%;
  left: 28%;
  font-size: 162%;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 98%;
  }

  @media (max-width: 768px) {
    .main_img_text_1 {
      font-size: 100%;
    }
    .top .contents_body .top_services ul {
      flex-direction: column;
    }
  }