.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 39, 0.7);
}

.modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  padding: clamp(2.188rem, 0.924rem + 5.39vw, 4.375rem);
  background: #fff;
  z-index: 1010;
}
@media screen and (min-width: 1025px) {
  .modal__content {
    padding: 140px 90px;
    width: 80%;
  }
}

.modal__close {
  position: absolute;
  top: 2.6666666667vw;
  right: 2.6666666667vw;
  width: 8.6666666667vw;
  height: 8.6666666667vw;
  cursor: pointer;
  background-color: #437FEE;
  color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .modal__close {
    top: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
  }
}
.modal__close p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .modal__close p {
    font-size: 50px;
    top: 43%;
  }
}
.modal__close:hover {
  transform: rotate(90deg);
}

@media screen and (min-width: 1025px) {
  .modal__body {
    display: flex;
    gap: 80px;
  }
}

.modal__img {
  max-width: clamp(13.438rem, 5.673rem + 33.13vw, 26.875rem);
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .modal__img {
    max-width: 430px;
    margin-inline: 0;
  }
}

.modal__wrapper {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .modal__wrapper {
    max-width: 350px;
  }
}

.modal__title {
  font-size: clamp(1.5rem, 0.633rem + 3.7vw, 3rem);
  letter-spacing: 0.05em;
  color: #0b3074;
  margin-top: 2vw;
}
@media screen and (min-width: 1025px) {
  .modal__title {
    font-size: 40px;
    margin-top: 0;
  }
}

.modal__cate {
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  color: #898989;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .modal__cate {
    font-size: 16px;
  }
}

.modal__table {
  width: 100%;
  margin-top: 5.3333333333vw;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1025px) {
  .modal__table {
    margin-top: 80px;
  }
}
.modal__table tr {
  display: flex;
  align-items: center;
  gap: 6.4vw;
  margin-bottom: 2.6666666667vw;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .modal__table tr {
    margin-bottom: 40px;
    gap: 48px;
  }
}
.modal__table tr th {
  font-size: clamp(0.875rem, 0.369rem + 2.16vw, 1.75rem);
  font-weight: 700;
  color: #437FEE;
  letter-spacing: 0.1em;
  width: 70%;
}
@media screen and (min-width: 1025px) {
  .modal__table tr th {
    font-size: 16px;
    max-width: 160px;
    width: 100%;
  }
}
.modal__table tr td {
  font-size: clamp(0.875rem, 0.369rem + 2.16vw, 1.75rem);
  letter-spacing: 0.05em;
  width: 30%;
}
@media screen and (min-width: 1025px) {
  .modal__table tr td {
    font-size: 16px;
    max-width: 100px;
    width: 100%;
  }
}

.heavyMachinery {
  background-color: #F2F2F2;
  padding-top: 32vw;
  padding-bottom: 32.6666666667vw;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .heavyMachinery {
    padding-top: 240px;
    padding-bottom: 245px;
  }
}

.heavyMachinery__inner {
  position: relative;
}

.heavyMachinery__inner::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #898989;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.heavyMachinery__inner::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #898989;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.heavyMachinery__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32vw;
  row-gap: 6.9333333333vw;
  column-gap: 9.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .heavyMachinery__list {
    margin-top: 240px;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 52px;
    column-gap: 73px;
  }
}

.heavyMachinery__item {
  cursor: pointer;
}

.heavyMachinery__title {
  font-size: 6.4vw;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 2vw;
  color: #0b3074;
}
@media screen and (min-width: 1025px) {
  .heavyMachinery__title {
    font-size: 40px;
    margin-top: 15px;
  }
}

.heavyMachinery__cate {
  font-size: 3.2vw;
  text-align: center;
  letter-spacing: 0.1em;
  color: #898989;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .heavyMachinery__cate {
    font-size: 16px;
  }
}

.heavyMachinery__item img {
  display: block;
  transition: 0.3s;
}

.heavyMachinery__item:hover img {
  transform: scale(105%);
}/*# sourceMappingURL=machines.css.map */