/* ============================================
   health nico — ハリナチュレ実データベース
   WordPress Lightning 子テーマ用
   !important 使用禁止
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --hn-main: #2e8b7a;
  --hn-main-rgb: 46, 139, 122;
  --hn-cta-red: #d94f4f;
  --hn-cta-red-hover: #c03636;
  --hn-text: #515050;
  --hn-text-dark: #1a1a1a;
  --hn-text-light: #777;
  --hn-bg-beige: #f8f3ea;
  --hn-bg-gray: #f5f5f5;
  --hn-bg-gray-blue: #e7ecf2;
  --hn-white: #fff;
  --hn-border: #e5e0d8;
  --hn-marker: rgba(255, 211, 113, 0.7);
  --hn-ff-body: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --hn-ff-mincho: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --hn-ff-en: "Montserrat", sans-serif;
  --hn-max-w: 1200px;
  --hn-max-w-features: 900px;
  --hn-header-bar-h: 24px;
  --hn-header-h: 80px;
  --hn-section-py: 100px;
  --hn-transition: 0.3s ease;
}

/* ============================================
   Base
   ============================================ */
.hn-page {
  font-family: var(--hn-ff-body);
  font-size: 15px;
  line-height: 2;
  color: var(--hn-text);
  background-color: var(--hn-bg-beige);
  -webkit-font-smoothing: antialiased;
}
.hn-page *, .hn-page *::before, .hn-page *::after { box-sizing: border-box; }
.hn-page img { max-width: 100%; height: auto; display: block; }
.hn-page a { color: var(--hn-main); text-decoration: none; transition: opacity var(--hn-transition); }
.hn-page a:hover { opacity: 0.7; }

/* Layout */
.hn-inner { max-width: var(--hn-max-w); margin: 0 auto; padding: 0 40px; }
.hn-inner--narrow { max-width: var(--hn-max-w-features); }

/* ============================================
   Marker (yellow highlight on text)
   ============================================ */
.hn-marker {
  background: linear-gradient(transparent 60%, var(--hn-marker) 60%);
}

/* ============================================
   Header — Top bar (salon name strip)
   ============================================ */
.hn-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--hn-header-bar-h);
  background: var(--hn-main);
  color: var(--hn-white);
  font-size: 0.8em;
  font-weight: 400;
  line-height: var(--hn-header-bar-h);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============================================
   Header — Main
   ============================================ */
.hn-header {
  position: fixed;
  top: var(--hn-header-bar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--hn-white);
  box-shadow: 0 4px 7px -4px rgba(0, 0, 0, 0.1);
}
.hn-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hn-header-h);
}
.hn-header__logo {
  padding: 24px 0 24px 26px;
  flex-shrink: 0;
}
.hn-header__logo a {
  display: block;
  color: var(--hn-text-dark);
}
.hn-header__logo img {
  height: 37px;
  width: auto;
}

/* Lightning テーマの余計な要素を消す（全ページ共通） */
.hn-page .vk-mobile-nav-menu-btn,
.hn-page .site-header,
.hn-page .vk_header,
.hn-page .page-header,
.hn-page .breadcrumb,
.hn-page .entry-header,
.hn-page .vk-mobile-nav,
.hn-page #vk-mobile-nav-menu-btn {
  display: none;
}
/* Lightning本体のコンテンツ余白をリセット */
.hn-page .site-body,
.hn-page .main-section,
.hn-page .entry-body {
  padding: 0;
  margin: 0;
  max-width: none;
}
.hn-page .site-body .container,
.hn-page .main-section .container {
  padding: 0;
  max-width: none;
}

/* ============================================
   Header — Nav (ハリナチュレ準拠 ul/li構造)
   ============================================ */
.hn-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.hn-header__nav-list {
  display: flex;
  max-width: 600px;
  flex-wrap: wrap;
  padding: 17px 0 17px;
  list-style: none;
  margin: 0;
}
.hn-header__nav-list li {
  font-size: 0.875rem;
  margin-left: 3%;
  margin-bottom: 9px;
  position: relative;
}
.hn-header__nav-list li a {
  color: var(--hn-text);
  position: relative;
}
.hn-header__nav-list li a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hn-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hn-header__nav-list li a:hover {
  opacity: 1;
}
.hn-header__nav-list li a:hover::before {
  transform: scaleX(1);
}

/* ============================================
   Header — CTA button (ハリナチュレ準拠)
   ============================================ */
.hn-header__cta-wrap {
  background: var(--hn-cta-red);
  width: 25vw;
  max-width: 391px;
  height: var(--hn-header-h);
  padding: 18px 0 15px;
  flex-shrink: 0;
  position: relative;
}
.hn-header__cta-wrap:hover { opacity: 0.8; cursor: pointer; }
.hn-header__cta-wrap::before {
  content: "";
  width: 22.64px;
  height: 2px;
  background: var(--hn-white);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.hn-header__cta-wrap::after {
  content: "";
  width: 3.58px;
  height: 3.58px;
  background: var(--hn-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 22.64px;
  transform: translate(0, -50%);
}
.hn-header__cta-link {
  display: block;
  text-align: center;
  color: var(--hn-white);
  width: 100%;
  height: 100%;
}
.hn-header__cta-sub,
.hn-header__cta-text {
  display: block;
  font-weight: 600;
  color: var(--hn-white);
}
.hn-header__cta-sub { margin-bottom: 4px; font-size: 0.8rem; }
.hn-header__cta-text { font-size: 0.9rem; }

/* ============================================
   SP hamburger (ハリナチュレ準拠)
   ============================================ */
.hn-sp-header { display: none; position: relative; }
.hn-sp-menu {
  width: 80px;
  height: var(--hn-header-h);
  background: var(--hn-main);
  position: relative;
  border: none;
  cursor: pointer;
}
.hn-sp-menu__inner {
  width: 46%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hn-sp-menu__bar {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--hn-white);
  transition: 0.5s;
}
.hn-sp-menu__bar.bar02 { margin-top: 10px; }
.hn-sp-menu.active .hn-sp-menu__bar.bar01 { transform: translate(0, 6px) rotate(45deg); }
.hn-sp-menu.active .hn-sp-menu__bar.bar02 { transform: translate(0, -5px) rotate(-45deg); }

/* SP nav overlay */
.hn-sp-nav {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: calc(var(--hn-header-bar-h) + var(--hn-header-h));
  left: 0;
  background: rgba(248, 243, 234, 0.9);
  z-index: 100;
  max-height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hn-sp-nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hn-sp-nav__list {
  width: 100%;
  max-width: 450px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
}
.hn-sp-nav__item {
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(81, 80, 80, 0.7);
  position: relative;
  display: flex;
  align-items: center;
}
.hn-sp-nav__item a {
  display: inline-block;
  width: 100%;
  padding: 14px 5px;
  color: var(--hn-text);
}
.hn-sp-nav__item--cta {
  border-radius: 50px;
  background: var(--hn-main);
  margin-bottom: 30px;
  border-bottom: none;
}
.hn-sp-nav__item--cta a {
  color: var(--hn-white);
  text-align: center;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
}

/* ============================================
   Hero
   ============================================ */
/* ============================================
   MV（メインビジュアル）— ハリナチュレ準拠
   ============================================ */
.hn-mv {
  padding-top: calc(var(--hn-header-bar-h) + var(--hn-header-h));
}
.hn-mv__container {
  position: relative;
  max-height: calc(100vh - var(--hn-header-h));
}
.hn-mv__kv,
.hn-mv__kv img {
  width: 100%;
  height: auto;
}

/* キャッチコピーエリア */
.hn-mv__copy {
  position: absolute;
  top: 10%;
  left: 4%;
  font-family: var(--hn-ff-mincho);
}
.hn-mv__trouble {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hn-mv__trouble li {
  background: #858585;
  color: var(--hn-white);
  padding: 5px 14px 3px;
  margin-right: 13px;
  font-size: 1.71vw;
  letter-spacing: 0.05em;
}
.hn-mv__trouble li:last-child { margin-right: 0; }
.hn-mv__benefit {
  font-size: 1.98vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-top: 14px;
}
.hn-mv__copy-bottom { margin-top: 36px; }
.hn-mv__subcopy {
  font-size: 1.85vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--hn-text);
}
.hn-mv__maincopy {
  font-size: 2.57vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: var(--hn-main);
  margin-top: 18px;
}
.hn-mv__maincopy-block {
  display: inline-block;
  background: var(--hn-white);
  margin-bottom: 20px;
  padding: 5px 14px 3px;
}

/* 3つの強みバッジ（MV画像内 下部にオーバーレイ） */
.hn-mv__strong {
  position: absolute;
  bottom: 3%;
  left: 4%;
  z-index: 2;
}
.hn-mv__strong-flex {
  display: flex;
  align-items: flex-end;
}
.hn-mv__strong-item {
  width: 13.6vw;
  max-width: 180px;
  position: relative;
  margin-right: 17px;
  font-family: var(--hn-ff-mincho);
  aspect-ratio: 1 / 1;
}
.hn-mv__strong-item:nth-child(2) {
  transform: translateY(-30px);
}
.hn-mv__strong-item:last-child { margin-right: 0; }
.hn-mv__strong-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hn-mv__strong-txt {
  text-align: center;
  font-size: 1.3vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1.6;
  color: var(--hn-text);
}
.hn-mv__strong-big {
  font-size: 2.4vw;
  font-weight: 600;
  color: var(--hn-text-dark);
}

/* ============================================
   オファーバナー
   ============================================ */
.hn-offer {
  padding: 45px 0 44px;
}
.hn-offer__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}
.hn-offer__link {
  display: block;
  background: var(--hn-white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 32px;
  text-align: center;
  transition: box-shadow var(--hn-transition), transform var(--hn-transition);
}
.hn-offer__link:hover {
  opacity: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.hn-offer__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hn-main);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.hn-offer__price {
  font-size: 1.125rem;
  color: var(--hn-text);
  margin-bottom: 12px;
}
.hn-offer__old {
  text-decoration: line-through;
  color: var(--hn-text-light);
}
.hn-offer__new {
  font-family: var(--hn-ff-en);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hn-cta-red);
}
.hn-offer__tax {
  font-size: 0.875rem;
  color: var(--hn-text-light);
}
.hn-offer__cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hn-white);
  background: var(--hn-cta-red);
  padding: 12px 40px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ============================================
   MV Responsive
   ============================================ */
@media screen and (max-width: 680px) {
  .hn-mv__container { max-height: 100%; }
  .hn-mv__kv img { width: 100%; height: 100%; object-fit: cover; }
  .hn-mv__copy { top: 22px; }
  .hn-mv__trouble li { font-size: 3.4vw; margin-right: 7px; }
  .hn-mv__benefit { font-size: 4.57vw; margin-top: 6px; }
  .hn-mv__subcopy { font-size: 4.57vw; }
  .hn-mv__maincopy { margin-top: 10px; }
  .hn-mv__maincopy-block { font-size: 4.4vw; margin-bottom: 10px; }
  .hn-mv__strong { width: 100%; bottom: 0; left: 50%; transform: translate(-50%, 0); }
  .hn-mv__strong-flex { justify-content: center; }
  .hn-mv__strong-item { width: 30vw; aspect-ratio: 1/1; margin-right: 3.8%; }
  .hn-mv__strong-txt { font-size: 3.06vw; }
  .hn-mv__strong-big { font-size: 4.99vw; }
  .hn-mv__strong-item:nth-child(2) { transform: translateY(0); }
}
@media screen and (max-width: 768px) {
  .hn-mv { padding-top: calc(var(--hn-header-bar-h) + 60px); }
  .hn-offer { padding: 30px 0; }
}

/* ============================================
   Section
   ============================================ */
.hn-sec { padding: var(--hn-section-py) 0; }
.hn-sec--80 { padding: 80px 0; }
.hn-sec--120 { padding: 120px 0; }
.hn-sec--white { background: var(--hn-white); }
.hn-sec--beige { background: var(--hn-bg-beige); }
.hn-sec--alt { background: var(--hn-bg-beige); }
.hn-sec--gray { background: var(--hn-bg-gray); }
.hn-sec--gray-blue { background: var(--hn-bg-gray-blue); }
.hn-sec--green { background: var(--hn-main); }

/* ============================================
   Section heading — with dot + vertical line
   ============================================ */
.hn-sec__heading {
  text-align: center;
  margin-bottom: 60px;
}
.hn-sec__en {
  font-family: var(--hn-ff-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hn-main);
  margin-bottom: 12px;
}
.hn-sec--green .hn-sec__en { color: rgba(255, 255, 255, 0.5); }

/* Primary title — 2rem, fw 400, letter-spacing 0.05em */
.hn-ttl--primary {
  font-family: var(--hn-ff-mincho);
  font-size: 2rem;
  font-weight: 400;
  color: var(--hn-text-dark);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.hn-sec--green .hn-ttl--primary { color: var(--hn-white); }

/* Alias: section h2 uses same as ttl--primary */
.hn-sec__h2 {
  font-family: var(--hn-ff-mincho);
  font-size: 2rem;
  font-weight: 400;
  color: var(--hn-text-dark);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.hn-sec--green .hn-sec__h2 { color: var(--hn-white); }

.hn-sec__lead {
  font-size: 14px;
  color: var(--hn-text-light);
  margin-top: 16px;
  line-height: 2;
}

/* ============================================
   Dot + Vertical line decoration (.dot--center)
   Dot: 7px circle above
   Line: 45px vertical line from dot to heading
   ============================================ */
.hn-dot--center {
  position: relative;
  display: inline-block;
  padding-top: 62px; /* 7px dot + 10px gap + 45px line */
}
.hn-dot--center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hn-main);
  animation: hn-dot-fade 1.2s ease-in-out infinite alternate;
}
.hn-dot--center::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 45px;
  background: var(--hn-main);
  animation: hn-line-grow 0.8s ease forwards;
}
.hn-sec--green .hn-dot--center::before { background: var(--hn-white); }
.hn-sec--green .hn-dot--center::after { background: rgba(255, 255, 255, 0.5); }

@keyframes hn-dot-fade {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}
@keyframes hn-line-grow {
  0% { height: 0; }
  100% { height: 45px; }
}

/* ============================================
   Buttons — Primary (.btn--primary)
   bg main, border-radius 50px, max-width 317px
   Dot + line decoration on right end
   ============================================ */
.hn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--hn-ff-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--hn-transition), transform var(--hn-transition);
  line-height: 1;
}
.hn-btn:hover { opacity: 1; transform: translateY(-1px); }

.hn-btn--primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 52px 18px 40px;
  font-family: var(--hn-ff-body);
  font-size: 15px;
  font-weight: 700;
  background: var(--hn-main);
  color: var(--hn-white);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  max-width: 317px;
  line-height: 1;
  transition: background var(--hn-transition), transform var(--hn-transition);
}
.hn-btn--primary:hover { opacity: 1; transform: translateY(-1px); }
.hn-btn--primary:hover {
  background: #257567;
  color: var(--hn-white);
}
/* Dot (3.58px) + line (22.64px) decoration on right side */
.hn-btn--primary::before {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 22.64px;
  height: 1px;
  background: var(--hn-white);
}
.hn-btn--primary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 3.58px;
  height: 3.58px;
  border-radius: 50%;
  background: var(--hn-white);
}

.hn-btn--cta {
  padding: 18px 40px;
  font-size: 15px;
  background: var(--hn-cta-red);
  color: var(--hn-white);
  border-radius: 50px;
  max-width: 317px;
}
.hn-btn--cta:hover {
  background: var(--hn-cta-red-hover);
  color: var(--hn-white);
}

.hn-btn--outline {
  padding: 14px 32px;
  font-size: 14px;
  background: transparent;
  color: var(--hn-main);
  border: 1.5px solid var(--hn-main);
  border-radius: 50px;
}
.hn-btn--outline:hover {
  background: var(--hn-main);
  color: var(--hn-white);
}

.hn-btn--white {
  padding: 18px 40px;
  font-size: 15px;
  background: var(--hn-white);
  color: var(--hn-cta-red);
  border-radius: 50px;
}
.hn-btn--sm { padding: 12px 28px; font-size: 13px; }

/* ============================================
   Features strip
   max-width 900px (features)
   ============================================ */
.hn-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--hn-max-w-features);
  margin: 0 auto;
  background: var(--hn-white);
  border-top: 1px solid var(--hn-border);
  border-bottom: 1px solid var(--hn-border);
}
.hn-feature {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--hn-border);
}
.hn-feature:last-child { border-right: none; }
.hn-feature__num {
  font-family: var(--hn-ff-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--hn-main);
  line-height: 1;
  margin-bottom: 8px;
}
.hn-feature__unit { font-size: 16px; font-weight: 400; }
.hn-feature__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--hn-text);
  letter-spacing: 0.04em;
}

/* ============================================
   Two-column layout
   ============================================ */
.hn-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hn-two--rev { direction: rtl; }
.hn-two--rev > * { direction: ltr; }
.hn-two__img {
  overflow: hidden;
  border-radius: 5px;
}
.hn-two__img img { width: 100%; height: auto; }
.hn-two__body h3 {
  font-family: var(--hn-ff-mincho);
  font-size: 22px;
  font-weight: 500;
  color: var(--hn-text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hn-two__body p {
  font-size: 14px;
  line-height: 2.1;
  color: var(--hn-text);
}

/* ============================================
   Cards
   bg #fff, border-radius 5-10px, padding 26-40px
   ============================================ */
.hn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hn-card {
  background: var(--hn-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--hn-transition), transform var(--hn-transition);
}
.hn-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.hn-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.hn-card__body { padding: 26px 24px 40px; }
.hn-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--hn-text-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}
.hn-card__text {
  font-size: 13px;
  color: var(--hn-text-light);
  line-height: 2;
}
.hn-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hn-main);
}

/* ============================================
   Subscription card
   Tag: bg main, text white
   Detail area: bg beige
   ============================================ */
.hn-subsc-card {
  background: var(--hn-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.hn-subsc-card__tag {
  display: inline-block;
  background: var(--hn-main);
  color: var(--hn-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.hn-subsc-card__detail {
  background: var(--hn-bg-beige);
  padding: 26px 28px;
  border-radius: 0 0 10px 10px;
}
.hn-subsc-card__price {
  font-family: var(--hn-ff-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--hn-cta-red);
}
.hn-subsc-card__note {
  font-size: 12px;
  color: var(--hn-text-light);
  line-height: 2;
}

/* ============================================
   Concept photo gallery
   ============================================ */
.hn-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hn-gallery--4col { grid-template-columns: repeat(4, 1fr); }
.hn-gallery__item {
  overflow: hidden;
  border-radius: 5px;
}
.hn-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hn-gallery__item:hover img {
  transform: scale(1.05);
}
.hn-gallery__item--wide {
  grid-column: span 2;
}
.hn-gallery__item--tall {
  grid-row: span 2;
}

/* ============================================
   Flow / Steps
   ============================================ */
.hn-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.hn-flow__item {
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--hn-white);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.hn-flow__item::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: var(--hn-ff-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--hn-main);
  margin-bottom: 12px;
  line-height: 1;
}
.hn-flow__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--hn-text-dark);
  margin-bottom: 8px;
}
.hn-flow__text {
  font-size: 12px;
  color: var(--hn-text-light);
  line-height: 1.8;
}

/* ============================================
   Voice / Testimonials
   ============================================ */
.hn-voices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hn-voice {
  background: var(--hn-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.hn-voice__ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hn-voice__ba-col { position: relative; }
.hn-voice__ba-col img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.hn-voice__ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--hn-ff-en);
  color: var(--hn-white);
  background: var(--hn-main);
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}
.hn-voice__ba-col:last-child .hn-voice__ba-tag { background: var(--hn-cta-red); }
.hn-voice__body { padding: 24px; }
.hn-voice__meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--hn-main);
  margin-bottom: 4px;
}
.hn-voice__result {
  font-family: var(--hn-ff-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--hn-cta-red);
  margin-bottom: 12px;
}
.hn-voice__text {
  font-size: 13px;
  color: var(--hn-text-light);
  line-height: 2;
}

/* ============================================
   FAQ
   ============================================ */
.hn-faq__item {
  background: var(--hn-white);
  margin-bottom: 8px;
  border-radius: 5px;
  overflow: hidden;
}
.hn-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--hn-ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--hn-text-dark);
  text-align: left;
  line-height: 1.8;
  transition: background var(--hn-transition);
}
.hn-faq__q:hover { background: rgba(var(--hn-main-rgb), 0.06); }
.hn-faq__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hn-main);
  color: var(--hn-white);
  font-family: var(--hn-ff-en);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
}
.hn-faq__q-toggle {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--hn-main);
  transition: transform var(--hn-transition);
}
.hn-faq__item.is-open .hn-faq__q-toggle { transform: rotate(45deg); }
.hn-faq__a {
  display: none;
  padding: 0 24px 24px 68px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--hn-text);
}
.hn-faq__item.is-open .hn-faq__a { display: block; }

/* ============================================
   CTA Band
   ============================================ */
.hn-cta {
  background: var(--hn-main);
  padding: 80px 0;
  text-align: center;
}
.hn-cta__h {
  font-family: var(--hn-ff-mincho);
  font-size: 26px;
  font-weight: 500;
  color: var(--hn-white);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.hn-cta__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.hn-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hn-cta__tel {
  font-family: var(--hn-ff-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--hn-white);
  margin-top: 20px;
  line-height: 1;
}
.hn-cta__tel-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ============================================
   Info Table
   ============================================ */
.hn-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hn-info-table th, .hn-info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--hn-border);
  text-align: left;
  vertical-align: top;
}
.hn-info-table th {
  width: 140px;
  font-weight: 700;
  color: var(--hn-main);
  background: rgba(var(--hn-main-rgb), 0.06);
  white-space: nowrap;
}

/* ============================================
   Contact
   ============================================ */
.hn-contact-tel {
  font-family: var(--hn-ff-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.hn-contact-tel a { color: var(--hn-main); }

/* Form */
.hn-form { max-width: 600px; margin: 0 auto; }
.hn-form__group { margin-bottom: 24px; }
.hn-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--hn-text-dark);
  margin-bottom: 8px;
}
.hn-form__req {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--hn-white);
  background: var(--hn-cta-red);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}
.hn-form__input, .hn-form__textarea {
  width: 100%;
  font-family: var(--hn-ff-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--hn-border);
  border-radius: 5px;
  background: var(--hn-white);
  color: var(--hn-text);
  transition: border-color var(--hn-transition);
}
.hn-form__input:focus, .hn-form__textarea:focus {
  outline: none;
  border-color: var(--hn-main);
}
.hn-form__textarea {
  resize: vertical;
  min-height: 140px;
}

/* Footer — see ハリナチュレ風ダークグリーン section below */

/* ============================================
   Fixed CTA (SP)
   ============================================ */
.hn-fixcta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--hn-white);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
}
.hn-fixcta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hn-fixcta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hn-white);
}
.hn-fixcta__btn--line { background: #06c755; }
.hn-fixcta__btn--tel { background: var(--hn-main); }

/* ============================================
   Page header (sub pages)
   ============================================ */
.hn-page-head {
  background: var(--hn-main);
  padding: 56px 0;
  text-align: center;
}
.hn-page-head__h1 {
  font-family: var(--hn-ff-mincho);
  font-size: 30px;
  font-weight: 500;
  color: var(--hn-white);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.hn-page-head__en {
  font-family: var(--hn-ff-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.hn-bread {
  padding: 10px 0;
  font-size: 11px;
  color: var(--hn-text-light);
}
.hn-bread a { color: var(--hn-text-light); }
.hn-bread a:hover { color: var(--hn-main); opacity: 1; }
.hn-bread span { margin: 0 6px; }

/* ============================================
   Utility
   ============================================ */
.hn-tc { text-align: center; }
.hn-mt16 { margin-top: 16px; }
.hn-mt24 { margin-top: 24px; }
.hn-mt40 { margin-top: 40px; }
.hn-mt60 { margin-top: 60px; }
.hn-mb40 { margin-bottom: 40px; }
.hn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hn-main);
  letter-spacing: 0.04em;
}
.hn-more::after {
  content: '\2192';
  transition: margin-left var(--hn-transition);
}
.hn-more:hover::after { margin-left: 4px; }
.hn-more:hover { opacity: 1; }
.hn-note {
  font-size: 12px;
  color: var(--hn-text-light);
  line-height: 2;
}
.hn-mb-24 { margin-bottom: 24px; }
.hn-mb-48 { margin-bottom: 48px; }

/* ============================================
   Price Card — ハリナチュレ風料金カード
   ============================================ */
.hn-price-card {
  background: var(--hn-white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.hn-price-card--highlight {
  border: 2px solid var(--hn-main);
}
.hn-price-card__label {
  font-family: var(--hn-ff-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hn-main);
  margin-bottom: 8px;
}
.hn-price-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--hn-text-dark);
  margin-bottom: 16px;
}
.hn-price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hn-price-card__old {
  font-size: 18px;
  color: var(--hn-text-light);
  text-decoration: line-through;
}
.hn-price-card__arrow {
  font-size: 14px;
  color: var(--hn-text-light);
}
.hn-price-card__new {
  font-family: var(--hn-ff-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--hn-main);
  line-height: 1;
}
.hn-price-card__unit {
  font-size: 16px;
  color: var(--hn-text);
}

/* ============================================
   Contact — LINE icon, QR, tel note
   ============================================ */
.hn-contact-line-icon {
  margin-bottom: 16px;
}
.hn-contact-qr {
  max-width: 180px;
  margin: 0 auto;
  border-radius: 8px;
}
.hn-contact-qr-note {
  font-size: 12px;
  color: var(--hn-text-light);
  margin-top: 8px;
  text-align: center;
}
.hn-contact-tel-note {
  font-size: 13px;
  color: var(--hn-text-light);
  margin-top: 4px;
}

/* Form required badge */
.hn-form__required {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--hn-white);
  background: var(--hn-cta-red);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}

/* ============================================
   Footer — ハリナチュレ風ダークグリーン
   Override default dark footer with main color
   ============================================ */
.hn-footer {
  background: #1a3d35;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}
.hn-footer__inner {
  max-width: var(--hn-max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.hn-footer__grid {
  max-width: none;
  margin: 0;
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.hn-footer__brand-area {}
.hn-footer__brand {
  font-family: var(--hn-ff-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--hn-white);
  margin-bottom: 8px;
}
.hn-footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.hn-footer__info {
  font-size: 12px;
  line-height: 2.2;
}
.hn-footer__info a {
  color: rgba(255, 255, 255, 0.7);
}
.hn-footer__info a:hover {
  color: var(--hn-white);
  opacity: 1;
}
.hn-footer__nav-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--hn-white);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.hn-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.hn-footer__nav-list li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  display: block;
}
.hn-footer__nav-list li a:hover {
  color: var(--hn-white);
  opacity: 1;
}
.hn-footer__bottom {
  max-width: none;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.hn-footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Responsive — Tablet (1024px)
   ============================================ */
@media (max-width: 1200px) {
  .hn-header__nav { display: none; }
  .hn-sp-header { display: block; position: relative; }
  .hn-inner { padding: 0 24px; }
  .hn-header__wrap { padding: 0; padding-left: 24px; }
  .hn-two { grid-template-columns: 1fr; gap: 32px; }
  .hn-two--rev { direction: ltr; }
  .hn-gallery { grid-template-columns: repeat(2, 1fr); }
  .hn-gallery--4col { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Responsive — SP (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --hn-header-h: 60px;
    --hn-section-py: 64px;
  }
  .hn-hero { min-height: 70vh; }
  .hn-hero__catch { font-size: 28px; line-height: 1.7; }
  .hn-hero__sub { font-size: 14px; }
  .hn-hero__price {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    align-items: flex-start;
  }
  .hn-hero__price-new { font-size: 28px; }
  .hn-sec__h2 { font-size: 24px; }
  .hn-ttl--primary { font-size: 24px; }
  .hn-sec__heading { margin-bottom: 40px; }
  .hn-dot--center { padding-top: 48px; }
  .hn-dot--center::after { height: 32px; }
  @keyframes hn-line-grow {
    0% { height: 0; }
    100% { height: 32px; }
  }
  .hn-features {
    grid-template-columns: 1fr;
    border: 1px solid var(--hn-border);
  }
  .hn-feature {
    padding: 28px 24px;
    border-right: none;
    border-bottom: 1px solid var(--hn-border);
  }
  .hn-feature:last-child { border-bottom: none; }
  .hn-cards { grid-template-columns: 1fr; }
  .hn-flow { grid-template-columns: 1fr; }
  .hn-voices { grid-template-columns: 1fr; }
  .hn-gallery { grid-template-columns: 1fr 1fr; gap: 4px; }
  .hn-gallery__item--wide { grid-column: span 2; }
  .hn-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hn-footer__nav-list { grid-template-columns: repeat(2, 1fr); }
  .hn-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hn-price-card { padding: 28px 20px; }
  .hn-price-card__new { font-size: 32px; }
  .hn-fixcta { display: block; }
  .hn-page { padding-bottom: 64px; }
  .hn-page-head { padding: 40px 0; }
  .hn-page-head__h1 { font-size: 24px; }
  .hn-cta__h { font-size: 22px; }
  .hn-info-table th {
    width: auto;
    display: block;
    padding-bottom: 4px;
    border-bottom: none;
  }
  .hn-info-table td { display: block; padding-top: 0; }
  .hn-contact-tel { font-size: 28px; }
  .hn-sp-nav { padding: 32px 24px; }
}

/* ============================================
   Responsive — Small SP (480px)
   ============================================ */
@media (max-width: 480px) {
  .hn-hero__catch { font-size: 24px; }
  .hn-sec__h2 { font-size: 22px; }
  .hn-ttl--primary { font-size: 22px; }
  .hn-gallery { grid-template-columns: 1fr; }
  .hn-gallery__item--wide { grid-column: span 1; }
}
