*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #3A342F;
  background: #FFFDF8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.shell {
  display: flex;
  min-height: 100vh;
  background: #FFFDF8;
}

.main {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  padding: 44px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}
@media (max-width: 1023px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px rgba(58, 36, 30, 0.15);
  }
  .sidebar.is-open {
    transform: translateX(0);
  }
}
.sidebar__logo a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.sidebar__logo-image {
  width: 140px;
  height: auto;
}
.sidebar__company {
  display: block;
  margin-top: 12px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #111;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 0 12px;
}
.sidebar__nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar__nav-item .chip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__nav-item .chip svg {
  width: 16px;
  height: 16px;
  stroke: #B9573A;
  transition: stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__nav-item .label {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #3A342F;
}
.sidebar__nav-item:hover .chip {
  background: #B9573A;
}
.sidebar__nav-item:hover .chip svg {
  stroke: #fff;
}
.sidebar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 56px;
  background: #B9573A;
  color: #fff;
  justify-content: center;
}
.sidebar__cta:hover {
  background: #7E3425;
}
.sidebar__cta .chip {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sidebar__cta .chip svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.sidebar__small-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 44px;
}
.sidebar__small-row a {
  border-radius: 999px;
  background: #B9573A;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 12px;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__small-row a:hover {
  background: #7E3425;
}
.sidebar__small-row a svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.sidebar__divider {
  height: 1px;
  background: #EDE2DA;
}
.sidebar__store-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sidebar__store-info .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar__store-info .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #B9573A;
}
.sidebar__store-info .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 5px;
  color: #3A342F;
  text-transform: uppercase;
}
.sidebar__store-info .body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.6;
  color: #B9573A;
  text-align: center;
}

.page-hero {
  position: relative;
  padding: 88px 80px 56px;
  background: linear-gradient(180deg, #FFFDF8 0%, #fff 100%);
  border-bottom: 1px solid #E9DDD4;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-hero {
    padding: 64px 32px 40px;
  }
}
@media (max-width: 479px) {
  .page-hero {
    padding: 48px 20px 32px;
  }
}
.page-hero--has-bg {
  padding: 120px 80px 72px;
  color: #fff;
  border-bottom: none;
  background: #2F211B;
}
@media (max-width: 767px) {
  .page-hero--has-bg {
    padding: 88px 32px 48px;
  }
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 36, 30, 0.6) 0%, rgba(58, 36, 30, 0.85) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-hero__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 6px;
  color: #B9573A;
}
.page-hero--has-bg .page-hero__eye {
  color: #D39424;
}
.page-hero__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: #3A342F;
}
.page-hero--has-bg .page-hero__title {
  color: #fff;
}
@media (max-width: 767px) {
  .page-hero__title {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .page-hero__title {
    font-size: 24px;
  }
}
.page-hero__sub {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  color: #8F8177;
  max-width: 680px;
}
.page-hero--has-bg .page-hero__sub {
  color: rgba(255, 255, 255, 0.7);
}

.placeholder {
  padding: 80px 80px 120px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .placeholder {
    padding: 60px 32px 96px;
  }
}
@media (max-width: 479px) {
  .placeholder {
    padding: 48px 20px 80px;
  }
}
.placeholder__note {
  background: #FFF0E6;
  border: 1px dashed #B9573A;
  padding: 32px;
  border-radius: 16px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #B9573A;
  line-height: 1.9;
  text-align: center;
}

.section {
  padding: 96px 80px;
}
@media (max-width: 767px) {
  .section {
    padding: 72px 32px;
  }
}
@media (max-width: 479px) {
  .section {
    padding: 56px 20px;
  }
}
.section--paper {
  background: #FFFDF8;
}
.section--white {
  background: #fff;
}
.section--slate {
  background: linear-gradient(180deg, #2F211B 0%, #3B2A23 100%);
  color: #fff;
}
.section--paper-blue {
  background: #FFF0E6;
}
.section__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.lead-block {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}
.lead-block__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 6px;
  color: #B9573A;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.lead-block__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.4;
  color: #3A342F;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .lead-block__title {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .lead-block__title {
    font-size: 22px;
  }
}
.section--slate .lead-block__title {
  color: #fff;
}
.lead-block__body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  color: #8F8177;
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.section--slate .lead-block__body {
  color: rgba(255, 255, 255, 0.7);
}
.lead-block__body--left {
  text-align: left;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}
.feature-list__item {
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.feature-list__icon svg {
  width: 26px;
  height: 26px;
  stroke: #B9573A;
}
.feature-list__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  color: #3A342F;
}
.feature-list__body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  color: #8F8177;
}

.diff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1023px) {
  .diff-list {
    grid-template-columns: 1fr;
  }
}
.diff-list__item {
  padding: 28px 4px;
  border-top: 2px solid #B9573A;
}
.diff-list__item .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  color: #B9573A;
  display: block;
  margin-bottom: 14px;
}
.diff-list__item .title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  color: #3A342F;
  margin-bottom: 12px;
}
.diff-list__item .body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.95;
  color: #8F8177;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}
.pricing__card {
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pricing__card--featured {
  border-color: #B9573A;
  box-shadow: 0 12px 32px rgba(58, 36, 30, 0.09);
  transform: translateY(-8px);
}
@media (max-width: 1023px) {
  .pricing__card--featured {
    transform: none;
  }
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #B9573A;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}
.pricing__name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #3A342F;
  letter-spacing: 1px;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing__price .amount {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #3A342F;
}
.pricing__price .unit {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #8F8177;
}
.pricing__desc {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.85;
  color: #8F8177;
  padding-bottom: 16px;
  border-bottom: 1px solid #E9DDD4;
}
.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #3A342F;
  line-height: 1.6;
}
.pricing__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334D399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
}
.pricing__list li.is-disabled {
  color: #8F8177;
  text-decoration: line-through;
}
.pricing__list li.is-disabled::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.steps__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #E9DDD4;
}
@media (max-width: 479px) {
  .steps__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.steps__item .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B9573A 0%, #7E3425 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(185, 87, 58, 0.22);
}
.steps__item .body h3 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #3A342F;
  margin-bottom: 10px;
}
@media (max-width: 479px) {
  .steps__item .body h3 {
    font-size: 18px;
  }
}
.steps__item .body p {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.95;
  color: #8F8177;
}
.steps__item .body .meta {
  margin-top: 12px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #FFF0E6;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: #B9573A;
  text-transform: uppercase;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  padding: 0;
}
.faq details summary {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details summary .q-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #B9573A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.faq details summary .q-text {
  flex: 1;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #3A342F;
}
.faq details summary .toggle {
  width: 22px;
  height: 22px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq details summary .toggle svg {
  width: 100%;
  height: 100%;
  stroke: #8F8177;
}
.faq details[open] summary .toggle {
  transform: rotate(45deg);
}
.faq details .a-body {
  padding: 0 28px 24px 72px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.95;
  color: #8F8177;
}
@media (max-width: 479px) {
  .faq details .a-body {
    padding-left: 28px;
  }
}

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .cases {
    grid-template-columns: 1fr;
  }
}
.cases__item {
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cases__item .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #FFF0E6;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  color: #B9573A;
  text-transform: uppercase;
  align-self: flex-start;
}
.cases__item .title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  color: #3A342F;
}
.cases__item .summary {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  color: #8F8177;
}
.cases__item .result {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px dashed #E9DDD4;
}
.cases__item .result .result-item {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.cases__item .result .result-item .lbl {
  font-size: 11px;
  color: #8F8177;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.cases__item .result .result-item .val {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #B9573A;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  overflow: hidden;
  border-radius: 16px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #F7EEE8;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 14px;
}
.compare-table th {
  background: #FFFDF8;
  font-weight: 900;
  color: #3A342F;
  letter-spacing: 2px;
}
.compare-table th:nth-child(2),
.compare-table td.num {
  white-space: nowrap;
}
.compare-table td.num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #B9573A;
}
@media (max-width: 767px) {
  .compare-table {
    font-size: 12px;
  }
  .compare-table th, .compare-table td {
    padding: 12px 10px;
  }
}

.page-cta {
  padding: 80px;
  background: linear-gradient(180deg, #FFF0E6 0%, #fff 100%);
  text-align: center;
  border-top: 1px solid #E9DDD4;
}
@media (max-width: 767px) {
  .page-cta {
    padding: 64px 32px;
  }
}
@media (max-width: 479px) {
  .page-cta {
    padding: 48px 20px;
  }
}
.page-cta__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 6px;
  color: #B9573A;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.page-cta__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.5;
  color: #3A342F;
  margin-bottom: 28px;
}
@media (max-width: 479px) {
  .page-cta__title {
    font-size: 22px;
  }
}
.page-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--ink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #B9573A;
  color: #fff;
  font-size: 14px;
}
.btn--ink:hover {
  background: #7E3425;
}
.btn--ink .arrow {
  background: rgba(255, 255, 255, 0.15);
}
.btn--ink .arrow svg {
  stroke: #fff;
}

.editorial__title,
.banner-image__title,
.page-hero__title,
.pull-quote__text,
.mega-stat__label,
.page-cta__title,
.section-head__title,
.lead-block__title {
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.editorial {
  padding: 100px 80px;
  background: #fff;
}
@media (max-width: 767px) {
  .editorial {
    padding: 80px 32px;
  }
}
@media (max-width: 479px) {
  .editorial {
    padding: 60px 20px;
  }
}
.editorial--paper {
  background: #FFFDF8;
}
.editorial--dark {
  background: #2F211B;
  color: #fff;
}
.editorial--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}
.editorial__row {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1023px) {
  .editorial__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.editorial__row--reverse .editorial__image {
  order: 2;
}
.editorial__row--reverse .editorial__text {
  order: 1;
}
@media (max-width: 1023px) {
  .editorial__row--reverse .editorial__image, .editorial__row--reverse .editorial__text {
    order: initial;
  }
}
.editorial__row--center {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.editorial__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 6px;
  color: #B9573A;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.editorial--dark .editorial__eye {
  color: #D39424;
}
.editorial__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: #3A342F;
  margin-bottom: 20px;
}
.editorial--dark .editorial__title {
  color: #fff;
}
@media (max-width: 767px) {
  .editorial__title {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .editorial__title {
    font-size: 26px;
  }
}
.editorial__title--message {
  font-size: 32px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .editorial__title--message {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .editorial__title--message {
    font-size: 24px;
  }
}
.editorial__body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.95;
  color: #3A342F;
}
.editorial--dark .editorial__body {
  color: rgba(255, 255, 255, 0.7);
}
.editorial__body + .editorial__body {
  margin-top: 18px;
}
.editorial__actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.editorial__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
}
.editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.editorial__image--wide {
  aspect-ratio: 4/3;
}
.editorial__image--square {
  aspect-ratio: 1/1;
}

.consulting-plan-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .consulting-plan-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .consulting-therapist {
    padding-top: 52px;
  }
}
.consulting-therapist__row {
  align-items: start;
}
@media (max-width: 1023px) {
  .consulting-therapist__row .editorial__text {
    order: 1;
  }
  .consulting-therapist__row .editorial__image {
    order: 2;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .consulting-therapist__row {
    gap: 28px;
  }
  .consulting-therapist__row .editorial__image {
    max-width: 320px;
    border-radius: 16px;
  }
  .consulting-therapist__row .editorial__eye {
    letter-spacing: 4px;
    overflow-wrap: anywhere;
  }
}

.consulting-therapist-profile {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #E9DDD4;
}
@media (max-width: 479px) {
  .consulting-therapist-profile {
    margin-top: 28px;
    padding-top: 24px;
  }
}
.consulting-therapist-profile__head {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}
.consulting-therapist-profile__head span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  color: #B9573A;
}
.consulting-therapist-profile__head strong {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 4px;
  color: #3A342F;
  line-height: 1.35;
}
@media (max-width: 479px) {
  .consulting-therapist-profile__head strong {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
.consulting-therapist-profile__head em {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  color: #8F8177;
}
.consulting-therapist-profile__details {
  display: grid;
  gap: 20px;
}
.consulting-therapist-profile__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 13px;
  border-radius: 6px;
  background: #3A342F;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
}
.consulting-therapist-profile__list {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  color: #3A342F;
}
.consulting-therapist-profile__list li {
  position: relative;
  padding-left: 1.1em;
}
.consulting-therapist-profile__list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #B9573A;
}
.consulting-therapist-profile__body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  color: #3A342F;
}

.banner-image.consulting-treatment-banner {
  height: 480px;
}
@media (max-width: 767px) {
  .banner-image.consulting-treatment-banner {
    height: 360px;
  }
}
@media (max-width: 479px) {
  .banner-image.consulting-treatment-banner {
    height: 320px;
  }
}

.banner-image {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner-image {
    height: 340px;
  }
}
@media (max-width: 479px) {
  .banner-image {
    height: 280px;
  }
}
.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 36, 30, 0.05) 0%, rgba(58, 36, 30, 0.55) 100%);
}
.banner-image__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 80px;
  color: #fff;
  z-index: 2;
}
@media (max-width: 767px) {
  .banner-image__content {
    padding: 36px 32px;
  }
}
@media (max-width: 479px) {
  .banner-image__content {
    padding: 28px 20px;
  }
}
.banner-image__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.banner-image__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  max-width: 880px;
}
@media (max-width: 767px) {
  .banner-image__title {
    font-size: 36px;
  }
}
@media (max-width: 479px) {
  .banner-image__title {
    font-size: 28px;
  }
}
.banner-image__sub {
  margin-top: 14px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
}
@media (max-width: 479px) {
  .banner-image__sub {
    font-size: 13px;
  }
}
.banner-image--illustration-crop img {
  object-position: center bottom;
  transform: scale(1.35);
  transform-origin: center bottom;
}
@media (max-width: 479px) {
  .banner-image--illustration-crop img {
    transform: scale(1.65);
  }
}
.banner-image--illustration-crop .banner-image__eye {
  color: rgba(58, 52, 47, 0.7);
}
.banner-image--illustration-crop .banner-image__title {
  color: #3A342F;
}

.mega-stat {
  padding: 120px 80px;
  text-align: center;
  background: #FFFDF8;
}
@media (max-width: 767px) {
  .mega-stat {
    padding: 88px 32px;
  }
}
@media (max-width: 479px) {
  .mega-stat {
    padding: 64px 20px;
  }
}
.mega-stat--dark {
  background: #2F211B;
}
.mega-stat--paper-blue {
  background: #FFF0E6;
}
.mega-stat__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 6px;
  color: #B9573A;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.mega-stat--dark .mega-stat__eye {
  color: #D39424;
}
.mega-stat__number {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 1;
  letter-spacing: -3px;
  background: linear-gradient(180deg, #3A342F 0%, #B9573A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
@media (max-width: 767px) {
  .mega-stat__number {
    font-size: 96px;
    letter-spacing: -2px;
  }
}
@media (max-width: 479px) {
  .mega-stat__number {
    font-size: 72px;
    letter-spacing: -1px;
  }
}
.mega-stat__number small {
  font-size: 0.28em;
  letter-spacing: -1px;
  vertical-align: super;
  -webkit-text-fill-color: #3A342F;
}
.mega-stat--dark .mega-stat__number {
  background: linear-gradient(180deg, #fff 0%, #D39424 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mega-stat--dark .mega-stat__number small {
  -webkit-text-fill-color: #fff;
}
.mega-stat__number--tel {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(185, 87, 58, 0.16);
}
.mega-stat__label {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #3A342F;
  margin-top: 28px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}
.mega-stat--dark .mega-stat__label {
  color: #fff;
}
@media (max-width: 767px) {
  .mega-stat__label {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .mega-stat__label {
    font-size: 18px;
    margin-top: 20px;
  }
}
.mega-stat__sub {
  margin: 16px auto 0;
  max-width: 560px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.95;
  color: #8F8177;
}
.mega-stat--dark .mega-stat__sub {
  color: rgba(255, 255, 255, 0.65);
}

.pull-quote {
  padding: 100px 80px;
  background: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .pull-quote {
    padding: 72px 32px;
  }
}
@media (max-width: 479px) {
  .pull-quote {
    padding: 56px 20px;
  }
}
.pull-quote--paper {
  background: #FFFDF8;
}
.pull-quote__mark {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #B9573A;
  opacity: 0.2;
  display: inline-block;
  margin-bottom: 8px;
}
.pull-quote__text {
  max-width: 880px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: -0.3px;
  color: #3A342F;
}
@media (max-width: 767px) {
  .pull-quote__text {
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  .pull-quote__text {
    font-size: 22px;
  }
}
.pull-quote__text em {
  font-style: normal;
  background: linear-gradient(180deg, #B9573A 0%, #7E3425 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pull-quote__cite {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  color: #8F8177;
}
.pull-quote__cite::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #8F8177;
}

.image-pair {
  padding: 80px 80px;
  background: #fff;
}
@media (max-width: 767px) {
  .image-pair {
    padding: 56px 32px;
  }
}
@media (max-width: 479px) {
  .image-pair {
    padding: 40px 20px;
  }
}
.image-pair--paper {
  background: #FFFDF8;
}
.image-pair__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .image-pair__inner {
    grid-template-columns: 1fr;
  }
}
.image-pair__cell {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}
.image-pair__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-pair__cell:hover img {
  transform: scale(1.04);
}
.image-pair__cell--portrait {
  aspect-ratio: 4/5;
}
.image-pair__caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(58, 36, 30, 0.7);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}

.menu-list {
  padding: 80px 80px;
  background: #fff;
}
@media (max-width: 767px) {
  .menu-list {
    padding: 56px 32px;
  }
}
@media (max-width: 479px) {
  .menu-list {
    padding: 40px 20px;
  }
}
.menu-list__inner {
  max-width: 820px;
  margin: 0 auto;
}
.menu-list__group {
  padding: 28px 0;
  border-bottom: 1px solid #E9DDD4;
}
.menu-list__group:last-child {
  border-bottom: none;
}
.menu-list__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: baseline;
  padding: 12px 0;
}
@media (max-width: 479px) {
  .menu-list__row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .menu-list__row .duration {
    display: none;
  }
}
.menu-list__row .name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3A342F;
}
.menu-list__row .duration {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  color: #8F8177;
}
.menu-list__row .price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #3A342F;
  letter-spacing: -0.3px;
}
.menu-list__row .price small {
  font-size: 11px;
  color: #8F8177;
  margin-left: 4px;
  font-weight: 500;
  letter-spacing: 1px;
}
.menu-list__header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.menu-list__header h3 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #3A342F;
  letter-spacing: -0.3px;
}
.menu-list__header span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  color: #B9573A;
  text-transform: uppercase;
}
.menu-list__note {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.85;
  color: #8F8177;
  margin-top: 12px;
}

.staff-strip {
  padding: 80px 0 56px;
  background: #FFFDF8;
}
@media (max-width: 767px) {
  .staff-strip {
    padding: 56px 0 32px;
  }
}
.staff-strip__head {
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 0 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .staff-strip__head {
    padding: 0 32px;
  }
}
@media (max-width: 479px) {
  .staff-strip__head {
    padding: 0 20px;
  }
}
.staff-strip__track {
  display: flex;
  gap: 24px;
  padding: 0 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.staff-strip__track::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .staff-strip__track {
    padding: 0 32px;
    gap: 16px;
  }
}
@media (max-width: 479px) {
  .staff-strip__track {
    padding: 0 20px;
  }
}
.staff-strip__cell {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .staff-strip__cell {
    flex: 0 0 200px;
  }
}
.staff-strip__cell .portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}
.staff-strip__cell .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.staff-strip__cell .portrait:hover img {
  transform: scale(1.05);
}
.staff-strip__cell .name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #3A342F;
  letter-spacing: -0.3px;
}
.staff-strip__cell .role {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  color: #B9573A;
  text-transform: uppercase;
  margin-top: 4px;
}
.staff-strip__cell .meta {
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #8F8177;
  line-height: 1.7;
}

.store-strip {
  padding: 80px 80px;
  background: #fff;
}
@media (max-width: 767px) {
  .store-strip {
    padding: 56px 32px;
  }
}
@media (max-width: 479px) {
  .store-strip {
    padding: 40px 20px;
  }
}
.store-strip__head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}
.store-strip__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1023px) {
  .store-strip__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.store-strip__cell {
  color: inherit;
  display: block;
}
.store-strip__link {
  color: inherit;
  display: block;
  text-decoration: none;
}
.store-strip__link .img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.store-strip__link .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-strip__link:hover .img img {
  transform: scale(1.04);
}
.store-strip__cell .name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #3A342F;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.store-strip__cell .addr {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #8F8177;
  line-height: 1.7;
  margin-bottom: 10px;
}
.store-strip__cell .store-strip__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  background: #B9573A;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: rgba(185, 87, 58, 0.16);
}
.store-strip__cell .store-strip__button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  stroke: currentColor;
}
.store-strip__cell .store-strip__button:hover {
  background: #7E3425;
  transform: translateY(-1px);
}
@media (max-width: 479px) {
  .store-strip__cell .store-strip__button {
    width: 100%;
  }
}

.voice-strip {
  padding: 80px 80px;
  background: #FFFDF8;
}
@media (max-width: 767px) {
  .voice-strip {
    padding: 56px 32px;
  }
}
@media (max-width: 479px) {
  .voice-strip {
    padding: 40px 20px;
  }
}
.voice-strip__inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.voice-strip__item {
  padding-left: 24px;
  border-left: 2px solid #B9573A;
}
@media (max-width: 479px) {
  .voice-strip__item {
    padding-left: 18px;
  }
}
.voice-strip__item .meta {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  color: #B9573A;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.voice-strip__item .body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.85;
  letter-spacing: -0.2px;
  color: #3A342F;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .voice-strip__item .body {
    font-size: 17px;
  }
}
@media (max-width: 479px) {
  .voice-strip__item .body {
    font-size: 15px;
  }
}
.voice-strip__item .cite {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #8F8177;
  letter-spacing: 1px;
}

.mobile-header {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 40;
    height: 70px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #EDE2DA;
    align-items: center;
    justify-content: space-between;
  }
}
.mobile-header__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.mobile-header__logo {
  width: 92px;
  height: auto;
}
.mobile-header__company {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #111;
}
.mobile-header__toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFF0E6;
}
.mobile-header__toggle svg {
  width: 20px;
  height: 20px;
  stroke: #B9573A;
}

.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 36, 30, 0.55);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
  .backdrop {
    display: block;
    pointer-events: none;
  }
  .backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

.hero {
  position: relative;
  height: 760px;
  width: 100%;
  overflow: hidden;
  background: #F5F0EB;
}
@media (max-width: 767px) {
  .hero {
    height: 600px;
  }
}
@media (max-width: 560px) {
  .hero {
    height: clamp(430px, 118vw, 520px);
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 560px) {
  .hero__bg {
    object-position: 35% center;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.4) 85%, rgba(0, 0, 0, 0.67) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 370px 60px 0 60px;
}
@media (max-width: 767px) {
  .hero__inner {
    padding: 280px 32px 0;
  }
}
@media (max-width: 479px) {
  .hero__inner {
    padding: 220px 20px 0;
  }
}
.hero__title-line1 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: 4px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.27);
}
@media (max-width: 767px) {
  .hero__title-line1 {
    font-size: 32px;
    letter-spacing: 2px;
  }
}
@media (max-width: 479px) {
  .hero__title-line1 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
.hero__title-line2 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 86px;
  letter-spacing: 5px;
  line-height: 1.05;
  color: #fff;
  margin-top: 8px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.27);
}
@media (max-width: 767px) {
  .hero__title-line2 {
    font-size: 56px;
    letter-spacing: 3px;
  }
}
@media (max-width: 479px) {
  .hero__title-line2 {
    font-size: 42px;
    letter-spacing: 2px;
  }
}
.hero__lead {
  margin-top: 40px;
  max-width: 660px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 479px) {
  .hero__lead {
    font-size: 13px;
    margin-top: 24px;
  }
  .hero__lead br {
    display: none;
  }
}
.hero__ctas {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.6);
}
.hero__scroll svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.6);
  animation: scroll-bounce 1.6s infinite;
}
.hero__en-mark {
  position: absolute;
  right: 56px;
  bottom: 48px;
  width: 260px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
@media (max-width: 767px) {
  .hero__en-mark {
    width: 200px;
    right: 32px;
    bottom: 36px;
  }
}
@media (max-width: 479px) {
  .hero__en-mark {
    width: 150px;
    right: 20px;
    bottom: 24px;
  }
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 48px;
  font-size: 14px;
  letter-spacing: 1px;
}
.btn .arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
}
.btn .arrow svg {
  width: 14px;
  height: 14px;
}
.btn--white {
  background: #fff;
  color: #3A342F;
}
.btn--white:hover {
  background: #FFFDF8;
}
.btn--white .arrow {
  background: rgba(58, 52, 47, 0.08);
}
.btn--white .arrow svg {
  stroke: #3A342F;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--ghost .arrow {
  background: rgba(255, 255, 255, 0.15);
}
.btn--ghost .arrow svg {
  stroke: #fff;
}
.btn--coral {
  background: #E06E54;
  color: #fff;
}
.btn--coral:hover {
  opacity: 0.9;
}
.btn--coral .arrow {
  background: rgba(255, 255, 255, 0.15);
}
.btn--coral .arrow svg {
  stroke: #fff;
}
.btn--blue-grad {
  background: linear-gradient(180deg, #B9573A 0%, #7E3425 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(185, 87, 58, 0.22);
}
.btn--blue-grad:hover {
  box-shadow: 0 12px 32px rgba(58, 36, 30, 0.09);
}
.btn--blue-grad .arrow {
  background: rgba(255, 255, 255, 0.15);
}
.btn--blue-grad .arrow svg {
  stroke: #fff;
}
.btn--ink {
  background: #B9573A;
  color: #fff;
}
.btn--ink:hover {
  background: #7E3425;
}
.btn--ink .arrow {
  background: rgba(255, 255, 255, 0.15);
}
.btn--ink .arrow svg {
  stroke: #fff;
}
@media (max-width: 479px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.topics {
  background: #fff;
  padding: 36px 60px 34px;
  border-bottom: 1px solid #E9DDD4;
  display: flex;
  align-items: center;
  gap: 56px;
}
@media (max-width: 767px) {
  .topics {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px;
  }
}
@media (max-width: 479px) {
  .topics {
    padding: 24px 20px;
  }
}
.topics__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 6px;
  color: #B9573A;
  flex-shrink: 0;
}
@media (max-width: 479px) {
  .topics__title {
    font-size: 22px;
    letter-spacing: 4px;
  }
}
.topics__list {
  flex: 1;
  width: 100%;
  padding-left: 24px;
  border-left: 2px solid #B9573A;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 560px) {
  .topics__list {
    padding-left: 18px;
  }
}
.topics__list li {
  display: flex;
  gap: 32px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #3A342F;
  letter-spacing: 0.3px;
}
@media (max-width: 560px) {
  .topics__list li {
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 479px) {
  .topics__list li {
    flex-direction: column;
    gap: 4px;
  }
}
.topics__list .date {
  font-family: "Space Grotesk", sans-serif;
  color: #B9573A;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.section-head__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 8px;
  color: #B9573A;
  text-transform: uppercase;
}
.section-head__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  color: #3A342F;
}
@media (max-width: 767px) {
  .section-head__title {
    font-size: 36px;
  }
}
@media (max-width: 479px) {
  .section-head__title {
    font-size: 28px;
  }
}
.section-head__rule {
  width: 100px;
  height: 3px;
  background: #D39424;
  border-radius: 2px;
}
.section-head__sub {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #8F8177;
}

.u-nowrap {
  white-space: nowrap;
}

.u-mobile-break {
  display: none;
}

@media (max-width: 479px) {
  .u-mobile-break {
    display: block;
  }
}
@media (max-width: 560px) {
  .section-head__eye,
  .kenkou__eye,
  .final-cta__eye,
  .numbers__eyebrow,
  .pillar-card__num,
  .pillar-card__sub {
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.45;
  }
}
.pillars {
  background: #FFFDF8;
  padding: 100px 80px;
}
@media (max-width: 767px) {
  .pillars {
    padding: 80px 32px;
  }
}
@media (max-width: 479px) {
  .pillars {
    padding: 60px 20px;
  }
}
.pillars__head {
  margin-bottom: 64px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .pillars__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .pillars__grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar-card:hover {
  box-shadow: 0 12px 32px rgba(58, 36, 30, 0.09);
  transform: translateY(-4px);
}
.pillar-card__num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.4px;
  color: #B9573A;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.pillar-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: #B9573A;
}
.pillar-card__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 27px;
  line-height: 1.25;
  color: #3A342F;
  white-space: pre-line;
}
.pillar-card__sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 5px;
  color: #B9573A;
  text-transform: uppercase;
}
.pillar-card__desc {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: #3A342F;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .pillar-card {
    padding-left: 26px;
    padding-right: 26px;
  }
  .pillar-card__num {
    font-size: 12px;
    letter-spacing: 1.6px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.stores {
  background: #fff;
  padding: 100px 80px;
}
@media (max-width: 767px) {
  .stores {
    padding: 80px 32px;
  }
}
@media (max-width: 479px) {
  .stores {
    padding: 60px 20px;
  }
}
.stores__head {
  margin-bottom: 48px;
}
.stores__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1023px) {
  .stores__grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background: #fff;
  border: 1px solid #E9DDD4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(58, 36, 30, 0.05);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-card:hover {
  box-shadow: 0 12px 32px rgba(58, 36, 30, 0.09);
}
.store-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #B9573A;
}
.store-card__name {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #3A342F;
}
.store-card__tel-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-card__tel-row .chip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
}
.store-card__tel-row .chip svg {
  width: 16px;
  height: 16px;
  stroke: #B9573A;
}
.store-card__tel-row .tel {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: #B9573A;
}
@media (max-width: 479px) {
  .store-card__tel-row .tel {
    font-size: 26px;
  }
}
.store-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #3A342F;
}
.store-card__meta .chip {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFF0E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
}
.store-card__meta .chip svg {
  width: 12px;
  height: 12px;
  stroke: #B9573A;
}

.kenkou {
  width: 100%;
  padding: 128px 50px;
  background: linear-gradient(180deg, #2F211B 0%, #3B2A23 100%);
}
@media (max-width: 767px) {
  .kenkou {
    padding: 80px 32px;
  }
}
@media (max-width: 479px) {
  .kenkou {
    padding: 64px 20px;
  }
}
.kenkou__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1023px) {
  .kenkou__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.kenkou__image {
  width: 560px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .kenkou__image {
    width: 100%;
    max-width: 560px;
  }
}
.kenkou__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kenkou__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.kenkou__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 8px;
  color: #D39424;
  text-transform: uppercase;
}
.kenkou__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.4;
  color: #fff;
}
@media (max-width: 767px) {
  .kenkou__title {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .kenkou__title {
    font-size: 26px;
  }
}
.kenkou__rule {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.kenkou__lead {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.55);
}
.kenkou__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kenkou__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}
.kenkou__bullets li .chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.kenkou__bullets li .chip svg {
  width: 14px;
  height: 14px;
  stroke: #D39424;
}
.kenkou__ctas {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.fc {
  background: #FFF7F2;
  padding: 110px 80px 88px;
}
@media (max-width: 767px) {
  .fc {
    padding: 80px 32px 64px;
  }
}
@media (max-width: 479px) {
  .fc {
    padding: 60px 20px 48px;
  }
}
.fc__head {
  margin-bottom: 56px;
}
.fc .section-head__title {
  font-size: 36px;
}
@media (max-width: 479px) {
  .fc .section-head__title {
    font-size: 26px;
  }
}
.fc .section-head__rule {
  width: 48px;
  height: 2px;
  background: #B9573A;
}
.fc__body {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 48px;
}
@media (max-width: 1023px) {
  .fc__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.fc__map-card img {
  width: 100%;
  height: auto;
  display: block;
}
.fc__data {
  display: flex;
  flex-direction: column;
}
.fc__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid #F7EEE8;
}
@media (max-width: 479px) {
  .fc__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 0;
  }
}
.fc__row .label {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  color: #8F8177;
}
.fc__row .value {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  min-width: 0;
}
@media (max-width: 479px) {
  .fc__row .value {
    width: 100%;
    flex-wrap: wrap;
  }
}
.fc__row .value .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: #3A342F;
}
@media (max-width: 479px) {
  .fc__row .value .num {
    font-size: 30px;
  }
}
.fc__row .value .num--coral {
  color: #E06E54;
}
.fc__row .value .unit {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #8F8177;
  padding-bottom: 6px;
}
@media (max-width: 479px) {
  .fc__row .value .unit {
    padding-bottom: 3px;
    line-height: 1.35;
  }
}
.fc__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  background: linear-gradient(180deg, #B9573A 0%, #7E3425 100%);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(185, 87, 58, 0.22);
}
.fc__cta .arrow {
  background: rgba(255, 255, 255, 0.15);
}
.fc__cta .arrow svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.numbers {
  width: 100%;
  background: #7E3425;
  padding: 100px 120px 88px;
}
@media (max-width: 1023px) {
  .numbers {
    padding: 80px 60px;
  }
}
@media (max-width: 767px) {
  .numbers {
    padding: 64px 32px;
  }
}
@media (max-width: 479px) {
  .numbers {
    padding: 48px 20px;
  }
}
.numbers__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 8px;
  color: #D39424;
  text-transform: uppercase;
}
.numbers__eyebrow .rule {
  width: 28px;
  height: 1px;
  background: #D39424;
}
.numbers__eyebrow .year {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  color: #D39424;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .numbers__grid {
    grid-template-columns: 1fr;
  }
}
.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.numbers__item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .numbers__item:nth-child(2n) {
    border-right: none;
  }
  .numbers__item:nth-child(1), .numbers__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 479px) {
  .numbers__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .numbers__item:last-child {
    border-bottom: none;
  }
}
.numbers__item .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 0.9;
  color: #fff;
}
@media (max-width: 767px) {
  .numbers__item .num {
    font-size: 96px;
  }
}
@media (max-width: 479px) {
  .numbers__item .num {
    font-size: 80px;
  }
}
.numbers__item .num--yellow {
  color: #D39424;
}
.numbers__item .num--small {
  font-size: 110px;
}
@media (max-width: 767px) {
  .numbers__item .num--small {
    font-size: 80px;
  }
}
@media (max-width: 479px) {
  .numbers__item .num--small {
    font-size: 64px;
  }
}
.numbers__item .label {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
}
.numbers__caption {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.numbers__caption .rule {
  width: 40px;
  height: 1px;
  background: #D39424;
}
.numbers__caption p {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}
@media (max-width: 479px) {
  .numbers__caption .rule {
    display: none;
  }
  .numbers__caption p {
    letter-spacing: 1px;
    line-height: 1.8;
  }
}

.final-cta {
  width: 100%;
  background: linear-gradient(180deg, #2F211B 0%, #3B2A23 100%);
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .final-cta {
    padding: 64px 32px;
    gap: 24px;
  }
}
@media (max-width: 479px) {
  .final-cta {
    padding: 48px 20px;
    gap: 20px;
  }
}
.final-cta__line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.final-cta__eye {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 8px;
  color: #D39424;
  text-transform: uppercase;
}
.final-cta__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}
@media (max-width: 479px) {
  .final-cta__title {
    font-size: 22px;
  }
}
.final-cta__btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta__btns .btn {
  white-space: nowrap;
}

.footer {
  background: #FFCD77;
  color: #3A342F;
  padding: 88px 80px 40px;
}
@media (max-width: 767px) {
  .footer {
    padding: 64px 32px 32px;
  }
}
@media (max-width: 479px) {
  .footer {
    padding: 48px 20px 28px;
  }
}
.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.footer__brand-block h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -1px;
  line-height: 1.05;
}
@media (max-width: 767px) {
  .footer__brand-block h2 {
    font-size: 44px;
  }
}
@media (max-width: 479px) {
  .footer__brand-block h2 {
    font-size: 30px;
  }
}
.footer__brand-block p {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(58, 52, 47, 0.58);
}
.footer__divider {
  height: 1px;
  background: rgba(58, 52, 47, 0.1);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) minmax(190px, 0.85fr) minmax(120px, 0.6fr) minmax(120px, 0.6fr);
  gap: 40px;
  padding: 56px 0;
}
@media (max-width: 1279px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 479px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__brand-col .footer__logo-image {
  width: 150px;
  height: auto;
  opacity: 0.9;
}
.footer__brand-col .company {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: rgba(58, 52, 47, 0.74);
}
.footer__brand-col .addr {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(58, 52, 47, 0.58);
}
.footer__brand-col .tel-box {
  padding-top: 16px;
  border-top: 1px solid rgba(58, 52, 47, 0.14);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__brand-col .tel-box .lbl {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(58, 52, 47, 0.54);
  text-transform: uppercase;
}
.footer__brand-col .tel-box .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(58, 52, 47, 0.86);
}
.footer__brand-col .tel-box .num--yellow {
  color: #7E3425;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(58, 52, 47, 0.36);
  text-transform: uppercase;
}
.footer__col a {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(58, 52, 47, 0.66);
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__col a:hover {
  color: #7E3425;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(58, 52, 47, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(58, 52, 47, 0.44);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}