/* ==========================================================================
   Zero Next One BASE NIIKAPPU
   top-sec02.css
   Section 02 smartphone comp override
   --------------------------------------------------------------------------
   Section 02 / Brand Message
   - Full background image through HTML picture
   - Wolf mark image
   - HTML text / points / CTA
   - Smartphone comp first
   - Phase 2 final UI-safe refinement
   - Marker: 20260609-sec02-ui-safe-02
   --------------------------------------------------------------------------
   Header / logo / hamburger are intentionally outside this pass.
   ========================================================================== */

@media (max-width: 767px) {
  .page-top .p-brand-message {
    position: relative;
    width: 100%;
    min-height: max(100svh, 218vw);
    min-height: max(100dvh, 218vw);
    padding: clamp(104px, 26.2vw, 122px) 30px clamp(300px, 72vw, 348px);
    color: #1f1c16;
    background: #f7efdc;
    overflow: hidden;
    isolation: isolate;
  }

  .page-top .p-brand-message__paper,
  .page-top .p-brand-message__visual,
  .page-top .p-brand-message__wolf {
    display: none !important;
  }

  .page-top .p-brand-message__bg,
  .page-top .p-brand-message__wolf-mark {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .page-top .p-brand-message__bg {
    z-index: -5;
  }

  .page-top .p-brand-message__bg-picture,
  .page-top .p-brand-message__bg-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .page-top .p-brand-message__bg-picture {
    transform: none;
    transform-origin: center top;
  }

  .page-top .p-brand-message__bg-img {
    object-fit: cover;
    object-position: center bottom;
    opacity: 1;
  }

  .page-top .p-brand-message__wolf-mark {
    z-index: -3;
    display: grid;
    justify-items: center;
    align-items: start;
    padding-top: clamp(42px, 9.8vw, 56px);
  }

  .page-top .p-brand-message__wolf-picture {
    display: block;
  }

  .page-top .p-brand-message__wolf-img {
    display: block;
    width: clamp(172px, 47vw, 226px);
    height: auto;
    opacity: 0.22;
    mix-blend-mode: multiply;
  }

  .page-top .p-brand-message__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
  }

  .page-top .p-brand-message__content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .page-top .p-brand-message__kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 31px;
    color: #191712;
    font-family: var(--font-label);
    font-size: clamp(0.74rem, 2.92vw, 0.86rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .page-top .p-brand-message__kicker::after {
    content: "";
    display: inline-block;
    width: 54px;
    height: 1px;
    margin-top: 2px;
    background: currentColor;
    opacity: 0.72;
  }

  .page-top .p-brand-message__kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 13px);
    width: 28px;
    height: 3px;
    background: #8b713d;
  }

  .page-top .p-brand-message__title {
    margin: 0;
    color: #15130f;
    font-family: var(--font-heading);
    font-size: clamp(1.82rem, 7.18vw, 2.25rem);
    font-weight: 700;
    line-height: 1.46;
    letter-spacing: 0.045em;
  }

  .page-top .p-brand-message__title span {
    display: inline-block;
    white-space: nowrap;
  }

  .page-top .p-brand-message__subtitle {
    margin: clamp(18px, 4.4vw, 24px) 0 0;
    color: #80683a;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3.92vw, 1.2rem);
    font-weight: 700;
    line-height: 1.72;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .page-top .p-brand-message__lead {
    margin: clamp(26px, 6.3vw, 34px) 0 0;
    color: #211f1a;
    font-family: var(--font-body);
    font-size: clamp(0.76rem, 2.96vw, 0.88rem);
    font-weight: 500;
    line-height: 1.76;
    letter-spacing: 0.032em;
  }

  .page-top .p-brand-message__points {
    position: relative;
    z-index: 3;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 368px);
    margin: clamp(24px, 5.6vw, 32px) auto 0;
    padding: 7px 0;
    border: 0;
    list-style: none;
  }

  .page-top .p-brand-message__points::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -13px;
    right: -13px;
    top: -9px;
    bottom: -9px;
    pointer-events: none;
    border-radius: 18px;
    background:
      radial-gradient(
        ellipse at 50% 50%,
        rgba(250, 244, 225, 0.72) 0%,
        rgba(250, 244, 225, 0.5) 48%,
        rgba(250, 244, 225, 0.2) 72%,
        rgba(250, 244, 225, 0) 100%
      );
    filter: blur(1.4px);
  }

  .page-top .p-brand-message__point {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    min-width: 0;
    padding: 0 7px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
  }

  .page-top .p-brand-message__point + .p-brand-message__point {
    border-left: 1px solid rgba(80, 62, 34, 0.34);
  }

  .page-top .p-brand-message__point-icon,
  .page-top .p-brand-message__point-icon-picture {
    display: block;
    width: clamp(25px, 6.8vw, 32px);
    height: clamp(25px, 6.8vw, 32px);
    flex: 0 0 auto;
  }

  .page-top .p-brand-message__point-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .page-top .p-brand-message__point-body {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .page-top .p-brand-message__point-en {
    color: #201c15;
    font-family: var(--font-label);
    font-size: clamp(0.68rem, 2.68vw, 0.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.045em;
    white-space: nowrap;
  }

  .page-top .p-brand-message__point-ja {
    color: #201c15;
    font-family: var(--font-ui);
    font-size: clamp(0.56rem, 2.2vw, 0.66rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.012em;
    white-space: nowrap;
  }

  .page-top .p-brand-message__actions {
    position: relative;
    z-index: 4;
    width: min(100%, 340px);
    margin: clamp(24px, 5.8vw, 34px) auto 0;
    padding-inline: 0;
  }

  .page-top .p-brand-message .c-button--brand {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    min-height: clamp(52px, 12.6vw, 60px);
    padding: 0 clamp(20px, 5.4vw, 30px);
    border: 1px solid rgba(99, 78, 46, 0.46);
    border-radius: 8px;
    color: #fffaf0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
      #2e3428;
    box-shadow:
      0 8px 16px rgba(44, 36, 24, 0.17),
      inset 0 0 0 1px rgba(255, 250, 240, 0.08);
    font-family: var(--font-ui);
    font-size: clamp(1rem, 4vw, 1.18rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
  }

  .page-top .p-brand-message .c-button--brand span:first-child {
    justify-self: center;
    transform: translateX(10px);
    white-space: nowrap;
  }

  .page-top .p-brand-message .c-button--brand span[aria-hidden="true"] {
    justify-self: end;
    font-size: 1.22em;
    line-height: 1;
  }

  @supports not (height: 100dvh) {
    .page-top .p-brand-message {
      min-height: max(100vh, 218vw);
    }
  }
}

@media (max-width: 374px) {
  .page-top .p-brand-message {
    min-height: max(100svh, 230vw);
    min-height: max(100dvh, 230vw);
    padding-top: 94px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 296px;
  }

  .page-top .p-brand-message__wolf-mark {
    padding-top: 36px;
  }

  .page-top .p-brand-message__wolf-img {
    width: 170px;
    opacity: 0.2;
  }

  .page-top .p-brand-message__kicker {
    margin-bottom: 28px;
  }

  .page-top .p-brand-message__title {
    font-size: 1.58rem;
    line-height: 1.46;
  }

  .page-top .p-brand-message__subtitle {
    font-size: 0.88rem;
    line-height: 1.72;
    letter-spacing: 0.026em;
  }

  .page-top .p-brand-message__lead {
    margin-top: 22px;
    font-size: 0.68rem;
    line-height: 1.72;
    letter-spacing: 0.018em;
  }

  .page-top .p-brand-message__points {
    width: min(100%, 334px);
    margin-top: 21px;
    padding-block: 7px;
  }

  .page-top .p-brand-message__points::before {
    left: -10px;
    right: -10px;
    top: -8px;
    bottom: -8px;
  }

  .page-top .p-brand-message__point {
    column-gap: 5px;
    padding-inline: 5px;
  }

  .page-top .p-brand-message__point-icon,
  .page-top .p-brand-message__point-icon-picture {
    width: 22px;
    height: 22px;
  }

  .page-top .p-brand-message__point-en {
    font-size: 0.62rem;
  }

  .page-top .p-brand-message__point-ja {
    font-size: 0.5rem;
  }

  .page-top .p-brand-message__actions {
    width: min(100%, 314px);
    margin-top: 22px;
  }

  .page-top .p-brand-message .c-button--brand {
    min-height: 48px;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
  }

  @supports not (height: 100dvh) {
    .page-top .p-brand-message {
      min-height: max(100vh, 230vw);
    }
  }
}

/* --------------------------------------------------------------------------
   Section 02 / PC v3.1 - Editorial Silence
   --------------------------------------------------------------------------
   - Preserve the completed smartphone layout above.
   - Use the existing SP design tokens and artwork.
   - Compose the desktop section as a large editorial spread: copy on the left,
     scenery and the wolf watermark on the right.
   - Treat SPORTS / STAY / NATURE as a quiet index, not cards.
   - Keep the route to Section 03 as a low-intensity editorial link.
   - Header and footer are intentionally outside this file's responsibility.
   - Marker: 20260623-sec02-pc-v3-1-01
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  .page-top .p-brand-message {
    --sec02-heading: var(--color-blue-niikappu);
    --sec02-paper-warm: var(--color-paper-warm);
    --sec02-ink: var(--color-ink);
    --sec02-forest: var(--color-forest-deep);
    --sec02-accent: var(--color-amber-deep);

    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(820px, 92svh, 920px);
    min-height: clamp(820px, 92dvh, 920px);
    padding:
      clamp(104px, 11vw, 136px)
      var(--side-padding)
      clamp(96px, 9vw, 124px);
    color: var(--sec02-ink);
    background: var(--sec02-paper-warm);
    overflow: hidden;
    isolation: isolate;
  }

  .page-top .p-brand-message::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse at 24% 46%,
        rgba(255, 248, 234, 0.94) 0%,
        rgba(250, 243, 227, 0.72) 34%,
        rgba(247, 239, 220, 0.29) 57%,
        rgba(247, 239, 220, 0.055) 75%,
        rgba(247, 239, 220, 0) 88%
      ),
      linear-gradient(
        90deg,
        rgba(247, 239, 220, 0.93) 0%,
        rgba(247, 239, 220, 0.74) 30%,
        rgba(247, 239, 220, 0.36) 51%,
        rgba(247, 239, 220, 0.08) 69%,
        rgba(247, 239, 220, 0) 86%
      ),
      linear-gradient(
        180deg,
        rgba(247, 239, 220, 0.19) 0%,
        rgba(247, 239, 220, 0.012) 33%,
        rgba(239, 228, 207, 0.035) 72%,
        rgba(239, 228, 207, 0.34) 100%
      );
  }

  .page-top .p-brand-message::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: clamp(68px, 8vw, 104px);
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(246, 238, 220, 0),
      rgba(246, 238, 220, 0.28) 46%,
      rgba(246, 238, 220, 0.72) 100%
    );
  }

  .page-top .p-brand-message__paper,
  .page-top .p-brand-message__visual,
  .page-top .p-brand-message__wolf {
    display: none !important;
  }

  .page-top .p-brand-message__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .page-top .p-brand-message__bg-picture,
  .page-top .p-brand-message__bg-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .page-top .p-brand-message__bg-picture {
    transform: none;
    transform-origin: center center;
  }

  .page-top .p-brand-message__bg-img {
    max-width: none;
    object-fit: cover;
    object-position: 64% center;
    opacity: 0.96;
    transform: scale(1.004);
    transform-origin: center center;
  }

  .page-top .p-brand-message__wolf-mark {
    position: absolute;
    top: 42%;
    right: clamp(32px, 7vw, 126px);
    left: auto;
    z-index: 2;
    display: block;
    width: clamp(210px, 27vw, 300px);
    height: auto;
    padding: 0;
    pointer-events: none;
    transform: translateY(-50%) rotate(-1.25deg);
    transform-origin: center center;
  }

  .page-top .p-brand-message__wolf-picture,
  .page-top .p-brand-message__wolf-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .page-top .p-brand-message__wolf-img {
    opacity: 0.075;
    mix-blend-mode: multiply;
    filter: sepia(0.1) saturate(0.82) contrast(0.96);
  }

  .page-top .p-brand-message__inner {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    width: min(var(--pc-visual-max, 1240px), 100%);
    margin: 0 auto;
  }

  .page-top .p-brand-message__content {
    position: relative;
    isolation: isolate;
    width: min(78%, 640px);
    margin: 0;
    padding: 0;
  }

  .page-top .p-brand-message__content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: clamp(-44px, -3.2vw, -24px);
    z-index: -1;
    width: min(calc(100% + 96px), 720px);
    height: calc(100% + clamp(88px, 9vw, 126px));
    pointer-events: none;
    transform: translateY(-50%);
    background: radial-gradient(
      ellipse at 34% 48%,
      rgba(255, 249, 236, 0.62) 0%,
      rgba(252, 245, 230, 0.38) 48%,
      rgba(249, 242, 226, 0.12) 72%,
      rgba(249, 242, 226, 0) 100%
    );
    filter: blur(2.5px);
  }

  .page-top .p-brand-message__kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: clamp(16px, 2vw, 24px);
    margin: 0 0 clamp(31px, 4vw, 42px);
    color: var(--sec02-ink);
    font-family: var(--font-label);
    font-size: clamp(0.72rem, 1.35vw, 0.82rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.21em;
    text-transform: uppercase;
  }

  .page-top .p-brand-message__kicker::after {
    content: "";
    display: inline-block;
    width: clamp(58px, 8vw, 82px);
    height: 1px;
    margin-top: 1px;
    background: currentColor;
    opacity: 0.5;
  }

  .page-top .p-brand-message__kicker::before {
    content: "";
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    width: 29px;
    height: 2px;
    background: var(--sec02-accent);
    opacity: 0.82;
  }

  .page-top .p-brand-message__title {
    width: min(100%, 610px);
    margin: 0;
    color: var(--sec02-heading);
    font-family: var(--font-heading);
    font-size: clamp(2.55rem, 5.1vw, 3.45rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.038em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .page-top .p-brand-message__title span {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }

  .page-top .p-brand-message__subtitle {
    width: min(100%, 48ch);
    margin: clamp(21px, 2.8vw, 29px) 0 0;
    color: var(--sec02-accent);
    font-family: var(--font-heading);
    font-size: clamp(1.04rem, 2.25vw, 1.3rem);
    font-weight: 700;
    line-height: 1.72;
    letter-spacing: 0.032em;
    white-space: normal;
  }

  .page-top .p-brand-message__subtitle span {
    display: inline-block;
    max-width: 100%;
  }

  .page-top .p-brand-message__lead {
    width: min(100%, 45ch);
    max-width: none;
    margin: clamp(25px, 3.2vw, 34px) 0 0;
    color: var(--sec02-ink);
    font-family: var(--font-body);
    font-size: clamp(0.97rem, 1.7vw, 1.06rem);
    font-weight: 500;
    line-height: 1.96;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .page-top .p-brand-message__lead br {
    display: none;
  }

  .page-top .p-brand-message__lead br + br {
    display: block;
    content: "";
    margin-top: 0.72em;
  }

  .page-top .p-brand-message__points {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 590px);
    margin: clamp(32px, 4vw, 42px) 0 0;
    padding: 13px 0;
    border-top: 1px solid rgba(66, 52, 32, 0.18);
    border-bottom: 1px solid rgba(66, 52, 32, 0.16);
    list-style: none;
    isolation: auto;
  }

  .page-top .p-brand-message__points::before {
    content: none;
    display: none;
  }

  .page-top .p-brand-message__point {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(8px, 1.4vw, 13px);
    min-width: 0;
    padding: 0 clamp(9px, 1.5vw, 16px);
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
  }

  .page-top .p-brand-message__point:first-child {
    padding-left: 0;
  }

  .page-top .p-brand-message__point:last-child {
    padding-right: 0;
  }

  .page-top .p-brand-message__point + .p-brand-message__point {
    border-left: 1px solid rgba(66, 52, 32, 0.22);
  }

  .page-top .p-brand-message__point-icon,
  .page-top .p-brand-message__point-icon-picture {
    display: block;
    flex: 0 0 auto;
    width: clamp(31px, 4.55vw, 38px);
    height: clamp(31px, 4.55vw, 38px);
  }

  .page-top .p-brand-message__point-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.88;
    filter: saturate(0.8) contrast(0.98);
  }

  .page-top .p-brand-message__point-body {
    display: grid;
    gap: 5px;
    min-width: 0;
  }

  .page-top .p-brand-message__point-en {
    color: var(--sec02-forest);
    font-family: var(--font-label);
    font-size: clamp(0.72rem, 1.42vw, 0.86rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .page-top .p-brand-message__point-ja {
    color: rgba(31, 28, 22, 0.8);
    font-family: var(--font-ui);
    font-size: clamp(0.68rem, 1.24vw, 0.79rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .page-top .p-brand-message__actions {
    position: relative;
    z-index: 2;
    width: min(100%, 370px);
    margin: clamp(27px, 3.4vw, 36px) 0 0;
    padding: 0;
  }

  .page-top .p-brand-message .c-button--brand {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    min-height: 47px;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid rgba(36, 58, 46, 0.48);
    border-radius: 0;
    color: var(--sec02-forest);
    background: transparent;
    box-shadow: none;
    font-family: var(--font-ui);
    font-size: clamp(0.96rem, 1.66vw, 1.06rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.055em;
    text-decoration: none;
    transform: none;
    overflow: visible;
    transition:
      color 0.28s var(--ease-out-craft),
      border-color 0.28s var(--ease-out-craft);
  }

  .page-top .p-brand-message .c-button--brand::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    pointer-events: none;
    background: var(--sec02-forest);
    transform: scaleX(0.3);
    transform-origin: left center;
    transition: transform 0.34s var(--ease-out-craft);
  }

  .page-top .p-brand-message .c-button--brand span:first-child {
    justify-self: start;
    min-width: 0;
    transform: none;
    white-space: nowrap;
  }

  .page-top .p-brand-message .c-button--brand span[aria-hidden="true"] {
    justify-self: end;
    color: var(--sec02-accent);
    opacity: 0.94;
    font-size: 1.16em;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.28s var(--ease-out-craft);
  }

  @supports not (height: 100dvh) {
    .page-top .p-brand-message {
      min-height: clamp(820px, 92vh, 920px);
    }
  }
}

@media (min-width: 1024px) {
  .page-top .p-brand-message {
    min-height: clamp(780px, 86svh, 900px);
    min-height: clamp(780px, 86dvh, 900px);
    padding:
      clamp(96px, 8.6vw, 124px)
      var(--side-padding)
      clamp(88px, 7.4vw, 112px);
  }

  .page-top .p-brand-message::before {
    background:
      radial-gradient(
        ellipse at 23% 46%,
        rgba(255, 248, 234, 0.92) 0%,
        rgba(250, 243, 227, 0.69) 34%,
        rgba(247, 239, 220, 0.25) 56%,
        rgba(247, 239, 220, 0.035) 73%,
        rgba(247, 239, 220, 0) 86%
      ),
      linear-gradient(
        90deg,
        rgba(247, 239, 220, 0.9) 0%,
        rgba(247, 239, 220, 0.68) 31%,
        rgba(247, 239, 220, 0.29) 50%,
        rgba(247, 239, 220, 0.05) 66%,
        rgba(247, 239, 220, 0) 82%
      ),
      linear-gradient(
        180deg,
        rgba(247, 239, 220, 0.16) 0%,
        rgba(247, 239, 220, 0.006) 34%,
        rgba(239, 228, 207, 0.04) 72%,
        rgba(239, 228, 207, 0.32) 100%
      );
  }

  .page-top .p-brand-message__bg-img {
    object-position: 60% center;
  }

  .page-top .p-brand-message__wolf-mark {
    top: 45%;
    width: clamp(270px, 27vw, 350px);
  }

  .page-top .p-brand-message__wolf-img {
    opacity: 0.108;
  }

  .page-top .p-brand-message__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: clamp(36px, 5vw, 72px);
  }

  .page-top .p-brand-message__content {
    grid-column: 1;
    width: min(100%, 590px);
  }

  .page-top .p-brand-message__title {
    font-size: clamp(3rem, 4.35vw, 4rem);
    line-height: 1.27;
  }

  .page-top .p-brand-message__subtitle {
    font-size: clamp(1.14rem, 1.55vw, 1.42rem);
  }

  .page-top .p-brand-message__lead {
    font-size: clamp(1rem, 1.08vw, 1.09rem);
  }

  .page-top .p-brand-message__point-icon,
  .page-top .p-brand-message__point-icon-picture {
    width: clamp(34px, 3.2vw, 40px);
    height: clamp(34px, 3.2vw, 40px);
  }

  @supports not (height: 100dvh) {
    .page-top .p-brand-message {
      min-height: clamp(780px, 86vh, 900px);
    }
  }
}

@media (min-width: 1280px) {
  .page-top .p-brand-message {
    min-height: clamp(820px, 84svh, 930px);
    min-height: clamp(820px, 84dvh, 930px);
    padding-top: clamp(108px, 8vw, 132px);
    padding-bottom: clamp(98px, 7vw, 120px);
  }

  .page-top .p-brand-message::before {
    background:
      radial-gradient(
        ellipse at 22% 46%,
        rgba(255, 248, 234, 0.9) 0%,
        rgba(250, 243, 227, 0.65) 34%,
        rgba(247, 239, 220, 0.21) 55%,
        rgba(247, 239, 220, 0.025) 71%,
        rgba(247, 239, 220, 0) 83%
      ),
      linear-gradient(
        90deg,
        rgba(247, 239, 220, 0.87) 0%,
        rgba(247, 239, 220, 0.62) 29%,
        rgba(247, 239, 220, 0.2) 47%,
        rgba(247, 239, 220, 0.032) 61%,
        rgba(247, 239, 220, 0) 76%
      ),
      linear-gradient(
        180deg,
        rgba(247, 239, 220, 0.13) 0%,
        rgba(247, 239, 220, 0) 36%,
        rgba(239, 228, 207, 0.03) 72%,
        rgba(239, 228, 207, 0.3) 100%
      );
  }

  .page-top .p-brand-message__bg-img {
    object-position: 58% center;
  }

  .page-top .p-brand-message__wolf-mark {
    top: 47%;
    width: clamp(320px, 28vw, 390px);
  }

  .page-top .p-brand-message__wolf-img {
    opacity: 0.122;
  }

  .page-top .p-brand-message__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    column-gap: clamp(68px, 7vw, 104px);
  }

  .page-top .p-brand-message__content {
    width: min(100%, 620px);
    margin-left: clamp(0px, 1vw, 16px);
  }

  .page-top .p-brand-message__title {
    width: min(100%, 620px);
    font-size: clamp(3.4rem, 4.15vw, 4.15rem);
    line-height: 1.26;
  }

  .page-top .p-brand-message__subtitle {
    font-size: clamp(1.25rem, 1.55vw, 1.5rem);
  }

  .page-top .p-brand-message__points {
    width: min(100%, 590px);
  }

  @supports not (height: 100dvh) {
    .page-top .p-brand-message {
      min-height: clamp(820px, 84vh, 930px);
    }
  }
}

@media (min-width: 1440px) {
  .page-top .p-brand-message__bg-img {
    object-position: 56% center;
  }

  .page-top .p-brand-message__content {
    width: min(100%, 640px);
  }

  .page-top .p-brand-message__content::before {
    width: min(calc(100% + 108px), 748px);
  }

  .page-top .p-brand-message__title {
    width: min(100%, 640px);
  }
}

@media (min-width: 1800px) {
  .page-top .p-brand-message {
    min-height: clamp(860px, 78svh, 960px);
    min-height: clamp(860px, 78dvh, 960px);
  }

  .page-top .p-brand-message__inner {
    width: min(1280px, 100%);
  }

  .page-top .p-brand-message__bg-img {
    object-position: 54% center;
    transform: scale(1.002);
  }

  .page-top .p-brand-message__wolf-mark {
    right: clamp(112px, 8vw, 154px);
    width: 390px;
  }

  @supports not (height: 100dvh) {
    .page-top .p-brand-message {
      min-height: clamp(860px, 78vh, 960px);
    }
  }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .page-top .p-brand-message {
    min-height: 740px;
    padding-top: 76px;
    padding-bottom: 70px;
  }

  .page-top .p-brand-message__content {
    width: min(100%, 580px);
  }

  .page-top .p-brand-message__kicker {
    margin-bottom: 27px;
    font-size: clamp(0.68rem, 0.78vw, 0.75rem);
  }

  .page-top .p-brand-message__title {
    font-size: clamp(2.72rem, 3.72vw, 3.55rem);
    line-height: 1.22;
  }

  .page-top .p-brand-message__subtitle {
    margin-top: 17px;
    font-size: clamp(1rem, 1.16vw, 1.18rem);
    line-height: 1.55;
  }

  .page-top .p-brand-message__lead {
    margin-top: 19px;
    font-size: clamp(0.87rem, 0.92vw, 0.95rem);
    line-height: 1.72;
  }

  .page-top .p-brand-message__lead br + br {
    margin-top: 0.46em;
  }

  .page-top .p-brand-message__points {
    margin-top: 23px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .page-top .p-brand-message__point-icon,
  .page-top .p-brand-message__point-icon-picture {
    width: 34px;
    height: 34px;
  }

  .page-top .p-brand-message__actions {
    margin-top: 23px;
  }

  .page-top .p-brand-message .c-button--brand {
    min-height: 43px;
    font-size: clamp(0.91rem, 0.94vw, 0.99rem);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .page-top .p-brand-message .c-button--brand:hover {
    color: var(--sec02-forest);
    border-bottom-color: rgba(36, 58, 46, 0.78);
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .page-top .p-brand-message .c-button--brand:hover::after {
    transform: scaleX(1);
  }

  .page-top .p-brand-message .c-button--brand:hover span[aria-hidden="true"] {
    transform: translate(4px, -1px);
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .page-top .p-brand-message .c-button--brand,
  .page-top .p-brand-message .c-button--brand::after,
  .page-top .p-brand-message .c-button--brand span[aria-hidden="true"] {
    transition: none;
  }
}
