@charset "utf-8";

.service__title {
  margin: 226px 90px 88px 28%;
}
.service-container {
  max-width: 61vw;
  display: flex;
  justify-content: center;
  margin: 0 90px 297px 28%;
}
.service-left,
.service__right {
  width: 50%;
}
.service-left {
  margin-right: 3%;
}
.service__right {
  margin-left: 3%;
}

@media (max-width: 1220px) {
  .service-container {
    margin-bottom: 260px;
  }
}

@media (max-width: 767px) {
  .service__title {
    margin: 132px 10% 34px 10%;
  }
  .service-container {
    max-width: 100%;
    display: block;
    margin: 0 10% 63px 10%;
  }
  .service-left,
  .service__right {
    width: 100%;
  }
  .service-left {
    margin-right: 0;
  }
  .service__right {
    margin-left: 0;
  }
}

/* ********* 左側画像 ********* */
.service__image {
  width: 100%;
  display: block;
  position: relative;
}
.image__default {
  width: 100%;
}
.service__en-heading {
  font-family: "calluna", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(
    2.313rem,
    1.775rem + 2.69vw,
    5rem
  ); /* 1920vw:80px 320vw37px */
  color: #11b91e;
  position: absolute;
  z-index: 2;
}
.service__en-heading--left {
  top: -46px;
  left: -36px;
}
.service__en-heading--right {
  bottom: -8%;
  left: 0;
}
.service__number {
  font-family: "century-old-style-std", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(5.75rem, -0.568rem + 8.29vw, 9.375rem);
  color: #63f26e;
  position: absolute;
  z-index: 2;
}
.service__number--left {
  right: -2%;
  bottom: -9%;
}
.service__number--right {
  top: -11%;
  right: -2%;
}

@media (max-width: 1220px) {
  .service__en-heading {
    font-size: clamp(
      2.125rem,
      0.357rem + 3.93vw,
      3.5rem
    ); /* 1280vw:56px 720vw34px */
  }
  .service__en-heading--left {
    top: -30px;
    left: -22px;
  }
  .service__en-heading--right {
    bottom: -8%;
    left: 0;
  }
  .service__number {
    font-size: clamp(3.375rem, -0.938rem + 8.98vw, 6.25rem);
  }
}

@media (max-width: 767px) {
  .container__flex-column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .service__en-heading {
    font-size: clamp(
      2.313rem,
      1.775rem + 2.69vw,
      5rem
    ); /* 1920vw:80px 320vw:37px */
  }
  .service__en-heading--right {
    bottom: -4%;
    left: 0;
  }

  .service__number {
    font-size: clamp(3.875rem, 1.286rem + 12.95vw, 7.5rem);
  }
  .service__number--left {
    right: 3%;
    bottom: -8%;
  }
  .service__number--right {
    top: -9%;
    right: 4%;
  }
}

/* ********* hoverの時の挙動 ********* */
.service__image .image__default {
  transition: opacity 0.3s ease;
}
.service__image:hover .image__default {
  opacity: 0;
}
.service__image::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image-Construction::before {
  background-image: url(../img/service/Construction-hover.png);
}
.image-Design::before {
  background-image: url(../img/service/Design-hover.png);
}
.image-Real-Estate::before {
  background-image: url(../img/service/Real-Estate-hover.png);
}
.image-Online::before {
  background-image: url(../img/service/Online-hover.png);
}
.image-Automobile::before {
  background-image: url(../img/service/Automobile-hover.png);
}

.service__image:hover::before {
  opacity: 1;
}

/* ********* 右側text ********* */
.service__ja-heading {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
  /* 1920vw:40px 320vw:24px */
  font-weight: bold;
  letter-spacing: 0.5em;
  margin-top: 80px;
  margin-bottom: 5%;
}
.service__subheading {
  font-size: clamp(0.938rem, 0.813rem + 0.63vw, 1.563rem);
  /* 1920vw:25px 320vw:15px */
  font-weight: bold;
  margin-bottom: 2.5%;
}
.service__text {
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem);
  /* 1920vw:20px 320vw:14px */
  letter-spacing: 0.04em;
  line-height: 1.57;
  border-bottom: 1px solid #000;
  padding-bottom: 34px;
  margin-bottom: 28px;
}
.service__unity {
  font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
  /* 1920vw:25px 320vw:15px */
  letter-spacing: 0.04em;
  line-height: 1.57;
}
.more__button {
  margin-top: 30px;
}

@media (max-width: 1220px) {
  .service__ja-heading {
    font-size: 24px;
    margin-top: 70px;
  }
  .service__subheading {
    font-size: 20px;
  }
  .service__text {
    font-size: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .service__unity {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .service__ja-heading {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .service__subheading {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .service__text {
    font-size: 14px;
    letter-spacing: 0.02em;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .service__unity {
    font-size: 12px;
  }
}
