.c-zeh {
  padding: 0 0 80rem;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .c-zeh {
    padding: 0 0 60rem;
  }
}
.c-zeh__inner {
  max-width: 1200rem;
  margin: 0 auto;
  padding: 0 40rem;
}
@media screen and (max-width: 750px) {
  .c-zeh__inner {
    padding: 0 20rem;
  }
}

.c-zeh-hero {
  display: flex;
  align-items: stretch;
  min-height: 500rem;
  margin-bottom: 80rem;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .c-zeh-hero {
    flex-direction: column;
    min-height: auto;
    margin-bottom: 60rem;
  }
}
.c-zeh-hero__left {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50rem;
  background: linear-gradient(145deg, #f5f5f5 0%, #eaeaea 100%);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-zeh-hero__left {
    flex: 0 0 50%;
    padding: 40rem;
  }
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__left {
    flex: none;
    width: 100%;
    padding: 40rem 30rem;
  }
}
.c-zeh-hero__image {
  margin: 0;
  width: 100%;
  max-width: 500rem;
  overflow: hidden;
  box-shadow: 0 25rem 60rem -15rem rgba(0, 0, 0, 0.2), 0 0 0 1rem rgba(0, 0, 0, 0.03);
  animation: fadeInUp 0.8s ease-out both;
}
.c-zeh-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.c-zeh-hero__image:hover img {
  transform: scale(1.02);
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__image {
    max-width: 100%;
  }
}
.c-zeh-hero__divider {
  position: relative;
  width: 1rem;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent 5%, #e0e0e0 20%, #e0e0e0 80%, transparent 95%);
  flex-shrink: 0;
}
.c-zeh-hero__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  background: #c09b30;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__divider {
    width: 80%;
    height: 1rem;
    margin: 20rem auto;
    align-self: center;
    background: linear-gradient(to right, transparent 0%, #e0e0e0 15%, #e0e0e0 85%, transparent 100%);
  }
  .c-zeh-hero__divider::before {
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
  }
}
.c-zeh-hero__right {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60rem;
  padding-left: 70rem;
}
@media screen and (max-width: 1024px) {
  .c-zeh-hero__right {
    padding: 50rem;
    padding-left: 55rem;
  }
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__right {
    padding: 40rem 25rem 30rem;
  }
}
.c-zeh-hero__content {
  max-width: 420rem;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__content {
    max-width: 100%;
  }
}
.c-zeh-hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 56rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 35rem;
  position: relative;
  padding-bottom: 25rem;
}
.c-zeh-hero__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50rem;
  height: 2rem;
  background: #c09b30;
}
@media screen and (max-width: 1024px) {
  .c-zeh-hero__title {
    font-size: 48rem;
  }
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__title {
    font-size: 56rem;
    margin-bottom: 30rem;
  }
}
.c-zeh-hero__desc p {
  font-family: "Noto Serif JP", serif;
  font-size: 16rem;
  font-weight: 400;
  color: #555;
  line-height: 2.2;
  letter-spacing: 0.08em;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .c-zeh-hero__desc p {
    font-size: 24rem;
    line-height: 2;
  }
}

.c-zeh-content {
  display: flex;
  flex-direction: column;
  gap: 60rem;
}
@media screen and (max-width: 750px) {
  .c-zeh-content {
    gap: 40rem;
  }
}
.c-zeh-content__image {
  margin: 0;
  width: 100%;
  overflow: hidden;
}
.c-zeh-content__image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(25rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=zeh.css.map */