:root {
  --hfg-ink: #17362e;
  --hfg-green: #0f7772;
  --hfg-mint: #dff1ec;
  --hfg-rose: #bd566d;
  --hfg-blush: #f5e4e3;
  --hfg-gold: #c99a39;
  --hfg-yellow: #f3cd59;
  --hfg-blue: #82c9d3;
  --hfg-paper: #fffdf8;
  --hfg-charcoal: #252525;
  --hfg-line: #17362e;
}

.hfg-lower,
.hfg-lower * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.hfg-lower {
  color: var(--hfg-ink);
  background: var(--hfg-paper);
  overflow: clip;
}

.hfg-lower img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hfg-page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 190px 7vw 78px;
  isolation: isolate;
  overflow: hidden;
  background: var(--hfg-charcoal);
}

.hfg-page-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--hfg-hero);
  background-position: var(--hfg-hero-position, center);
  background-size: cover;
  animation: hfgHeroReveal 1.15s cubic-bezier(.2,.75,.2,1) both;
}

.hfg-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(20, 30, 27, .38);
}

.hfg-page-hero__content {
  width: min(940px, 100%);
}

.hfg-page-hero__en {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px 7px;
  border: 2px solid #fff;
  color: #fff;
  background: rgba(23, 54, 46, .72);
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hfg-page-hero h1 {
  width: fit-content;
  max-width: 100%;
  padding: 11px 20px 13px;
  color: var(--hfg-ink);
  background: #fff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.hfg-page-hero__lead {
  width: fit-content;
  max-width: 760px;
  margin-top: 12px;
  padding: 10px 16px 11px;
  color: var(--hfg-ink);
  background: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
}

.hfg-page-hero__mark {
  position: absolute;
  right: 5vw;
  bottom: 42px;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--hfg-rose);
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transform: rotate(7deg);
}

.hfg-section {
  position: relative;
  padding: 105px 24px;
}

.hfg-section--mint { background: var(--hfg-mint); }
.hfg-section--blush { background: var(--hfg-blush); }
.hfg-section--yellow { background: #fff5c8; }
.hfg-section--white { background: #fff; }
.hfg-section--dark { color: #fff; background: var(--hfg-charcoal); }

.hfg-section__inner {
  width: min(1100px, 100%);
  margin-inline: auto;
}

.hfg-section__inner--wide {
  width: min(1240px, 100%);
}

.hfg-section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.hfg-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.hfg-eyebrow {
  margin-bottom: 12px;
  color: var(--hfg-rose);
  font-family: Jost, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hfg-section--dark .hfg-eyebrow { color: var(--hfg-yellow); }

.hfg-heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.42;
}

.hfg-copy {
  margin-top: 20px;
  font-size: 17px;
  line-height: 2;
}

.hfg-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 52px;
}

.hfg-lead-grid__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 4px solid var(--hfg-line);
  background: #fff;
  box-shadow: 14px 14px 0 var(--hfg-yellow);
  overflow: hidden;
}

.hfg-lead-grid__photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 26px;
  top: -18px;
  width: 96px;
  height: 34px;
  background: rgba(255, 252, 232, .85);
  transform: rotate(-6deg);
}

.hfg-fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.hfg-fact {
  container-type: inline-size;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  border: 3px solid var(--hfg-line);
  background: #fff;
  text-align: center;
}

.hfg-fact strong {
  display: block;
  max-width: 100%;
  color: var(--hfg-green);
  font-family: Jost, sans-serif;
  font-size: clamp(17px, 13cqw, 29px);
  font-weight: 800;
  line-height: 1.2;
  transform: translateY(3px);
}

.hfg-fact span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  transform: translateY(3px);
}

.hfg-anchor-nav {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(var(--hfg-anchor-count, 3), 1fr);
  margin: -38px auto 0;
  border: 3px solid var(--hfg-line);
  background: #fff;
  box-shadow: 7px 7px 0 var(--hfg-green);
}

.hfg-anchor-nav a {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: color .2s ease, background-color .2s ease;
}

.hfg-anchor-nav a + a { border-left: 2px solid var(--hfg-line); }

@media (any-hover: hover) {
  .hfg-anchor-nav a:hover { color: #fff; background: var(--hfg-green); }
}

.hfg-detail-list { display: grid; }

.hfg-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  background: #fff;
}

.hfg-detail:nth-child(even) .hfg-detail__photo { order: 2; }
.hfg-detail:nth-child(even) .hfg-detail__body { order: 1; }

.hfg-detail__photo {
  min-height: 520px;
  overflow: hidden;
}

.hfg-detail__photo img { transition: transform .8s ease; }

@media (any-hover: hover) {
  .hfg-detail:hover .hfg-detail__photo img { transform: scale(1.025); }
}

.hfg-detail__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px max(6vw, 56px);
}

.hfg-detail__num {
  color: var(--hfg-gold);
  font-family: Jost, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.hfg-detail h2 {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.45;
}

.hfg-detail p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 2;
}

.hfg-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hfg-pill-list li {
  padding: 8px 12px;
  border: 2px solid var(--hfg-line);
  background: var(--hfg-paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.hfg-detail--green .hfg-detail__body { background: var(--hfg-mint); }
.hfg-detail--pink .hfg-detail__body { background: var(--hfg-blush); }
.hfg-detail--yellow .hfg-detail__body { background: #fff5c8; }
.hfg-detail--blue .hfg-detail__body { background: #e3f4f6; }

.hfg-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 34px;
  border: 3px solid var(--hfg-line);
  background: #fff;
}

.hfg-note__label {
  display: grid;
  place-items: center;
  min-height: 112px;
  color: #fff;
  background: var(--hfg-green);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.hfg-note h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
}

.hfg-note p,
.hfg-note li {
  font-size: 15px;
  line-height: 1.85;
}

.hfg-note ul { margin-top: 12px; }
.hfg-note li { padding-left: 18px; position: relative; }
.hfg-note li::before { content: "•"; position: absolute; left: 2px; color: var(--hfg-rose); }

.hfg-gallery {
  display: grid;
  grid-template-columns: repeat(var(--hfg-gallery-cols, 3), 1fr);
  gap: 18px;
}

.hfg-gallery figure {
  position: relative;
  border: 3px solid var(--hfg-line);
  background: #fff;
  overflow: hidden;
}

.hfg-gallery figure:nth-child(even) { transform: translateY(22px); }

.hfg-gallery__image { aspect-ratio: 4 / 3; overflow: hidden; }

.hfg-gallery figcaption {
  padding: 18px;
  border-top: 3px solid var(--hfg-line);
}

.hfg-gallery strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.hfg-gallery span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.65;
}

.hfg-concept-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 3px solid var(--hfg-line);
}

.hfg-concept-point {
  min-height: 530px;
  display: grid;
  grid-template-rows: 280px 1fr;
  background: #fff;
}

.hfg-concept-point + .hfg-concept-point { border-left: 3px solid var(--hfg-line); }
.hfg-concept-point__photo { overflow: hidden; }
.hfg-concept-point__body { padding: 28px; border-top: 3px solid var(--hfg-line); }
.hfg-concept-point__body small { color: var(--hfg-rose); font-family: Jost, sans-serif; font-weight: 800; }
.hfg-concept-point__body h2 { margin-top: 8px; font-size: 24px; font-weight: 800; line-height: 1.45; }
.hfg-concept-point__body p { margin-top: 13px; font-size: 14px; line-height: 1.85; }

.hfg-venue-map {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: 54px;
}

.hfg-venue-map__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.hfg-venue-map__image img { object-fit: contain; }

.hfg-map-key { display: grid; gap: 10px; }

.hfg-map-key li {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 2px solid var(--hfg-line);
  background: #fff;
}

.hfg-map-key b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--hfg-rose);
  font-family: Jost, sans-serif;
  font-weight: 800;
}

.hfg-map-key strong { font-size: 16px; font-weight: 800; }
.hfg-map-key span { display: block; margin-top: 3px; font-size: 12px; line-height: 1.5; }

.hfg-zone-list { display: grid; gap: 70px; }

.hfg-zone {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.hfg-zone__label {
  position: sticky;
  top: 145px;
  padding: 28px;
  color: #fff;
  background: var(--hfg-green);
}

.hfg-zone:nth-child(2) .hfg-zone__label { background: var(--hfg-rose); }
.hfg-zone:nth-child(3) .hfg-zone__label { color: var(--hfg-ink); background: var(--hfg-yellow); }
.hfg-zone__label small { font-family: Jost, sans-serif; font-size: 14px; font-weight: 800; }
.hfg-zone__label h2 { margin-top: 8px; font-size: 27px; font-weight: 800; line-height: 1.4; }

.hfg-zone__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hfg-zone-card {
  border: 3px solid var(--hfg-line);
  background: #fff;
}

.hfg-zone-card__image { aspect-ratio: 16 / 10; overflow: hidden; }
.hfg-zone-card__body { padding: 20px; border-top: 3px solid var(--hfg-line); }
.hfg-zone-card h3 { font-size: 19px; font-weight: 800; }
.hfg-zone-card p { margin-top: 7px; font-size: 13px; line-height: 1.7; }

.hfg-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hfg-service {
  min-height: 170px;
  padding: 24px;
  border: 3px solid currentColor;
  background: #fff;
}

.hfg-service__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--hfg-green);
  font-family: Jost, sans-serif;
  font-weight: 800;
}

.hfg-service h3 { font-size: 17px; font-weight: 800; line-height: 1.45; }
.hfg-service p { margin-top: 7px; font-size: 12px; line-height: 1.65; }

.hfg-model-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.hfg-model-collage {
  position: relative;
  min-height: 590px;
}

.hfg-model-collage figure {
  position: absolute;
  width: 68%;
  aspect-ratio: 4 / 3;
  border: 10px solid #fff;
  box-shadow: 0 15px 35px rgba(20, 30, 27, .2);
  overflow: hidden;
}

.hfg-model-collage figure:nth-child(1) { left: 0; top: 0; transform: rotate(-4deg); }
.hfg-model-collage figure:nth-child(2) { right: 0; top: 170px; transform: rotate(5deg); }
.hfg-model-collage figure:nth-child(3) { left: 45px; bottom: 0; width: 54%; transform: rotate(2deg); }

.hfg-charm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hfg-charm {
  padding: 30px;
  border: 3px solid var(--hfg-line);
  background: #fff;
}

.hfg-charm:nth-child(2) { transform: translateY(25px); }
.hfg-charm__num { color: var(--hfg-rose); font-family: Jost, sans-serif; font-size: 36px; font-weight: 800; }
.hfg-charm h3 { margin-top: 12px; font-size: 21px; font-weight: 800; line-height: 1.45; }
.hfg-charm p { margin-top: 12px; font-size: 14px; line-height: 1.85; }

.hfg-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--hfg-line);
  background: #fff;
}

.hfg-timeline__item {
  position: relative;
  min-height: 230px;
  padding: 28px;
}

.hfg-timeline__item + .hfg-timeline__item { border-left: 2px solid var(--hfg-line); }
.hfg-timeline__time { color: var(--hfg-green); font-family: Jost, sans-serif; font-size: 22px; font-weight: 800; }
.hfg-timeline h3 { margin-top: 15px; font-size: 18px; font-weight: 800; line-height: 1.45; }
.hfg-timeline p { margin-top: 10px; font-size: 13px; line-height: 1.75; }

.hfg-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hfg-process__item {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 3px solid var(--hfg-line);
  background: #fff;
}

.hfg-process__step { color: var(--hfg-rose); font-family: Jost, sans-serif; font-size: 13px; font-weight: 800; }
.hfg-process h3 { margin-top: 12px; font-size: 20px; font-weight: 800; }
.hfg-process p { margin-top: 10px; font-size: 13px; line-height: 1.75; }

.hfg-table-wrap {
  border: 3px solid var(--hfg-line);
  background: #fff;
  overflow-x: auto;
}

.hfg-table {
  width: 100%;
  min-width: 720px;
}

.hfg-table th,
.hfg-table td {
  padding: 20px 22px;
  border-bottom: 2px solid var(--hfg-line);
  font-size: 14px;
  line-height: 1.7;
  vertical-align: top;
}

.hfg-table tr:last-child th,
.hfg-table tr:last-child td { border-bottom: 0; }
.hfg-table th { width: 210px; color: #fff; background: var(--hfg-green); font-weight: 800; }

.hfg-faq-groups { display: grid; gap: 72px; }
.hfg-faq-group h2 { margin-bottom: 22px; font-size: 28px; font-weight: 800; }
.hfg-accordion { display: grid; border-top: 2px solid var(--hfg-line); }
.hfg-accordion details { border-bottom: 2px solid var(--hfg-line); background: #fff; }
.hfg-accordion summary {
  position: relative;
  display: block;
  padding: 24px 70px 24px 58px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
  cursor: pointer;
}
.hfg-accordion summary::-webkit-details-marker { display: none; }
.hfg-accordion summary::before { content: "Q"; position: absolute; left: 18px; top: 22px; color: var(--hfg-rose); font-family: Jost, sans-serif; font-size: 24px; }
.hfg-accordion summary::after { content: "+"; position: absolute; right: 24px; top: 18px; font-size: 30px; font-weight: 400; }
.hfg-accordion details[open] summary::after { content: "−"; }
.hfg-accordion__answer { position: relative; padding: 0 58px 26px; font-size: 14px; line-height: 1.9; }
.hfg-accordion__answer::before { content: "A"; position: absolute; left: 18px; top: -3px; color: var(--hfg-green); font-family: Jost, sans-serif; font-size: 22px; font-weight: 800; }

.hfg-contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.hfg-contact-info {
  padding: 30px;
  color: #fff;
  background: var(--hfg-green);
}
.hfg-contact-info h2 { font-size: 24px; font-weight: 800; line-height: 1.45; }
.hfg-contact-info p { margin-top: 16px; font-size: 14px; line-height: 1.9; }
.hfg-contact-info strong { display: block; margin-top: 28px; color: var(--hfg-yellow); font-family: Jost, sans-serif; font-size: 29px; font-weight: 800; }

.hfg-form {
  padding: 38px;
  border: 3px solid var(--hfg-line);
  background: #fff;
}
.hfg-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.hfg-form label { display: grid; gap: 8px; font-size: 14px; font-weight: 800; }
.hfg-form label + label,
.hfg-form__grid + label { margin-top: 22px; }
.hfg-form__grid label + label { margin-top: 0; }
.hfg-form em { width: fit-content; padding: 2px 7px; color: #fff; background: var(--hfg-rose); font-size: 10px; font-style: normal; }
.hfg-form input[type],
.hfg-form select,
.hfg-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 2px solid var(--hfg-line);
  color: var(--hfg-ink);
  background: #fff;
  font-size: 16px;
}

.hfg-form input[type]:focus,
.hfg-form select:focus,
.hfg-form textarea:focus {
  outline: 3px solid var(--hfg-yellow);
  outline-offset: 2px;
}
.hfg-form textarea { min-height: 150px; resize: vertical; }
.hfg-form__button {
  width: 100%;
  min-height: 58px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--hfg-green);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}
.hfg-form__note { margin-top: 13px; font-size: 12px; line-height: 1.7; }

.hfg-news-list { display: grid; gap: 0; border-top: 3px solid var(--hfg-line); }
.hfg-news-item {
  display: grid;
  grid-template-columns: 190px 1fr 36px;
  align-items: center;
  gap: 24px;
  padding: 26px 10px;
  border-bottom: 3px solid var(--hfg-line);
}
.hfg-news-item time { font-family: Jost, sans-serif; font-size: 15px; font-weight: 800; }
.hfg-news-item__tag { display: inline-block; margin-right: 13px; padding: 4px 8px; color: #fff; background: var(--hfg-rose); font-size: 11px; font-weight: 800; }
.hfg-news-item h2 { display: inline; font-size: 17px; font-weight: 800; line-height: 1.65; }
.hfg-news-item__arrow { font-size: 26px; }

.hfg-article {
  width: min(820px, 100%);
  margin-inline: auto;
}
.hfg-article__meta { display: flex; gap: 12px; align-items: center; font-family: Jost, sans-serif; font-size: 14px; font-weight: 800; }
.hfg-article__meta span { padding: 4px 8px; color: #fff; background: var(--hfg-rose); }
.hfg-article h1 { margin-top: 20px; font-size: 40px; font-weight: 800; line-height: 1.5; }
.hfg-article__image { margin-top: 36px; aspect-ratio: 3 / 2; overflow: hidden; }
.hfg-article__body { margin-top: 40px; }
.hfg-article__body h2 { margin-top: 52px; padding-left: 17px; border-left: 7px solid var(--hfg-green); font-size: 27px; font-weight: 800; line-height: 1.5; }
.hfg-article__body p { margin-top: 20px; font-size: 16px; line-height: 2; }
.hfg-article__body ul { margin-top: 20px; padding: 22px 26px; background: var(--hfg-mint); }
.hfg-article__body li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.9; }
.hfg-article__body li::before { content: "•"; position: absolute; left: 2px; color: var(--hfg-rose); }

.hfg-policy-list { display: grid; gap: 70px; }
.hfg-policy h2 { padding-bottom: 18px; border-bottom: 3px solid var(--hfg-line); font-size: 30px; font-weight: 800; }
.hfg-policy h3 { margin-top: 30px; font-size: 19px; font-weight: 800; }
.hfg-policy p,
.hfg-policy li { margin-top: 15px; font-size: 14px; line-height: 2; }

.hfg-cta-band {
  position: relative;
  padding: 80px 24px;
  color: #fff;
  background: var(--hfg-green);
  text-align: center;
}
.hfg-cta-band__inner { width: min(820px, 100%); margin-inline: auto; }
.hfg-cta-band h2 { font-size: 34px; font-weight: 800; line-height: 1.45; }
.hfg-cta-band p { margin-top: 14px; font-size: 15px; line-height: 1.8; }
.hfg-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hfg-action {
  min-width: 250px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 2px solid #fff;
  color: var(--hfg-ink);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  transition: color .2s ease, background-color .2s ease;
}
.hfg-action::after { content: "›"; font-size: 26px; font-weight: 400; }
.hfg-action--ghost { color: #fff; background: transparent; }
@media (any-hover: hover) {
  .hfg-action:hover { color: #fff; background: var(--hfg-charcoal); }
}

.hfg-lower .scr-anin {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.hfg-lower .scr-anin.scr-anin--on { opacity: 1; transform: translateY(0); }

@keyframes hfgHeroReveal {
  from { opacity: .35; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

/* Keep short Japanese endings from being stranded on their own line. */
#main .hfg-page-hero__lead,
#main .hfg-copy,
#main .hfg-detail p,
#main .hfg-note p,
#main .hfg-note li,
#main .hfg-service p,
#main .hfg-charm p,
#main .hfg-process p,
#main .hfg-contact-info p,
#main .hfg-form__note,
#main .hfg-article__body p,
#main .hfg-policy p {
  text-wrap: balance;
}

@media screen and (max-width: 767px) {
  .hfg-page-hero {
    min-height: 500px;
    padding: 125px 20px 44px;
  }
  .hfg-page-hero h1 { padding: 9px 13px 10px; font-size: 36px; }
  .hfg-page-hero__lead { max-width: calc(100% - 18px); padding: 8px 11px; font-size: 15px; line-height: 1.65; }
  .hfg-page-hero__en { margin-bottom: 12px; font-size: 12px; }
  .hfg-page-hero__mark { right: 16px; bottom: 18px; width: 82px; height: 82px; font-size: 10px; }
  .hfg-section { padding: 65px 18px; }
  .hfg-heading { font-size: 29px; }
  .hfg-copy { font-size: 15px; line-height: 1.9; }
  .hfg-section-heading { margin-bottom: 32px; }
  .hfg-lead-grid,
  .hfg-venue-map,
  .hfg-model-intro,
  .hfg-contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .hfg-venue-map { gap: 28px; }
  .hfg-venue-map__image {
    width: calc(100vw - 4px);
    margin-inline: calc(50% - 50vw + 2px);
    background: transparent;
  }
  .hfg-venue-map__image img {
    transform: scale(1.08);
  }
  .hfg-lead-grid__photo { box-shadow: 8px 8px 0 var(--hfg-yellow); }
  .hfg-fact-row { grid-template-columns: 1fr; }
  .hfg-fact { min-height: 0; }
  .hfg-anchor-nav {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: -22px;
    box-shadow: 5px 5px 0 var(--hfg-green);
  }
  .hfg-anchor-nav a { min-height: 60px; padding: 10px; font-size: 12px; border-bottom: 2px solid var(--hfg-line); }
  .hfg-anchor-nav a + a { border-left: 0; }
  .hfg-anchor-nav a:nth-child(even) { border-left: 2px solid var(--hfg-line); }
  .hfg-anchor-nav a:nth-last-child(-n + 2) { border-bottom: 0; }
  .hfg-anchor-nav a:nth-last-child(2):nth-child(even) { border-bottom: 2px solid var(--hfg-line); }
  .hfg-anchor-nav a:last-child:nth-child(odd) { grid-column: 1 / -1; border-left: 0; border-bottom: 0; }
  .hfg-detail { grid-template-columns: 1fr; min-height: 0; }
  .hfg-detail:nth-child(even) .hfg-detail__photo,
  .hfg-detail:nth-child(even) .hfg-detail__body { order: initial; }
  .hfg-detail__photo { min-height: 0; aspect-ratio: 4 / 3; }
  .hfg-detail__body { padding: 42px 22px 48px; }
  .hfg-detail h2 { font-size: 26px; }
  .hfg-note { grid-template-columns: 1fr; padding: 22px; }
  .hfg-note__label { min-height: 72px; }
  .hfg-gallery { grid-template-columns: 1fr; }
  .hfg-gallery figure:nth-child(even) { transform: none; }
  .hfg-concept-points { grid-template-columns: 1fr; }
  .hfg-concept-point + .hfg-concept-point { border-left: 0; border-top: 3px solid var(--hfg-line); }
  .hfg-concept-point { min-height: 0; grid-template-rows: 250px 1fr; }
  .hfg-zone { grid-template-columns: 1fr; gap: 18px; }
  .hfg-zone__label { position: static; }
  .hfg-zone__items { grid-template-columns: 1fr; }
  .hfg-service-grid { grid-template-columns: repeat(2, 1fr); }
  .hfg-model-collage { min-height: 420px; }
  .hfg-charm-grid { grid-template-columns: 1fr; }
  .hfg-charm:nth-child(2) { transform: none; }
  .hfg-timeline,
  .hfg-process { grid-template-columns: 1fr; }
  .hfg-timeline__item { min-height: 0; }
  .hfg-timeline__item + .hfg-timeline__item { border-left: 0; border-top: 2px solid var(--hfg-line); }
  .hfg-table th,
  .hfg-table td { padding: 16px; font-size: 13px; }
  .hfg-faq-groups { gap: 50px; }
  .hfg-faq-group h2 { font-size: 23px; }
  .hfg-accordion summary { padding: 20px 50px 20px 46px; font-size: 14px; }
  .hfg-accordion summary::before { left: 12px; top: 18px; }
  .hfg-accordion summary::after { right: 16px; top: 15px; }
  .hfg-accordion__answer { padding: 0 20px 22px 46px; font-size: 13px; }
  .hfg-accordion__answer::before { left: 12px; }
  .hfg-form { padding: 24px 18px; }
  .hfg-form__grid { grid-template-columns: 1fr; }
  .hfg-form__grid label + label { margin-top: 22px; }
  .hfg-news-item { grid-template-columns: 1fr 28px; gap: 12px; padding: 22px 6px; }
  .hfg-news-item time { grid-column: 1 / -1; }
  .hfg-news-item h2 { display: block; margin-top: 9px; font-size: 15px; }
  .hfg-article h1 { font-size: 29px; }
  .hfg-article__body h2 { font-size: 23px; }
  .hfg-cta-band { padding: 62px 18px; }
  .hfg-cta-band h2 { font-size: 27px; }
  .hfg-actions { display: grid; }
  .hfg-action { min-width: 0; width: 100%; }
}

@media screen and (max-width: 420px) {
  .hfg-service-grid { grid-template-columns: 1fr; }
  .hfg-page-hero h1 { font-size: 32px; }
}
