/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------*/
.contents_kv {
  position: relative;
  width: 100%;
  height: 60rem;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contents_kv {
    height: 46rem;
  }
}
.contents_kv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("../../business/images/business_kv.jpg") no-repeat left center;
  background-size: cover;
  width: 80%;
  height: 60rem;
  z-index: 0;
  opacity: 0;
  scale: 1.08;
  -webkit-animation: kvImageIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
          animation: kvImageIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}
@media screen and (max-width: 767px) {
  .contents_kv::before {
    width: 100%;
    height: 46rem;
    background-position: bottom left 24%;
  }
}
@-webkit-keyframes kvImageIn {
  0% {
    opacity: 0;
    scale: 1.08;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes kvImageIn {
  0% {
    opacity: 0;
    scale: 1.08;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.contents_kv_wrap {
  position: relative;
}
.contents_kv_wrap_catch {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contents_kv_wrap_catch {
    top: 54%;
    left: 4%;
  }
}
.contents_kv-jp {
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contents_kv-jp {
    color: #fff;
  }
}
.contents_kv-en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.6rem, 8vw, 8rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contents_kv-en {
    color: #fff;
    font-size: clamp(2.8rem, 10vw, 5rem);
  }
}

/*------------------------*/
.business {
  position: relative;
  width: 100%;
}
.business_wrap .list {
  display: flex;
  flex-direction: column;
}
.business_wrap .list .box {
  position: relative;
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box {
    padding-block: 6rem;
  }
}
.business_wrap .list .box:nth-child(odd) {
  background-color: #fff;
}
.business_wrap .list .box:nth-child(even) {
  background-color: var(--bg-green);
}
.business_wrap .list .box .heading {
  width: 100%;
  border-bottom: solid 1px var(--line);
  padding-bottom: 1rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .heading {
    margin-bottom: 2rem;
  }
}
.business_wrap .list .box .heading h2 {
  font-size: 4.6rem;
  font-weight: 500;
  color: var(--green);
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .heading h2 {
    font-size: 3rem;
  }
}
.business_wrap .list .box .infoBox {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .infoBox {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.business_wrap .list .box .infoBox .number {
  font-family: "Montserrat", sans-serif;
  font-size: 12rem;
  font-weight: 100;
  color: var(--green);
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .infoBox .number {
    font-size: 7rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.business_wrap .list .box .infoBox .textBox {
  position: relative;
  width: 42rem;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 2rem 4rem 0;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .infoBox .textBox {
    width: 100%;
  }
}
.business_wrap .list .box .infoBox .textBox.short {
  padding-bottom: 10rem;
}
.business_wrap .list .box .infoBox .textBox.bggreen {
  background-color: var(--bg-green);
}
.business_wrap .list .box .infoBox .textBox .hd {
  font-size: 2.2rem;
  font-weight: 500;
  background-color: var(--green);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0rem 0.75rem 1rem;
  margin-bottom: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .infoBox .textBox .hd {
    font-size: 2rem;
    line-height: 1.6;
    padding: 0.25rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .infoBox .textBox p.text {
    line-height: 2;
  }
}
.business_wrap .list .box .photoBox {
  position: relative;
  width: 100%;
  margin-top: -9rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .photoBox {
    margin-top: 0;
  }
}
.business_wrap .list .box .photoBox .main {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  width: 80rem;
  margin-left: auto;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .photoBox .main {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.business_wrap .list .box .photoBox .main img {
  width: 100%;
}
.business_wrap .list .box .photoBox ul.sub {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box .photoBox ul.sub {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}
.business_wrap .list .box ul.carType {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .business_wrap .list .box ul.carType {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}
.business_wrap .list .box ul.carType li.box {
  background-color: var(--green);
  box-sizing: border-box;
  padding: 3rem;
}
.business_wrap .list .box ul.carType li.box .icon {
  width: 14rem;
  margin: 0 auto 1rem;
}
.business_wrap .list .box ul.carType li.box .name {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
.business_wrap .list .box ul.carType li.box .feature {
  font-size: 1.4rem;
  line-height: 1.8;
}
/*# sourceMappingURL=style.css.map */