.hero {
  padding: 0 15px;
  background-color: #F4F4F1;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/67;
  transform: rotate(0) translateY(0);
  background-image: url("../images/wave/wave_bg_down.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.hero .hero-content {
  position: relative;
  display: inline-block;
  max-width: 90%;
}
@media (max-width: 767.98px) {
  .hero .hero-content {
    max-width: 97%;
  }
}
.hero .hero-content img.hero-image {
  border-radius: 50px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1200/650;
}
@media (max-width: 767.98px) {
  .hero .hero-content img.hero-image {
    aspect-ratio: 1/1;
    border-radius: 25px;
  }
}
.hero .hero-text {
  position: absolute;
  top: 55%;
  left: 2em;
  z-index: 2;
  font-size: 48px;
  font-weight: 800;
  color: #f4f2f0;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin: 0;
}
.hero .hero-text span:first-child {
  margin-left: -1em;
}
@media (max-width: 991.98px) {
  .hero .hero-text {
    font-size: 36px;
    bottom: 40px;
    left: 40px;
  }
}
@media (max-width: 767.98px) {
  .hero .hero-text {
    font-size: 20px;
    bottom: 20px;
    left: 20px;
  }
}
.hero .image-cap {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  color: #333;
  padding: 10px;
  width: 35%;
}
@media (max-width: 767.98px) {
  .hero .image-cap {
    top: 10px;
    right: 10px;
    width: 50%;
    font-size: 12px;
    padding: 5px;
  }
}
.hero img.hero-illustration {
  position: absolute;
  z-index: 1;
}
.hero img.hero-illustration-1 {
  left: -70px;
  bottom: -40px;
}
@media (max-width: 767.98px) {
  .hero img.hero-illustration-1 {
    left: -10px;
    transform: scale(0.5);
    transform-origin: left bottom;
  }
}
.hero img.hero-illustration-2 {
  right: 150px;
  bottom: -70px;
}
@media (max-width: 767.98px) {
  .hero img.hero-illustration-2 {
    right: 110px;
    bottom: -40px;
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}
.hero img.hero-illustration-3 {
  right: 30px;
  bottom: -50px;
}
@media (max-width: 767.98px) {
  .hero img.hero-illustration-3 {
    right: 0;
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}

.about {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .about {
    padding: 60px 0;
  }
}
.about .about-content {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.about .about-content .about-read {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .about .about-content .about-read {
    font-size: 20px;
  }
}
.about .about-content .about-text {
  line-height: 2.2;
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  .about .about-content .about-text {
    margin-bottom: 25px;
  }
}
.about .about-illustration {
  margin-top: 25px;
}
.about .about-illustration img {
  width: 80px;
  height: auto;
}
.about .about-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .about .about-image-wrapper {
    border-radius: 15px;
    margin-top: 30px;
  }
}
.about .about-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.service {
  margin-top: 100px;
  background: #F4F4F1;
  position: relative;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .service {
    margin-top: 60px;
  }
}
.service::before {
  z-index: 0;
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/67;
  transform: rotate(0) translateY(0);
  background-image: url("../images/wave/wave_bg_up.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.service::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/67;
  transform: rotate(0) translateY(0);
  background-image: url("../images/wave/wave_bg_down.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.service .section-title {
  position: relative;
  text-shadow: 3px 6px 0px #ffffff;
}
.service .section-title .service-title-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
@media (max-width: 767.98px) {
  .service .section-title .service-title-image {
    width: 70px;
  }
}
.service .service-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}
@media (max-width: 767.98px) {
  .service .service-copy {
    margin-bottom: 1em;
  }
}
.service .service-copy .inner {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 1em;
}
@media (max-width: 991.98px) {
  .service .service-copy .inner {
    font-size: 20px;
  }
}
.service .service-copy .inner span.orange {
  display: inline-block;
  background-color: #FF6B35;
  padding: 0em 0.3em;
  color: #fff;
}
.service .service-copy .inner span.large {
  font-size: 1.2em;
}
.service .service-copy::before {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 50px;
  aspect-ratio: 50/67;
  background: url("/wp-content/themes/main/images/top/service_copy_img_left.webp") no-repeat center center;
}
@media (max-width: 767.98px) {
  .service .service-copy::before {
    max-width: 40px;
  }
}
.service .service-copy::after {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 50px;
  aspect-ratio: 50/67;
  background: url("/wp-content/themes/main/images/top/service_copy_img_left.webp") no-repeat center center;
  transform: scaleX(-1);
}
@media (max-width: 767.98px) {
  .service .service-copy::after {
    max-width: 40px;
  }
}
.service .service-card {
  position: relative;
  border-radius: 50px 50px 0 50px;
  overflow: hidden;
  aspect-ratio: 579/326;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .service .service-card {
    border-radius: 25px 25px 0 25px;
    aspect-ratio: 4/3;
  }
}
.service .service-card.service-card-buy {
  background-image: url("/wp-content/themes/main/images/top/kaitai_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .service-card.service-card-sell {
  background-image: url("/wp-content/themes/main/images/top/uritai_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .service .service-card.service-card-sell {
    margin-top: 30px;
  }
}
.service .service-card-content {
  position: relative;
  white-space: nowrap;
  background-color: #fff;
  min-width: 70%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1;
  padding: 30px 0;
  text-align: center;
  transform: translateY(50px);
}
@media (max-width: 767.98px) {
  .service .service-card-content {
    padding: 30px 0 10px 0;
  }
}
.service .service-card-content img.service-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -85%);
}
.service .service-card-content .service-card-title .large {
  margin-top: 15px;
  font-size: 2em;
  font-weight: 900;
}
@media (max-width: 767.98px) {
  .service .service-card-content .service-card-title .large {
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .service .service-card-content .service-card-title {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .service .service-card-content .service-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.service .service-card-text {
  margin: 1em 1em 0 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}
@media (max-width: 767.98px) {
  .service .service-card-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.voices {
  min-height: 440px;
}
@media (max-width: 767.98px) {
  .voices {
    min-height: 100px;
  }
}

.news {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .news {
    padding: 60px 0;
  }
}
.news .news-intro {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .news .news-intro {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.news .news-illustration {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 0;
}
.news .news-illustration img {
  width: 180px;
  height: auto;
  opacity: 0.25;
}
@media (max-width: 991.98px) {
  .news .news-illustration {
    width: 150px;
    top: 30px;
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .news .news-illustration {
    display: none;
  }
}
.news .news-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .news .news-card {
    margin-bottom: 20px;
  }
}
.news .news-card-image {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  .news .news-card-image {
    border-radius: 20px;
  }
}
.news .news-card-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 403/267;
  transition: transform 0.3s ease;
}
.news .news-card-image img:hover {
  transform: scale(1.1);
}
.news .date-category {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 20px 10px 20px;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .news .date-category {
    padding: 10px 0;
  }
}
.news .date-category .news-date {
  font-size: 0.9em;
  font-weight: 600;
  opacity: 0.7;
}
.news .date-category .news-category {
  display: inline-block;
  font-size: 12px;
  background-color: #3bb687;
  padding: 5px 14px;
  border-radius: 15px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767.98px) {
  .news .date-category .news-category {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
  }
}
.news .news-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  flex-grow: 1;
  padding: 0 20px;
}
@media (max-width: 767.98px) {
  .news .news-title {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
  }
}/*# sourceMappingURL=top.css.map */