/**
 * ha-ka-ru サイト共通デザイン（ha-ka-ru-site.html 準拠のミニマル・白×黒・明朝見出し）。
 *
 * front-page / about / news / contact / hakaru の各スタンドアロンテンプレートが
 * 共有する単一のスタイルシート。テーマ共通の style.css は本デザインのページでは
 * dequeue している（includes/hakaru-site.php）。
 */

:root {
  --hk-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  --hk-mincho: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
    "Noto Serif JP", "Noto Serif CJK JP", "Times New Roman", serif;
  --hk-ink: #000000;
  --hk-paper: #ffffff;
  --hk-rule: #000000;
  --hk-muted: #666666;
  --hk-max: 1120px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: var(--hk-paper);
  color: var(--hk-ink);
}

body {
  font-family: var(--hk-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.9;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   SITE NAV
========================= */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--hk-max), calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0 20px;
  background: var(--hk-paper);
}

.site-nav__brand {
  font-size: 13px;
  letter-spacing: .06em;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  max-width: min(52%, 520px);
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__menu {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, opacity .25s ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  border-bottom-color: var(--hk-rule);
}

/* 一番右の特別リンク：ha-ka-ru（線で囲って別サイト感を出す） */
.site-nav__hakaru {
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
  line-height: 1;
  padding: 8px 16px;
  border: 1px solid var(--hk-rule);
  transition: background .25s ease, color .25s ease;
}

.site-nav__hakaru:hover,
.site-nav__hakaru[aria-current="page"] {
  background: var(--hk-ink);
  color: var(--hk-paper);
}

button.site-nav__hakaru {
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background: var(--hk-paper);
  color: var(--hk-ink);
}

.site-nav__cta {
  background: var(--hk-ink);
  color: var(--hk-paper);
}

.site-nav__cta:hover {
  opacity: .88;
}

.hakaru-apply-cta {
  font-size: 16px;
  letter-spacing: .1em;
  padding: 16px 32px;
}

/* =========================
   FIRST VIEW (hakaru hero)
========================= */

#hakaru-hero {
  position: relative;
  width: 100%;
  min-height: 64vh;
  overflow: hidden;
  background: var(--hk-paper);
  color: var(--hk-ink);
}

/* ヒーロー直後の intro は上余白を詰め、リード冒頭を 1st view に見せる */
#hakaru-hero + .hk-main .section-intro {
  padding-top: 64px;
}

.brand {
  position: absolute;
  top: 30px;
  left: 34px;
  z-index: 10;
  margin: 0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 400;
  color: var(--hk-ink);
}

.stage {
  position: absolute;
  inset: 0;
}

.stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connection {
  stroke: var(--hk-ink);
  stroke-width: .9;
  vector-effect: non-scaling-stroke;
  fill: none;
}

.node {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-family: var(--hk-mincho);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1;
  letter-spacing: .02em;
  font-weight: 400;
  white-space: nowrap;
  user-select: none;
  will-change: left, top;
  background: transparent;
  color: var(--hk-ink);
  padding: 0;
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: calc(100% - 60px);
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--hk-mincho);
  font-size: clamp(17px, 2.2vw, 27px);
  letter-spacing: .08em;
  line-height: 1.9;
  font-weight: 400;
  color: var(--hk-ink);
}

/* =========================
   PAGE HEADER (non-hero pages)
========================= */

.page-head {
  width: min(var(--hk-max), calc(100% - 64px));
  margin: 0 auto;
  padding: 90px 0 0;
}

.home-hero {
  margin: 0;
}

.home-hero img,
.about-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero {
  margin: 48px 0 0;
}

.page-head:has(.about-hero) + .hk-main .section-intro {
  padding-top: 64px;
}

.page-head__en {
  margin: 0 0 14px;
  font-family: var(--hk-mincho);
  font-size: 14px;
  letter-spacing: .16em;
}

.page-head__jp {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  letter-spacing: .04em;
  font-weight: 400;
}

.page-head__lead {
  margin: 34px 0 0;
  max-width: 760px;
  font-family: var(--hk-mincho);
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 1.9;
  letter-spacing: .04em;
  font-weight: 400;
}

/* =========================
   MAIN / SECTIONS
========================= */

.hk-main {
  width: 100%;
  background: var(--hk-paper);
}

.section {
  width: min(var(--hk-max), calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
  border-top: 1px solid var(--hk-rule);
}

.section-intro {
  border-top: 0;
  padding-top: 140px;
}

.text-column {
  width: min(760px, 100%);
}

.lead {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: clamp(15px, 1.7vw, 22px);
  line-height: 2;
  letter-spacing: .05em;
  font-weight: 400;
}

/* intro セクション：左に画像・右にテキスト＋リンク */
.intro-profile {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 80px;
}

.intro-profile__media img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-profile__body {
  align-self: center;
}

.intro-profile__text {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 2.15;
  letter-spacing: .05em;
  font-weight: 400;
}

.intro-profile .link-row {
  margin-top: 40px;
}

.section-body {
  margin-top: 48px;
  max-width: 760px;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .04em;
}

.link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
}

.link-row--start {
  justify-content: flex-start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--hk-rule);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .04em;
  transition: opacity .25s ease, gap .25s ease;
}

.text-link:hover {
  opacity: .55;
  gap: 1em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 64px;
}

.heading-jp {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: clamp(21px, 2.6vw, 33px);
  line-height: 1.3;
  letter-spacing: .04em;
  font-weight: 400;
}

.heading-en {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: 15px;
  letter-spacing: .12em;
  font-weight: 400;
}

.scene-intro {
  margin: 0 0 42px;
  font-family: var(--hk-mincho);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.8;
  letter-spacing: .04em;
  font-weight: 400;
}

.scene-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.scene-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hk-rule);
}

.scene-slideshow {
  width: 100%;
  position: sticky;
  top: 88px;
  z-index: 20;
  background: var(--hk-paper);
}

.scene-slideshow__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--hk-rule);
  background: var(--hk-paper);
  overflow: hidden;
}

.scene-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.scene-slideshow__slide.is-active {
  opacity: 1;
}

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

.scene-slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.scene-slideshow__dots li {
  width: 6px;
  height: 6px;
  border: 1px solid var(--hk-rule);
  border-radius: 50%;
  background: transparent;
}

.scene-slideshow__dots li.is-active {
  background: var(--hk-ink);
}

.scene-list li {
  position: relative;
  padding: 24px 0 24px 28px;
  border-bottom: 1px solid var(--hk-rule);
  font-family: var(--hk-mincho);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .03em;
}

#voices .scene-list {
  border-top: none;
}

#voices .scene-list li {
  border-bottom: none;
}

.scene-list li::before {
  content: "・";
  position: absolute;
  top: 22px;
  left: 0;
}

.service-description {
  max-width: 760px;
  margin: 0;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .04em;
}

.service-description + .service-description {
  margin-top: 1.6em;
}

/* =========================
   FAQ / PROJECT LIST
========================= */

.faq-placeholder {
  margin-top: 0;
  border-top: 1px solid var(--hk-rule);
}

.faq-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hk-rule);
}

#faq .faq-placeholder,
#projects .faq-placeholder {
  border-top: none;
}

#faq .faq-row,
#projects .faq-row {
  border-bottom: none;
}

.faq-mark {
  font-family: var(--hk-mincho);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--hk-muted);
  line-height: 1.9;
}

.faq-body {
  margin: 0;
}

.faq-title {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  letter-spacing: .03em;
  font-weight: 400;
}

.faq-title a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}

.faq-title a:hover {
  border-bottom-color: var(--hk-rule);
}

.faq-text {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: .03em;
  color: var(--hk-muted);
}

.faq-text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--hk-rule);
}

/* =========================
   NEWS LIST
========================= */

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: none;
}

.news-item {
  border-bottom: none;
}

.news-item__link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 26px 0;
  text-decoration: none;
  transition: opacity .25s ease;
}

a.news-item__link:hover {
  opacity: .55;
}

.news-item__date {
  font-family: var(--hk-mincho);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--hk-muted);
  white-space: nowrap;
}

.news-item__title {
  margin: 0;
  font-family: var(--hk-mincho);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.7;
  letter-spacing: .03em;
  font-weight: 400;
}

/* =========================
   PROSE (about body)
========================= */

.prose {
  max-width: 760px;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .04em;
}

.prose > * {
  margin: 0 0 1.6em;
}

.prose h3 {
  margin: 2.6em 0 .8em;
  font-family: var(--hk-mincho);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  letter-spacing: .04em;
  font-weight: 400;
}

.prose h4 {
  margin: 2em 0 .6em;
  font-family: var(--hk-mincho);
  font-size: 16px;
  letter-spacing: .04em;
  font-weight: 400;
}

.prose ul {
  padding-left: 0;
  list-style: none;
}

.prose ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: .5em;
}

.prose ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: .2em;
}

.prose img,
.prose .wp-block-image img,
.prose figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

.prose figure {
  margin: 2em 0;
}

.prose figcaption {
  margin-top: .6em;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--hk-muted);
}

/* =========================
   CONTACT
========================= */

.contact-form {
  max-width: 640px;
  margin-top: 8px;
}

.contact-field {
  margin-bottom: 40px;
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--hk-mincho);
  font-size: 14px;
  letter-spacing: .08em;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--hk-rule);
  background: transparent;
  font-family: var(--hk-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--hk-ink);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-bottom-color: var(--hk-ink);
}

.contact-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin-top: 8px;
  padding: 14px 40px;
  border: 1px solid var(--hk-rule);
  background: var(--hk-paper);
  color: var(--hk-ink);
  font-family: var(--hk-mincho);
  font-size: 15px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.contact-submit:hover {
  background: var(--hk-ink);
  color: var(--hk-paper);
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7-form p {
  margin: 0 0 40px;
}

.contact-form .wpcf7-form p:has(.wpcf7-submit),
.contact-form .contact-actions {
  margin: 8px 0 0;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="url"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--hk-rule);
  background: transparent;
  font-family: var(--hk-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--hk-ink);
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus {
  outline: none;
  border-bottom-color: var(--hk-ink);
}

.contact-form .wpcf7-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form .wpcf7-form label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--hk-mincho);
  font-size: 14px;
  letter-spacing: .08em;
}

.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin-top: 8px;
  padding: 14px 40px;
  border: 1px solid var(--hk-rule);
  background: var(--hk-paper);
  color: var(--hk-ink);
  font-family: var(--hk-mincho);
  font-size: 15px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.contact-form .wpcf7-submit:hover {
  background: var(--hk-ink);
  color: var(--hk-paper);
}

.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--hk-muted);
}

.contact-form .wpcf7-spinner {
  margin-left: 12px;
}

/* =========================
   FOOTER
========================= */

.footer {
  width: min(var(--hk-max), calc(100% - 64px));
  margin: 0 auto;
  padding: 70px 0 40px;
  font-size: 11px;
  letter-spacing: .08em;
  border-top: 1px solid var(--hk-rule);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer--plain {
  border-top: 0;
}

.footer__nav {
  display: flex;
  gap: 22px;
}

.footer__nav a {
  text-decoration: none;
}

/* =========================
   APPLY MODAL
========================= */

.hakaru-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hakaru-modal[hidden] {
  display: none;
}

.hakaru-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.hakaru-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--hk-paper);
  border: 1px solid var(--hk-rule);
  padding: 52px 44px 48px;
}

.hakaru-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--hk-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.hakaru-modal__en {
  margin: 0 0 10px;
  font-family: var(--hk-mincho);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--hk-muted);
}

.hakaru-modal__title {
  margin: 0 0 14px;
  font-family: var(--hk-mincho);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  letter-spacing: .04em;
  font-weight: 400;
}

.hakaru-modal__lead {
  margin: 0 0 34px;
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--hk-muted);
}

.hakaru-modal__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .04em;
}

body.hakaru-modal-open {
  overflow: hidden;
}

/* CF7 のメッセージ表記を最小限に整える */
.wpcf7 fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7 .wpcf7-response-output:empty {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7 .wpcf7-response-output {
  margin: 1.2em 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  line-height: 1.7;
}

.hakaru-modal__form .contact-actions {
  margin-top: 8px;
}

.hakaru-modal__form .hakaru-format {
  margin: 0 0 72px;
}

.hakaru-format legend.contact-label {
  display: block;
  float: none;
  width: 100%;
  padding: 0;
}

.hakaru-modal__form .wpcf7-radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  margin-top: 4px;
}

.hakaru-modal__form .wpcf7-list-item {
  display: flex;
  margin: 0;
}

.hakaru-modal__form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: .04em;
  cursor: pointer;
}

.hakaru-modal__form .wpcf7-list-item input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--hk-ink);
  flex-shrink: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {
  .site-nav,
  .page-head,
  .section,
  .footer {
    width: calc(100% - 44px);
  }

  .site-nav {
    padding: 18px 0 14px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .site-nav__brand {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: .04em;
  }

  .site-nav__right {
    gap: 14px;
  }

  .site-nav__menu {
    gap: 16px;
  }

  .site-nav__hakaru {
    padding: 7px 12px;
    letter-spacing: .08em;
  }

  .hakaru-apply-cta {
    font-size: 15px;
    padding: 14px 28px;
  }

  .brand {
    top: 24px;
    left: 22px;
  }

  .hero-copy {
    bottom: 15px;
    width: calc(100% - 44px);
    text-align: left;
  }

  .section {
    padding: 84px 0;
  }

  .section-intro {
    padding-top: 40px;
  }

  .intro-profile {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .intro-profile__media img {
    width: 100%;
    max-width: 360px;
  }

  .page-head {
    width: calc(100% - 44px);
    padding-top: 40px;
  }

  .lead {
    font-size: 19px;
    line-height: 2;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 46px;
  }

  .heading-en {
    font-size: 13px;
  }

  .scene-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scene-slideshow {
    top: 64px;
    z-index: 20;
    max-width: none;
    padding-bottom: 16px;
  }

  .scene-slideshow::before {
    content: "";
    position: absolute;
    left: -24px;
    right: -24px;
    top: -80px;
    height: 80px;
    background: var(--hk-paper);
    pointer-events: none;
  }

  .faq-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-item__link {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .link-row {
    margin-top: 42px;
  }

  .hakaru-modal {
    padding: 16px;
  }

  .hakaru-modal__dialog {
    padding: 44px 24px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .node {
    will-change: auto;
  }
}
