.blog-cta,
.blog-cta * {
  box-sizing: border-box;
}

.blog-cta {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(52px, 7vw, 82px) auto;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

.chiyosato-blog-page .blog-cta {
  margin-top: -30px;
  margin-bottom: 0;
  padding-bottom: 88px;
}

.blog-cta__panel {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0, 30, 74, .94) 0%, rgba(0, 39, 99, .82) 54%, rgba(0, 39, 99, .3) 100%),
    url("../img/room.avif") center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(0, 39, 99, .2);
  isolation: isolate;
}

.blog-cta__panel::after {
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.blog-cta__content {
  width: min(620px, 100%);
}

.blog-cta__kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .82);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
}

.blog-cta .blog-cta__title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: .06em;
}

.blog-cta .blog-cta__title::before,
.blog-cta .blog-cta__title::after {
  display: none;
  content: none;
}

.blog-cta__text {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.9;
}

.blog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.blog-cta__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 12px 20px;
  border: 1px solid transparent;
  color: #fff;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.blog-cta__button:hover,
.blog-cta__button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.blog-cta__button--primary {
  min-width: 230px;
  background: #f05a4f;
}

.blog-cta__button--primary:hover,
.blog-cta__button--primary:focus-visible {
  background: #d94b42;
}

.blog-cta__button--secondary {
  min-width: 210px;
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
}

.blog-cta__button--secondary:hover,
.blog-cta__button--secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
}

@media (max-width: 680px) {
  .blog-cta {
    width: min(100% - 28px, 1120px);
    margin-block: 44px;
  }

  .chiyosato-blog-page .blog-cta {
    margin-top: -12px;
    padding-bottom: 64px;
  }

  .blog-cta__panel {
    min-height: 0;
    padding: 34px 24px;
    background:
      linear-gradient(180deg, rgba(0, 30, 74, .9) 0%, rgba(0, 39, 99, .88) 100%),
      url("../img/room.avif") center / cover no-repeat;
  }

  .blog-cta__text {
    margin-top: 16px;
    font-size: 14px;
  }

  .blog-cta__actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .blog-cta__button {
    width: 100%;
    min-width: 0;
  }
}
