.entry-page {
  background: var(--cream);
}

.entry-container {
  width: min(100% - 48px, 680px);
  margin-inline: auto;
}

.entry-container--wide {
  width: min(100% - 48px, 940px);
}

.entry-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 24px;
}

.entry-hero__bg {
  position: absolute;
  inset: 0;
}

.entry-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.entry-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 247, 242, 0.97) 0%, rgba(250, 247, 242, 0.9) 48%, rgba(250, 247, 242, 0.25) 78%, transparent 100%);
}

.entry-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin-inline: auto;
}

.entry-hero__limited {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark);
  background: rgba(250, 247, 242, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.entry-hero__eyebrow {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.entry-hero__title {
  max-width: 620px;
  margin-bottom: 22px;
  color: #1a2d2a;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.35;
}

.entry-hero__title span {
  color: var(--teal-dark);
  border-bottom: 4px solid #f4b8b8;
}

.entry-hero__lead {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.9;
}

.entry-hero__lead strong {
  color: var(--teal-dark);
}

.entry-hero__note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
}

.entry-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 28px;
  border: 2px solid var(--teal-dark);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.entry-btn:hover {
  transform: translateY(-2px);
}

.entry-btn--primary {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(14, 125, 111, 0.24);
}

.entry-btn--primary:hover {
  background: #096b60;
  box-shadow: 0 11px 25px rgba(14, 125, 111, 0.3);
}

.entry-btn--outline {
  background: var(--white);
  color: var(--teal-dark);
}

.entry-btn--outline:hover {
  background: var(--teal-light);
}

.entry-summary {
  padding: 72px 0;
  background: var(--teal);
  color: var(--white);
}

.entry-summary .section__label,
.entry-summary .section__title {
  color: var(--white);
}

.entry-facts {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.entry-facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.entry-facts dt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
}

.entry-facts dd {
  font-size: 15px;
}

.entry-summary__note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.9;
}

.entry-plans {
  background: var(--paper);
}

.entry-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.entry-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.entry-plan--featured {
  border: 2px solid var(--teal);
  padding-top: 54px;
}

.entry-plan__recommend {
  position: absolute;
  inset: 0 0 auto;
  padding: 8px 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.entry-plan__head {
  min-height: 178px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.entry-plan__tag {
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}

.entry-plan h3 {
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}

.entry-plan__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 16px;
}

.entry-plan__price strong {
  color: #1a2d2a;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.entry-plan__price span {
  color: var(--text-muted);
  font-size: 13px;
}

.entry-check-list {
  display: grid;
  flex: 1;
  gap: 10px;
  margin: 24px 0 28px;
}

.entry-check-list li {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
  line-height: 1.7;
}

.entry-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.entry-plan .entry-btn {
  width: 100%;
}

.entry-plans__payment {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.entry-hands-on {
  background: var(--cream);
}

.entry-hands-on__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 48px;
}

.entry-hands-on__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.entry-hands-on__body .section__label {
  text-align: left;
}

.entry-hands-on__body h2 {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.55;
}

.entry-hands-on__body > p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
}

.entry-hands-on__body dl {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.entry-hands-on__body dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.entry-hands-on__body dt {
  color: var(--text-muted);
  font-size: 12px;
}

.entry-hands-on__body dd {
  font-size: 14px;
  font-weight: 500;
}

.entry-hands-on__note {
  margin-top: 10px;
  font-size: 11px !important;
}

.entry-flow {
  background: var(--paper);
}

.entry-steps {
  display: grid;
  gap: 0;
}

.entry-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.entry-steps li:first-child {
  border-top: 1px solid var(--line);
}

.entry-steps li > span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 24px;
}

.entry-steps h3 {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 17px;
}

.entry-steps p {
  color: var(--text-muted);
  font-size: 13px;
}

.entry-notes {
  background: var(--white);
}

.entry-note-list {
  display: grid;
  gap: 12px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.entry-note-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.entry-note-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
}

.entry-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 20px;
}

.entry-policy-links a {
  color: var(--teal-dark);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.entry-final {
  background: var(--teal-light);
}

.entry-final .section__label {
  color: var(--teal-dark);
}

.entry-btn--large {
  min-width: 340px;
  min-height: 66px;
  font-size: 16px;
}

.entry-sticky {
  display: none;
}

@media (max-width: 740px) {
  .entry-page {
    padding-bottom: 70px;
  }

  .entry-container,
  .entry-container--wide {
    width: min(100% - 40px, 680px);
  }

  .entry-hero {
    min-height: 82vh;
    align-items: flex-end;
    padding: 52px 20px 44px;
  }

  .entry-hero::after {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.08) 0%, rgba(250, 247, 242, 0.48) 36%, rgba(250, 247, 242, 0.97) 64%, var(--cream) 100%);
  }

  .entry-hero__inner {
    padding-top: 46vh;
  }

  .entry-hero__limited {
    margin-bottom: 12px;
  }

  .entry-hero__title {
    font-size: 36px;
  }

  .entry-hero__lead {
    font-size: 15px;
  }

  .entry-hero .entry-btn {
    width: 100%;
  }

  .entry-plan-grid,
  .entry-hands-on__grid {
    grid-template-columns: 1fr;
  }

  .entry-plan {
    padding: 28px 22px;
  }

  .entry-plan--featured {
    padding-top: 52px;
  }

  .entry-plan__head {
    min-height: auto;
  }

  .entry-hands-on__grid {
    gap: 28px;
  }

  .entry-hands-on__body .section__label {
    text-align: center;
  }

  .entry-hands-on__body h2 {
    font-size: 22px;
    text-align: center;
  }

  .entry-btn--large {
    width: 100%;
    min-width: 0;
  }

  .entry-sticky {
    position: fixed;
    z-index: 100;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(14, 125, 111, 0.34);
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.25s ease;
  }
}

@media (max-width: 480px) {
  .entry-facts > div,
  .entry-hands-on__body dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .entry-plan__price strong {
    font-size: 34px;
  }

  .entry-note-list {
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-btn {
    transition: none;
  }

  .entry-sticky {
    transition: none;
  }
}
