main {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  main {
    font-size: 15px;
  }
}
main .inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 767px) {
  main .inner {
    margin: 0 auto;
  }
}

.breadcrumbs {
  color: #cccccc;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  padding: 5px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 0.6666666667vw 0;
  }
}
.breadcrumbs .inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .inner {
    align-items: center;
  }
}
.breadcrumbs span.this {
  color: var(--black);
}
.breadcrumbs .arrow {
  width: 10px;
  height: 10px;
  position: relative;
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .arrow {
    margin: 0 15px;
  }
}
.breadcrumbs .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 8px;
  height: 8px;
  transform: translate(0, -50%) rotate(45deg);
  border-top: solid 2px #cccccc;
  border-right: solid 2px #cccccc;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .arrow::before {
    width: 8px;
    height: 8px;
  }
}
.breadcrumbs a {
  color: #cccccc;
}

.pagettl {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
@media screen and (max-width: 1500px) {
  .pagettl {
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .pagettl {
    padding: 0;
    height: 37.3333333333vw;
  }
}
.pagettl-bg {
  background: url(../img/headbg01.png);
  background-repeat: no-repeat;
  background-position: center bottom -8px;
}
@media screen and (max-width: 767px) {
  .pagettl-bg {
    background-size: 160% auto;
  }
}
.pagettl-box {
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pagettl-box {
    width: 90%;
  }
}
.pagettl-txt {
  font-size: 18px;
  width: 100%;
  padding-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pagettl-txt {
    font-size: 2.4vw;
    padding-top: 1.3333333333vw;
  }
}
.pagettl-txt02 {
  font-size: 60px;
  line-height: 1.2;
  padding-top: 5px;
  width: 100%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pagettl-txt02 {
    height: 2.1333333333vw;
    font-size: 8vw;
    padding-top: 0.6666666667vw;
  }
}

.section-ttl01 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .section-ttl01 {
    font-size: 17px;
  }
}
.section-ttl01-area {
  width: 380px;
  height: 70px;
  display: flex;
  background: var(--blue);
  align-items: center;
  justify-content: center;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .section-ttl01-area {
    margin-bottom: 30px;
    width: 250px;
    height: 70px;
  }
}
.section-ttl01 span {
  font-size: 12px;
  display: inline-block;
  padding-top: 3px;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .section-ttl01 span {
    margin-left: 12px;
  }
}

#service01 {
  margin: 70px 0;
}
@media screen and (max-width: 767px) {
  #service01 {
    margin: 50px 0;
  }
}
#service01 .service-linkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  #service01 .service-linkbox {
    gap: 20px;
  }
}
#service01 .service-linkbox-link {
  background: #ffffff;
  height: 100px;
  width: 280px;
  border-radius: 20px;
  color: var(--blue);
  position: relative;
  display: block;
  font-size: 24px;
  text-align: center;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(17, 92, 169, 0.15);
  transition: color 0.3s, background 0.3s;
}
@media (hover) {
  #service01 .service-linkbox-link:hover {
    background: #115ca9;
    color: #fff;
  }
  #service01 .service-linkbox-link:hover::before {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
@media screen and (max-width: 767px) {
  #service01 .service-linkbox-link {
    font-size: 18px;
    width: 250px;
    height: 80px;
    padding-bottom: 10px;
  }
}
#service01 .service-linkbox-link::before {
  content: "";
  position: absolute;
  transition: border 0.3s;
  top: calc(50% + 20px);
  right: 50%;
  width: 8px;
  height: 8px;
  transform: translate(0, -50%) rotate(133deg);
  border-top: solid 2px var(--blue);
  border-right: solid 2px var(--blue);
}
@media screen and (max-width: 767px) {
  #service01 .service-linkbox-link::before {
    top: 55px;
  }
}
#service01 .service-maintxt {
  margin: 40px auto 40px;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  #service01 .service-maintxt {
    margin: 40px auto 20px;
  }
}

#service02 {
  padding: 75px 0 175px;
  background-size: cover;
  background-repeat: no-repeat;
  background: url(../img/bgline01.png), url(../img/bgline02.png);
  background-size: 984px, 984px;
  background-repeat: no-repeat;
  background-position: bottom 0 right calc(50% + 1070px), top 970px left calc(50% + 1070px);
}
@media screen and (max-width: 767px) {
  #service02 {
    background: none;
    padding: 40px 0 50px;
    padding-bottom: 0px;
  }
}
#service02 .transportation-flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-flex {
    flex-direction: column-reverse;
  }
}
#service02 .transportation-box {
  background: var(--blue);
  width: calc(50% - 130px);
  color: #fff;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1500px) {
  #service02 .transportation-box {
    width: calc(100% - 880px);
    min-width: 380px;
  }
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box {
    margin: 0 auto;
    width: 100%;
    min-width: auto;
  }
}
#service02 .transportation-box-content {
  width: 360px;
  height: 590px;
  margin: 0 125px;
}
@media screen and (max-width: 1500px) {
  #service02 .transportation-box-content {
    width: 440px;
    height: 590px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box-content {
    width: 100%;
    height: auto;
    padding: 0 0 50px;
  }
}
#service02 .transportation-logo {
  width: 235px;
  text-align: center;
  margin: 45px auto 0;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-logo {
    margin: 40px auto 0;
    width: 31.3333333333vw;
  }
}
#service02 .transportation-logo img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-logo img {
    margin: 0 auto;
  }
}
#service02 .transportation-ttl {
  font-size: 50px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  #service02 .transportation-ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  #service02 .transportation-ttl {
    font-size: 26px;
  }
}
#service02 .transportation-txt {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-txt {
    width: 90%;
  }
}
#service02 .transportation-img {
  max-width: 880px;
  border-radius: 0 200px 0 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  #service02 .transportation-img {
    flex-shrink: 999;
    height: 590px;
    width: 100%;
  }
  #service02 .transportation-img img {
    object-fit: cover;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #service02 .transportation-img {
    border-radius: 0 50px 0 0;
    height: 64vw;
  }
  #service02 .transportation-img img {
    height: 100%;
  }
}
#service02 .transportation-box02 {
  display: flex;
  border-radius: 20px;
  border: solid 1px #000;
  max-width: 1000px;
  margin: 105px auto;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box02 {
    margin: 60px auto;
  }
}
#service02 .transportation-box02-ttl {
  border-right: solid 1px #000;
  width: 170px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box02-ttl {
    width: 150px;
  }
}
#service02 .transportation-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 23px 0 23px 57px;
  width: calc(100% - 170px);
}
@media screen and (max-width: 767px) {
  #service02 .transportation-list {
    width: calc(100% - 150px);
    padding: 20px 5px 20px 20px;
  }
}
#service02 .transportation-list-item {
  width: 255px;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-list-item {
    width: 100%;
  }
}
#service02 .transportation-box03 {
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 0;
  margin-bottom: 0px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box03 {
    padding: 0;
    display: block;
    margin-bottom: 0;
  }
}
#service02 .transportation-box03-content {
  width: 360px;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box03-content {
    padding: 0;
    width: 100%;
  }
}
#service02 .transportation-box03-ttl {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 26px;
  line-height: 1.4;
  color: var(--blue);
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box03-ttl {
    font-size: 22px;
  }
}
#service02 .transportation-box03-txt {
  margin-bottom: 63px;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box03-txt {
    margin-bottom: 30px;
  }
}
#service02 .transportation-box03-txt02 {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box03-txt02 {
    font-size: 12px;
  }
}
#service02 .transportation-box03-img {
  position: absolute;
  right: 320px;
  top: -80px;
  width: 778px;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box03-img {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
#service02 .transportation-box04 {
  max-width: 1000px;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04 {
    margin: 40px auto;
  }
}
#service02 .transportation-box04-ttl {
  padding: 11px 0;
  color: #ffffff;
  background: #333333;
  font-size: 20px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-ttl {
    padding: 10px 0;
    font-size: 17px;
  }
}
#service02 .transportation-box04-table {
  background: #fff;
  padding: 35px 30px 30px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table {
    padding: 10px;
  }
}
#service02 .transportation-box04-table table {
  border-collapse: collapse;
  width: 100%;
  padding: 30px 45px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table table {
    padding: 10px 20px 15px;
  }
}
#service02 .transportation-box04-table table tr .bordernone {
  border-bottom: none;
}
#service02 .transportation-box04-table table tr td {
  border-bottom: solid 1px #e6e6e6;
  vertical-align: middle;
}
#service02 .transportation-box04-table table tr:first-child td, #service02 .transportation-box04-table table tr:last-child td {
  border-bottom: none;
}
#service02 .transportation-box04-table table th {
  width: 33.33%;
  border-right: solid 1px #e6e6e6;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table table th {
    width: 27%;
    padding: 5px 3px;
  }
  #service02 .transportation-box04-table table th:first-child {
    width: 46%;
  }
}
#service02 .transportation-box04-table table th span {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: #e6e6e6;
  width: calc(100% - 40px);
  margin: 0 20px 0;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table table th span {
    width: 100%;
    margin: 0 auto;
  }
}
#service02 .transportation-box04-table table th:last-child {
  width: calc(100% - 10px);
  border: none;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table table th:last-child {
    width: 27%;
    padding: 5px 3px;
  }
}
#service02 .transportation-box04-table table td {
  width: 33.33%;
  padding: 12px;
  border-right: solid 1px #e6e6e6;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table table td {
    width: 27%;
    padding: 5px 3px;
  }
  #service02 .transportation-box04-table table td:first-child {
    width: 46%;
  }
}
#service02 .transportation-box04-table table td br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #service02 .transportation-box04-table table td br.sp {
    display: block;
  }
}
#service02 .transportation-box04-table table td:last-child {
  border-right: none;
}

.service03-04-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .service03-04-flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .service03-04-flex {
    display: block;
  }
}

#service03 {
  margin: 0 0 20px;
  padding-bottom: 150px;
  max-width: 740px;
  width: calc(100% - 10px);
}
@media screen and (max-width: 960px) {
  #service03 {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #service03 {
    margin: 90px 0 50px;
    padding-bottom: 0px;
    width: 100%;
  }
}
#service03 .civil-flex {
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #service03 .civil-flex {
    display: block;
  }
}
#service03 .civil-box {
  background: var(--blue);
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 427px;
  padding: 0 10px;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-box {
    display: block;
    min-height: 470px;
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-box {
    min-height: auto;
  }
}
#service03 .civil-box-content {
  width: 270px;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-box-content {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-box-content {
    padding: 0 0 50px;
  }
}
#service03 .civil-logo {
  width: 212px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-logo {
    padding: 20px 0;
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-logo {
    width: 28.2666666667vw;
  }
}
#service03 .civil-logo img {
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-logo img {
    height: 170px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-logo img {
    height: auto;
    width: 100%;
  }
}
#service03 .civil-ttl {
  font-size: 50px;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-ttl {
    font-size: 26px;
    text-align: center;
  }
}
#service03 .civil-txt {
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-txt {
    width: 90%;
  }
}
#service03 .civil-img {
  max-width: 880px;
  border-radius: 200px 0 0 0;
  width: 100%;
  overflow: hidden;
  height: 587px;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-img {
    max-width: 100%;
  }
}
#service03 .civil-img img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-img {
    border-radius: 50px 0 0 0;
    aspect-ratio: 4/3;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-img {
    border-radius: 50px 0 0 0;
    height: 64vw;
    aspect-ratio: auto;
  }
  #service03 .civil-img img {
    height: 100%;
  }
}
#service03 .civil-box02 {
  display: flex;
  border-radius: 20px;
  border: solid 1px #000;
  max-width: 1000px;
  margin: 105px auto;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-box02 {
    margin: 60px auto;
  }
}
#service03 .civil-box02-ttl {
  border-right: solid 1px #000;
  width: 170px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  letter-spacing: 0;
}
@media screen and (max-width: 1200px) {
  #service03 .civil-box02-ttl {
    width: 150px;
  }
}
#service03 .civil-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 23px 0 23px 57px;
  width: calc(100% - 170px);
}
@media screen and (max-width: 767px) {
  #service03 .civil-list {
    width: calc(100% - 150px);
    padding: 20px 5px 20px 20px;
  }
}
#service03 .civil-list-item {
  width: 255px;
}
@media screen and (max-width: 767px) {
  #service03 .civil-list-item {
    width: 100%;
  }
}
#service03 .civil-box04 {
  width: 100%;
  margin: 10px auto;
  max-width: 640px;
}
#service03 .civil-box04-ttl {
  padding: 11px 0;
  color: #ffffff;
  background: #333333;
  font-size: 20px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-ttl {
    padding: 10px 0;
    font-size: 17px;
  }
}
#service03 .civil-box04-table {
  background: #fff;
  padding: 35px 30px 30px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 960px) {
  #service03 .civil-box04-table {
    padding: 35px 10px 30px;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table {
    padding: 10px;
  }
}
#service03 .civil-box04-table table {
  border-collapse: collapse;
  width: 100%;
  padding: 30px 45px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table table {
    padding: 10px 20px 15px;
  }
}
#service03 .civil-box04-table table tr .bordernone {
  border-bottom: none;
}
#service03 .civil-box04-table table tr td {
  border-bottom: solid 1px #e6e6e6;
  vertical-align: middle;
}
#service03 .civil-box04-table table tr:first-child td, #service03 .civil-box04-table table tr:last-child td {
  border-bottom: none;
}
#service03 .civil-box04-table table th {
  width: 33.33%;
  border-right: solid 1px #e6e6e6;
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table table th {
    width: 27%;
    padding: 5px 3px;
  }
  #service03 .civil-box04-table table th:first-child {
    width: 46%;
  }
}
#service03 .civil-box04-table table th span {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: #e6e6e6;
  width: calc(100% - 40px);
  margin: 0 20px 0;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  #service03 .civil-box04-table table th span {
    width: 100%;
    width: calc(100% - 20px);
    margin: 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table table th span {
    width: 100%;
    margin: 0 auto;
  }
}
#service03 .civil-box04-table table th:last-child {
  width: calc(100% - 10px);
  border: none;
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table table th:last-child {
    width: 27%;
    padding: 5px 3px;
  }
}
#service03 .civil-box04-table table td {
  width: 33.33%;
  padding: 12px 2px;
  border-right: solid 1px #e6e6e6;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table table td {
    width: 27%;
    padding: 5px 3px;
  }
  #service03 .civil-box04-table table td.td-02 {
    width: 27% !important;
  }
  #service03 .civil-box04-table table td:first-child {
    width: 46%;
  }
}
#service03 .civil-box04-table table td:last-child {
  border-right: none;
}
#service03 .civil-box04-table table td br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #service03 .civil-box04-table table td br.sp {
    display: block;
  }
}

#service04 {
  margin: 0 0 20px;
  padding-bottom: 150px;
  max-width: 740px;
  width: calc(100% - 10px);
}
@media screen and (max-width: 960px) {
  #service04 {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #service04 {
    margin: 90px 0 50px;
    padding-bottom: 60px;
    width: 100%;
  }
}
#service04 .heavy-flex {
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-flex {
    display: block;
  }
}
#service04 .heavy-box {
  background: var(--blue);
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 427px;
  padding: 0 10px;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-box {
    display: block;
    min-height: 470px;
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box {
    min-height: auto;
  }
}
#service04 .heavy-box-content {
  width: 270px;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-box-content {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box-content {
    padding: 0 0 50px;
  }
}
#service04 .heavy-logo {
  width: 242px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-logo {
    padding: 20px 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-logo {
    margin: 0 auto 0;
    width: 32.2666666667vw;
  }
}
#service04 .heavy-logo img {
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-logo img {
    height: 170px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-logo img {
    height: auto;
    width: 100%;
  }
}
#service04 .heavy-ttl {
  font-size: 50px;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-ttl {
    font-size: 26px;
    text-align: center;
  }
}
#service04 .heavy-txt {
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-txt {
    width: 90%;
  }
}
#service04 .heavy-img {
  max-width: 880px;
  border-radius: 0 200px 0 0;
  width: 100%;
  overflow: hidden;
  height: 587px;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-img {
    max-width: 100%;
  }
}
#service04 .heavy-img img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-img {
    border-radius: 0 50px 0 0;
    aspect-ratio: 4/3;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-img {
    border-radius: 0 50px 0 0;
    height: 64vw;
  }
  #service04 .heavy-img img {
    height: 100%;
  }
}
#service04 .heavy-box02 {
  display: flex;
  border-radius: 20px;
  border: solid 1px #000;
  max-width: 1000px;
  margin: 105px auto;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-box02 {
    margin: 60px auto;
  }
}
#service04 .heavy-box02-ttl {
  border-right: solid 1px #000;
  width: 170px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  letter-spacing: 0;
}
@media screen and (max-width: 1200px) {
  #service04 .heavy-box02-ttl {
    width: 150px;
  }
}
#service04 .heavy-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 23px 0 23px 57px;
  width: calc(100% - 170px);
}
@media screen and (max-width: 767px) {
  #service04 .heavy-list {
    width: calc(100% - 150px);
    padding: 20px 5px 20px 20px;
  }
}
#service04 .heavy-list-item {
  width: 255px;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-list-item {
    width: 100%;
  }
}
#service04 .heavy-box04 {
  width: 100%;
  margin: 10px auto;
  max-width: 640px;
}
#service04 .heavy-box04-ttl {
  padding: 11px 0;
  color: #ffffff;
  background: #333333;
  font-size: 20px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-ttl {
    padding: 10px 0;
    font-size: 17px;
  }
}
#service04 .heavy-box04-table {
  background: #fff;
  padding: 35px 30px 30px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 960px) {
  #service04 .heavy-box04-table {
    padding: 35px 10px 30px;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table {
    padding: 10px;
  }
}
#service04 .heavy-box04-table table {
  border-collapse: collapse;
  width: 100%;
  padding: 30px 45px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table table {
    padding: 10px 20px 15px;
  }
}
#service04 .heavy-box04-table table tr .bordernone {
  border-bottom: none;
}
#service04 .heavy-box04-table table tr td {
  border-bottom: solid 1px #e6e6e6;
  vertical-align: middle;
}
#service04 .heavy-box04-table table tr:first-child td, #service04 .heavy-box04-table table tr:last-child td {
  border-bottom: none;
}
#service04 .heavy-box04-table table th {
  width: 33.33%;
  border-right: solid 1px #e6e6e6;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table table th {
    width: 27%;
    padding: 5px 3px;
  }
  #service04 .heavy-box04-table table th:first-child {
    width: 46%;
  }
}
#service04 .heavy-box04-table table th span {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: #e6e6e6;
  width: calc(100% - 40px);
  margin: 0 20px 0;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  #service04 .heavy-box04-table table th span {
    width: 100%;
    width: calc(100% - 20px);
    margin: 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table table th span {
    width: 100%;
    margin: 0 auto;
  }
}
#service04 .heavy-box04-table table th:last-child {
  width: calc(100% - 10px);
  border: none;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table table th:last-child {
    width: 27%;
    padding: 5px 3px;
  }
}
#service04 .heavy-box04-table table td {
  width: 33.33%;
  padding: 12px 2px;
  border-right: solid 1px #e6e6e6;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table table td {
    width: 27%;
    padding: 5px 3px;
  }
  #service04 .heavy-box04-table table td.td-02 {
    width: 27% !important;
  }
  #service04 .heavy-box04-table table td:first-child {
    width: 46%;
  }
}
#service04 .heavy-box04-table table td:last-child {
  border-right: none;
}
#service04 .heavy-box04-table table td br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #service04 .heavy-box04-table table td br.sp {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
