@charset "UTF-8";
.top-wrap {
  width: 100%;
  overflow: visible;
  position: relative;
  aspect-ratio: 12 / 5;
}
.top-wrap__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain; /* 今の background-size: contain と同じ意図 */
  -o-object-position: center;
  object-position: center;
  z-index: 0;
}
.top-wrap__ttl {
  position: absolute;
  top: 19%;
  left: 6%;
  z-index: 1000;
}
.top-wrap__ttl h2 {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.25em;
  line-height: 80px;
}
.hero-title span {
  display: block;
}
.hero-title__top {
  font-size: 71px;
}

.hero-title__main {
  font-size: 105px;
}

.hero-title__bottom {
  font-size: 61px;
}
.top-wrap__ttl h3 {
  text-align: center;
  font-size: 21px;
  letter-spacing: 0.21em;
  line-height: 26px;
  background-color: #fff;
  padding: 10px 0;
}
.top-wrap__crane {
  display: block;
  position: absolute;
  left: 26.7%;
  top: -7.8%;
  width: 67.2%;
  z-index: 100;
  pointer-events: none; /*透明になる*/
}
.top-wrap__crane img {
  position: absolute;
  width: 100%;
  z-index: 100;
}
.top-wrap__banar {
  position: absolute;
  right: 2%;
  top: 20px;
  z-index: 101;
}
.top-wrap__banar a img {
  width: 100%;
}

.contact-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 60px 0;
  border-bottom: 1px solid #cccccc;
}

/* 共通ボタン */
.contact-wrap a {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 60px;
  background: #f3b400;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.contact-wrap .icon {
  width: 60px;
  height: 120%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
.contact-wrap img {
  width: 26px;
  height: auto;
}

/* テキスト */
.contact-wrap .text {
  padding: 0 40px;
}

/* hover */
.contact-wrap a:hover {
  opacity: 0.85;
}

.news-wrap {
  width: 95%;
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
}
.news-wrap__ttl {
  width: 40%;
}
.news-wrap__ttl h4 {
  font-size: 18px;
  margin-top: 10px;
  margin-left: 10px;
}
.news-wrap__body__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.news-wrap__body__list__item {
  display: flex;
  gap: 15px;
  line-height: 1.5;
}
.news-wrap__body__list__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.news-wrap__body__list__link .news-head:hover {
  opacity: 0.7;
}
.bis {
  background-color: #f3b400;
}
.bis-wrap {
  width: 95%;
  text-align: right;
  display: flex;
  flex-direction: column;
  padding: 2% 0 9.3% 0;
  align-items: flex-end;
  position: relative;
}
.bis-wrap__ttl {
  position: relative;
  z-index: 1;
}
.bis-wrap__body {
  width: 25%;
  min-width: 351px;
  text-align: left;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-right: 40px;
  align-items: flex-end;
}
.bis-wrap__img {
  position: absolute;
  left: -8%;
  z-index: 0;
  width: 63%;
  bottom: -2px;
  mix-blend-mode: multiply;
}
.bis-wrap__img img {
  width: 100%;
}
.bis-wrap__body__btn {
  margin-top: 20px;
}
.bis-wrap__body__btn a {
  background: #fff;
  padding: 12px 10px 12px 40px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: right;
}
.bis-wrap__body__btn span {
  padding-left: 10px;
}
.about {
  background-color: #000;
}
.about-wrap {
  width: 95%;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 2% 0 9.3% 0;
  align-items: flex-start;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  overflow: hidden;
}
.about-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 1;
}

/* 2枚目（同じ位置） */
.about-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 2;
}
.about-wrap__body {
  width: 36%;
  min-width: 450px;
  text-align: left;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-left: 40px;
  align-items: flex-start;
}
.about-wrap__ttl h3 {
  color: #f3b400;
}
.about-wrap__img {
  position: absolute;
  width: 95%;
  top: 0;
  left: 12%;
  z-index: 0;
  overflow: hidden;
}
.about-wrap__img img {
  width: 100%;
}
.about-wrap__ttl {
  position: relative;
  z-index: 1000;
  width: 95%;
}
.about-wrap__body {
  position: relative;
  z-index: 999;
  color: #fff;
  text-align: left;
}
.about-wrap__body__btn {
  margin-top: 20px;
}
.about-wrap__body__btn a {
  background: #fff;
  padding: 15px 10px 15px 30px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: right;
}
.about-wrap__body__btn span {
  padding-left: 10px;
}
.cranes-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
.crane-wrap__ttl {
  text-align: center;
}
.crane-wrap__ttl h4 {
  margin: 40px auto;
}
.crane-wrap__body {
  width: 95%;
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}
.cranes-wrap__body__img {
  width: 33%;
}
.cranes-wrap__body__img img {
  width: 100%;
}
.cranes-wrap__btn {
  text-align: center;
  margin: 50px auto 0 auto;
}
.cranes-wrap__btn a {
  background: #000000;
  padding: 15px 10px 15px 30px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: right;
}
.cranes-wrap__btn span {
  padding-left: 10px;
}
.re-con {
  background-color: #f8f8f8;
}
.re-con-wrap {
  margin: 0 auto;
  padding: 100px 0 150px 0;
  max-width: 1000px;
  width: 95%;
}
.re-con-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.re-wrap__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.re-wrap__body__ttl {
  width: 35%;
}
.re-wrap__body__con {
  background-image: url(../img/re.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 63px 50px;
  height: 100%;
  width: 55%;
  border-radius: 12px;
  position: relative;
}
.re-wrap__body__con::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #000;
  z-index: 1;
  opacity: 0.2;
  border-radius: 12px;
}
.re-wrap__body__con__btn {
  position: relative;
  z-index: 2;
  text-align: right;
  margin: 0 auto 0 auto;
}
.re-wrap__body__con__btn a {
  background: #ffffff;
  padding: 15px 10px 15px 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: right;
}
.re-wrap__body__con__btn span {
  padding-left: 10px;
}
.con-wrap__body {
  background-image: url(../img/contact.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 63px 50px;
  height: 100%;
  border-radius: 12px;
}
.con-wrap__body__con__btn {
  margin-top: 90px;
  text-align: right;
}
.con-wrap__body__con__btn a {
  background: #fff;
  padding: 15px 10px 15px 30px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: right;
}
.con-wrap__body__con__btn span {
  padding-left: 10px;
}
@media (max-width: 1280px) {
  .top-wrap__banar img {
    width: 80%;
    margin-left: auto;
    display: block;
  }
  .top-wrap__ttl {
    position: absolute;
    top: 25%;
    left: 6%;
    z-index: 1000;
  }
  .top-wrap__ttl h2 {
    letter-spacing: -0.25em;
    line-height: 62px;
  }
  .hero-title span {
    display: block;
  }
  .hero-title__top {
    font-size: 61px;
  }

  .hero-title__main {
    font-size: 85px;
  }

  .hero-title__bottom {
    font-size: 51px;
  }
  .top-wrap__ttl h3 {
    text-align: center;
    font-size: 18px;
    padding: 5px 0;
  }
}
@media (max-width: 1000px) {
  .re-wrap__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .top-wrap__ttl h2 {
    letter-spacing: -0.25em;
    line-height: 53px;
  }
  .hero-title__top {
    font-size: 51px;
  }

  .hero-title__main {
    font-size: 70px;
  }

  .hero-title__bottom {
    font-size: 43px;
  }
  .top-wrap__ttl h3 {
    text-align: center;
    font-size: 17px;
    padding: 5px 0;
  }
  .news-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .con-wrap__body {
    background-position: 10% 10%;
    padding: 30px 10px;
  }
}
@media (max-width: 750px) {
  .top-wrap__ttl h2 {
    letter-spacing: -0.2em;
    line-height: 40px;
  }

  .hero-title__top {
    font-size: 38px;
  }

  .hero-title__main {
    font-size: 52px;
  }

  .hero-title__bottom {
    font-size: 32px;
  }

  .top-wrap__ttl h3 {
    text-align: center;
    font-size: 14px;
    padding: 4px 0;
  }
  .top-wrap__banar img {
    width: 60%;
    margin-left: auto;
    display: block;
  }
}
@media (max-width: 600px) {
  .hero-title__top {
    font-size: 22px;
  }

  .hero-title__main {
    font-size: 32px;
  }

  .hero-title__bottom {
    font-size: 19px;
  }

  .top-wrap__ttl h2 {
    letter-spacing: -0.18em;
    line-height: 28px;
  }

  .top-wrap__ttl h3 {
    font-size: 12px;
    padding: 3px 0;
  }
}
@media (max-width: 540px) {
  .contact-wrap {
    gap: 20px;
  }
  .contact-wrap .text {
    padding: 0 20px;
  }
  .contact-wrap a {
    font-size: 16px;
  }
  .bis-wrap__body {
    width: 85%;
    min-width: auto;
    gap: 20px;
    margin-top: 10px;
  }
  .about-wrap__body {
    width: 90%;
    min-width: auto;
    text-align: left;
    line-height: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-left: 20px;
  }
  .re-wrap__body__con {
    padding: 80px 20px;
    width: 90%;
  }
  .top-wrap__banar img {
    width: 40%;
  }
  .top-wrap__ttl {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 1000;
  }
  .top-wrap__ttl h3 {
    line-height: 2;
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  .contact-wrap__tel {
    width: 80%;
  }
  .contact-wrap a {
    font-size: 20px;
    text-align: center;
  }
  .text {
    flex: 1;
  }
  .contact-wrap__mail {
    width: 80%;
  }
}
@media (max-width: 350px) {
  .top-wrap__ttl h3 {
    line-height: 2;
    font-size: 8px;
  }
  .hero-title__main {
    font-size: 28px;
  }
}
