.news-hero {
  height: 520px;
  padding: 92px 24px 70px;
  position: relative;
  overflow: hidden;
  background: var(--orange);
  text-align: center;
}
.news-hero > p {
  margin: 0 0 10px;
  font:
    600 14px Outfit,
    sans-serif;
  letter-spacing: 0.22em;
}
.news-hero h1 {
  margin: 0;
  font:
    400 clamp(110px, 15vw, 210px) / 0.8 Modak,
    cursive;
  letter-spacing: 0.025em;
  background: linear-gradient(90deg, var(--cream), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}
.news-hero h2 {
  margin: 35px 0 0;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.hero-deco {
  position: absolute;
  z-index: 0;
  filter: drop-shadow(8px 8px 10px #0002);
}
.hero-heart {
  left: 9%;
  top: 110px;
  color: var(--hot);
  font-size: 74px;
  transform: rotate(-14deg);
}
.hero-star {
  right: 9%;
  bottom: 70px;
  color: var(--cream);
  font-size: 65px;
  transform: rotate(18deg);
}
.hero-dot {
  right: 18%;
  top: 95px;
  padding: 15px 20px;
  border-radius: 24px;
  background: var(--pink);
  color: var(--hot);
  font: 900 30px/1 Outfit;
}
.news-area {
  padding: 0 24px 140px;
}
.news-panel {
  width: min(1080px, 100%);
  margin: -72px auto 0;
  padding: 80px clamp(32px, 7vw, 100px);
  position: relative;
  border: 7px solid var(--orange);
  border-radius: 76px;
  background: var(--paper);
  box-shadow: 18px 16px 0 rgba(255, 104, 22, 0.18);
}
.panel-heading {
  text-align: center;
  margin-bottom: 55px;
}
.panel-heading p {
  margin: 0 0 7px;
  color: var(--hot);
  font:
    600 13px Outfit,
    sans-serif;
  letter-spacing: 0.2em;
}
.panel-heading h2 {
  margin: 0;
  font-size: 30px;
}
.news-items {
  border-top: 1px solid #ff681655;
}
.news-item {
  min-height: 132px;
  padding: 30px 70px 30px 10px;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #ff681655;
  cursor: pointer;
  transition:
    background 0.3s,
    padding 0.3s,
    border-radius 0.3s;
}
.meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.meta time {
  font:
    600 17px Outfit,
    sans-serif;
  letter-spacing: 0.04em;
}
.meta span {
  padding: 6px 15px;
  border: 1px solid var(--hot);
  border-radius: 99px;
  color: var(--hot);
  font-size: 12px;
}
.news-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.news-item i {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 10px;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  font-style: normal;
  translate: 0 -50%;
  transition:
    transform 0.3s,
    background 0.3s;
}
.news-item:hover,
.news-item:focus-visible {
  padding-left: 24px;
  padding-right: 84px;
  outline: 0;
  border-radius: 22px;
  background: var(--cream);
}
.news-item:hover i,
.news-item:focus-visible i {
  transform: translateX(6px);
  background: var(--hot);
  color: white;
}
.pagination {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.pagination a,
.pagination span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hot);
  border-radius: 50%;
  color: var(--hot);
  font: 600 15px Outfit;
}
.pagination span,
.pagination a:hover {
  background: var(--hot);
  color: white;
}
.page-cta {
  padding: 100px 24px;
  text-align: center;
  background: var(--orange);
}
.page-cta p {
  margin: 0 0 35px;
  font-size: 22px;
}
.page-cta strong {
  color: var(--hot);
  font-size: 30px;
}
.page-cta a {
  min-width: 380px;
  min-height: 66px;
  padding: 16px 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-radius: 99px;
  background: var(--cream);
  color: var(--hot);
  font-size: 19px;
  font-weight: 700;
  transition: 0.25s;
}
.page-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(92, 45, 20, 0.22);
}
footer p {
  font:
    600 12px Outfit,
    sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .sub-header {
    height: 70px;
    padding: 0 18px;
  }
  .logo {
    font-size: 18px;
  }
  .back {
    font-size: 13px;
  }
  .back span {
    width: 30px;
    height: 30px;
  }
  .news-hero {
    height: 410px;
    padding-top: 82px;
  }
  .news-hero h1 {
    font-size: 100px;
  }
  .news-hero h2 {
    margin-top: 28px;
    font-size: 16px;
  }
  .hero-heart {
    left: 4%;
    top: 70px;
    font-size: 48px;
  }
  .hero-star {
    right: 4%;
    bottom: 60px;
    font-size: 45px;
  }
  .hero-dot {
    right: 7%;
    top: 45px;
    font-size: 20px;
  }
  .news-area {
    padding: 0 14px 80px;
  }
  .news-panel {
    margin-top: -48px;
    padding: 54px 18px;
    border-width: 5px;
    border-radius: 45px;
    box-shadow: 10px 10px 0 rgba(255, 104, 22, 0.16);
  }
  .panel-heading {
    margin-bottom: 38px;
  }
  .panel-heading h2 {
    font-size: 24px;
  }
  .news-item {
    min-height: 134px;
    padding: 24px 50px 24px 6px;
    display: block;
  }
  .meta {
    gap: 12px;
    margin-bottom: 16px;
  }
  .meta time {
    font-size: 15px;
  }
  .news-item h3 {
    font-size: 16px;
  }
  .news-item i {
    right: 4px;
    width: 38px;
    height: 38px;
  }
  .news-item:hover,
  .news-item:focus-visible {
    padding-left: 15px;
    padding-right: 55px;
  }
  .page-cta {
    padding: 75px 18px;
  }
  .page-cta p {
    font-size: 16px;
    line-height: 1.8;
  }
  .page-cta strong {
    font-size: 22px;
  }
  .page-cta a {
    min-width: 0;
    width: 100%;
    min-height: 58px;
    padding: 14px 25px;
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .back,
  .back span,
  .news-item,
  .news-item i,
  .page-cta a {
    transition: none;
  }
}

@media (max-width: 700px) {
  .news-hero .hero-deco {
    display: none !important;
  }

  .news-hero {
    height: 350px;
  }
}

/* Smartphone: keep the lower-page hero focused on its heading. */
@media (max-width: 700px) {
  .news-hero .hero-deco {
    display: none;
  }

  .news-hero {
    height: 350px;
  }
}

/* TOPページと共通の3Dデコレーション */
.news-hero .hero-deco {
  position: absolute;
  z-index: 3;
  display: block;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("../images/contact-decor.png");
  background-repeat: no-repeat;
  background-size: 720px 960px;
  font-size: 0;
  filter: drop-shadow(10px 12px 10px #6b26052b);
}
.news-hero .hero-heart {
  left: 7%;
  top: 90px;
  width: 165px;
  height: 165px;
  background-position: -20px -180px;
  transform: rotate(-12deg);
}
.news-hero .hero-star {
  display: none;
}
.news-hero .hero-dot {
  right: 13%;
  top: 62px;
  width: 180px;
  height: 165px;
  background-position: -185px -180px;
  transform: rotate(7deg);
}
@media (max-width: 700px) {
  .news-hero .hero-deco {
    background-size: 480px 640px;
  }
  .news-hero .hero-heart {
    left: 1%;
    top: 52px;
    width: 110px;
    height: 110px;
    background-position: -13px -120px;
  }
  .news-hero .hero-star {
    display: none;
  }
  .news-hero .hero-dot {
    right: -4%;
    top: -10px;
    width: 105px;
    height: 96px;
    background-position: -123px -120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer a,
  .site-footer a::after,
  .site-footer .footer-contact a img {
    transition: none;
  }
  .site-footer a:hover,
  .site-footer .footer-contact a:hover img {
    transform: none;
  }
}
