@charset "UTF-8";

.floatingBanner {
  display: inline-block;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  max-width: 280px;
}

.floatingBanner img {
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.floatingBannerCircle {
  cursor: pointer;
  position: absolute;
  right: -24px;
  top: -24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #009944;
}

.floatingBannerClose {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}

.floatingBannerClose::before,
.floatingBannerClose::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
}

.floatingBannerClose::before {
  transform: rotate(-90deg);
}

.floatingBannerClose::after {
  transform: rotate(90deg);
}

.leadWire {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.leadWireInner {
  width: min(90%, 1280px);
  margin-inline: auto;
}

.leadWireList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
}

.leadWireItem {
  border: 1px solid #ccc;
  background-color: #fff;
}

.leadWireThumbnail {
  overflow: hidden;
  position: relative;
  aspect-ratio: 838 / 426;
}

.leadWireThumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leadWireBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.leadWireText {
  margin-right: 16px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  transition: 0.4s;
}

.leadWireBlock > svg {
  transform: scale(1.4);
}

body.home .leadWire {
  margin-top: -60px;
  padding: 0 0 100px;
}

@media (hover: hover) {
  .leadWireItem > a:hover .leadWireThumbnail > img {
    transform: scale(1.1);
  }
}

.ctaContact {
  background-color: #009944;
  padding: 80px 0;
}

.ctaContactInner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(90%, 1280px);
  margin-inline: auto;
}

.ctaContactTitle {
  margin-right: 120px;
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.ctaContactButton {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 354px;
  height: 75px;
  background-color: #fff;
  color: #009944;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.05em;
}

.ctaContactButton img {
  display: block;
  width: 32px;
  margin-right: 16px;
}

@media (hover: hover) {
  .ctaContactButton:hover {
    color: #009944;
  }
}

@media screen and (max-width: 768px) {
  .floatingBanner {
    bottom: 20px;
    max-width: 170px;
  }

  .floatingBannerCircle {
    right: -16px;
    top: -16px;
    width: 32px;
    height: 32px;
  }

  .leadWire {
    padding: 40px 0;
  }

  .leadWireList {
    gap: 40px;
  }

  .leadWireText {
    margin-right: 12px;
    font-size: 18px;
  }

  body.home .leadWire {
    margin-top: 0;
    padding: 0 0 60px;
  }

  .ctaContact {
    padding: 40px 0;
  }

  .ctaContactInner {
    flex-direction: column;
  }

  .ctaContactTitle {
    margin-right: 0;
    font-size: 24px;
  }

  .ctaContactButton {
    width: 100%;
    height: 56px;
    margin-top: 24px;
    font-size: 22px;
  }
}
