@charset "UTF-8";

/* =========================================================
   Header
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background-color: var(--color-gray0);
  color: var(--color-text-main);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 48px;
}

/* ---------------------------------------------------------
   Logo
--------------------------------------------------------- */

.site-header__logo {
  display: flex;
  flex: 0 0 104px;
  flex-direction: column;
  justify-content: center;
  width: 104px;
  line-height: 1;
}

.site-header__logo-company {
  color: var(--color-accent);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header__logo-title {
  margin-top: 3px;
  color: #e60012;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ---------------------------------------------------------
   Main navigation
--------------------------------------------------------- */

.site-header__nav {
  height: 44px;
  margin-left: 48px;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.site-header__nav-item {
  height: 100%;
}

.site-header__nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-text-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.site-header__nav-item > a:hover,
.site-header__nav-item > a:focus-visible {
  opacity: 0.65;
}

/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.site-header__cta {
  display: flex;
  align-items: center;
  flex: 0 0 738px;
  width: 738px;
  height: 52px;
  gap: 8px;
  margin-left: auto;
}

.site-header__cta > .site-header__cta-item,
.site-header__entry {
  min-width: 0;
}

.site-header__cta > .site-header__cta-item {
  flex: 1 1 0;
}

.site-header__entry {
  position: relative;
  flex: 0 0 190px;
  height: 52px;
}

/* Keep hover active across the visual gap to the dropdown. */
.site-header__entry::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 10px;
}

.site-header__cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 14px;
  border-radius: 5px;
  color: var(--color-gray0);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.site-header__cta-item:hover,
.site-header__cta-item:focus-visible {
  opacity: 0.8;
}

.site-header__cta-item--internship {
  position: relative;
  background-color: var(--color-accent);
}

.site-header__cta-item--internship::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  background: url("../img/icon-external.svg") center / contain no-repeat;
}

.site-header__cta-item--external {
  position: relative;
  background-color: var(--color-text-main);
}

.site-header__cta-item--external::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  background: url("../img/icon-external.svg") center / contain no-repeat;
}

.site-header__cta-item--entry {
  width: 100%;
  border-radius: 999px;
  background-color: var(--color-accent);
}

/* ---------------------------------------------------------
   Entry dropdown
--------------------------------------------------------- */

.site-header__entry-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  width: 296px;
  min-height: 206px;
  padding: 40px;
  border-radius: 0;
  background: #bda684;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.site-header__entry:hover .site-header__entry-menu,
.site-header__entry:focus-within .site-header__entry-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header__entry-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-header__entry-menu li {
  position: relative;
}

.site-header__entry-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 216px;
  min-height: 26px;
  padding: 0;
  color: var(--color-gray0);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}


.site-header__entry-menu a::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: 32px;
  background: url("../img/icon-external.svg") center / contain no-repeat;
}

.site-header__entry-menu a[href="/recruit/career/"]::after {
  display: none;
}

.site-header__entry-menu a:hover,
.site-header__entry-menu a:focus-visible {
  opacity: 0.8;
}

/* ---------------------------------------------------------
   Menu button
--------------------------------------------------------- */

.site-header__menu-button {
  position: relative;
  display: none;
  flex: 0 0 70px;
  width: 70px;
  height: 100%;
  margin-left: auto;
}

.site-header__menu-button span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  transform: translateX(-50%);
  transition:
    top 0.25s ease,
    transform 0.25s ease;
}

.site-header__menu-button span:first-child {
  top: calc(50% - 5px);
}

.site-header__menu-button span:last-child {
  top: calc(50% + 5px);
}

.site-header__menu-button.is-open span:first-child {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.site-header__menu-button.is-open span:last-child {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}


.global-menu,
.fixed-entry-cta,
.pc-fixed-internship {
  display: none;
}


@media (min-width: 1200px) {
  .pc-fixed-internship {
    position: fixed;
    top: 80%;
    right: 0;
    z-index: 980;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 222px;
    height: 182px;
    padding: 24px;
    border-radius: 4px 0 0 4px;
    background-color: var(--color-accent);
    transform: translateY(-50%);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .pc-fixed-internship.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .pc-fixed-internship__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .pc-fixed-internship__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background-color: var(--color-gray0);
    transform-origin: center;
  }

  .pc-fixed-internship__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .pc-fixed-internship__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .pc-fixed-internship__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    transition: opacity 0.3s ease;
  }

  .pc-fixed-internship__link:hover,
  .pc-fixed-internship__link:focus-visible {
    opacity: 0.8;
  }

  .pc-fixed-internship__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 174px;
    gap: 16px;
  }

  .pc-fixed-internship__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 125px;
  }

  .pc-fixed-internship__en {
    color: var(--color-gray0);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .pc-fixed-internship__line {
    display: block;
    width: 46px;
    height: 1px;
    background-color: var(--color-gray0);
  }

  .pc-fixed-internship__text {
    width: 174px;
    margin: 0;
    color: var(--color-gray0);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.05em;
  }

  .pc-fixed-internship__entry {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 107px;
    height: 34px;
    padding: 8px 16px 8px 24px;
    border: 1px solid var(--color-gray0);
    border-radius: 999px;
    color: var(--color-gray0);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.1em;
    transition:
      background-color 0.2s ease,
      color 0.2s ease;
  }


  .pc-fixed-internship__arrow {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-left: 2px;
  }

  .pc-fixed-internship__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 10px;
    height: 1px;
    background-color: currentColor;
    transform: translateY(-50%);
  }

  .pc-fixed-internship__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3px;
    width: 5px;
    height: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }
}

body.is-menu-open {
  overflow: hidden;
}

/* ---------------------------------------------------------
   Entry-only menu opened from the bottom CTA on short PC
   - Activated only while JS adds .is-compact-entry-open
   - Does not alter the normal desktop header/layout
--------------------------------------------------------- */
.global-menu.is-compact-entry-open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  display: block;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  background-color: var(--color-brown);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-menu.is-compact-entry-open .global-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 64px, 390px);
  min-height: 100%;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.global-menu.is-compact-entry-open .global-menu__nav {
  display: none;
}

.global-menu.is-compact-entry-open .global-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.global-menu.is-compact-entry-open .global-menu__cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 4px;
  background-color: var(--color-text-main);
  color: var(--color-gray0);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.global-menu.is-compact-entry-open .global-menu__cta-item--internship,
.global-menu.is-compact-entry-open .global-menu__cta-item--entry {
  background-color: var(--color-accent);
}

.global-menu.is-compact-entry-open .global-menu__cta-item--entry {
  border-radius: 999px;
}

.global-menu.is-compact-entry-open .global-menu__entry-menu {
  display: none;
  margin-top: 8px;
}

.global-menu.is-compact-entry-open .global-menu__entry-menu.is-open {
  display: block;
}

.global-menu.is-compact-entry-open .global-menu__entry-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.global-menu.is-compact-entry-open .global-menu__entry-menu a {
  display: block;
  padding: 12px 16px;
  background-color: var(--color-gray0);
  color: var(--color-text-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   Narrow PC / Tablet : 768px - 1199px
========================================================= */

@media (max-width: 1199px) {
  /* Tablet uses the same compact header proportions as SP. */
  .site-header {
    height: 57px;
  }

  .site-header__inner {
    padding: 8px 16px;
  }

  .site-header__logo {
    flex-basis: 79px;
    width: 79px;
  }

  .site-header__logo-company {
    display: block;
    width: 79px;
    height: auto;
  }

  .site-header__logo-title {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .site-header__menu-button {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__menu-button,
  .global-menu {
    display: block;
  }

  .global-menu {
    position: fixed;
    top: 57px;
    left: 0;
    z-index: 990;
    width: 100%;
    height: calc(100dvh - 57px);
    overflow-y: auto;
    background-color: var(--color-brown);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .global-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .global-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100% - 64px, 390px);
    min-height: 100%;
    margin: 0 auto;
    padding: 48px 0 64px;
  }

  .global-menu__nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .global-menu__nav a {
    color: var(--color-gray0);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }

  .global-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 54px;
  }

  .global-menu__cta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 4px;
    background-color: var(--color-text-main);
    color: var(--color-gray0);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
  }

  .global-menu__cta-item--internship,
  .global-menu__cta-item--entry {
    background-color: var(--color-accent);
  }

  .global-menu__cta-item--entry {
    border-radius: 999px;
  }

  .global-menu__entry {
    position: relative;
  }

  .global-menu__entry-menu {
    display: none;
    margin-top: 8px;
  }

  .global-menu__entry-menu.is-open {
    display: block;
  }

  .global-menu__entry-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .global-menu__entry-menu a {
    display: block;
    padding: 12px 16px;
    background-color: var(--color-gray0);
    color: var(--color-text-main);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }


  .global-menu.is-entry-only .global-menu__nav {
    display: none;
  }

  .global-menu.is-entry-only .global-menu__cta {
    margin-top: 0;
  }

  .fixed-entry-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 980;
    display: block;
    width: 100%;
    padding: 8px 0 calc(14px + env(safe-area-inset-bottom));
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .fixed-entry-cta__inner {
    width: min(calc(100% - 48px), 390px);
    margin: 0 auto;
  }

  .fixed-entry-cta__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 7px;
    color: var(--color-accent);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  /* Figmaの斜線はCSSで再現。SVG化は不要 */
  .fixed-entry-cta__lead span {
    display: block;
    flex: 0 0 2px;
    width: 2px;
    height: 18px;
    overflow: hidden;
    border-radius: 999px;
    background-color: currentColor;
    color: var(--color-accent);
    font-size: 0;
  }

  .fixed-entry-cta__lead span:first-child {
    transform: rotate(-25deg);
  }

  .fixed-entry-cta__lead span:last-child {
    transform: rotate(25deg);
  }

  .fixed-entry-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 12px 20px;
    border: 0;
    border-radius: 4px;
    background-color: var(--color-accent);
    color: var(--color-gray0);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    cursor: pointer;
  }

  body.is-menu-open .fixed-entry-cta {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

/* =========================================================
   SP : 0px - 767px
========================================================= */

@media (max-width: 767px) {
  .global-menu__nav a {
    font-size: 20px;
  }

  .global-menu__cta {
    gap: 12px;
    margin-top: 64px;
  }

  .global-menu__cta-item {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 4px;
  }

  .site-header {
    height: 57px;
  }

  .site-header__inner {
    padding: 8px 16px;
  }

  .site-header__logo {
    flex-basis: 79px;
    width: 79px;
  }

  .site-header__logo-company {
    display: block;
    width: 79px;
    height: auto;
  }

  .site-header__logo-title {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .site-header__menu-button {


    height: 24px;
  }


  .site-header__menu-button {
    flex-basis: 60px;
    width: 60px;
  }

  /* Figma: SP close icon uses a shallower cross angle than the default. */
  .site-header__menu-button.is-open span:first-child {
    transform: translateX(-50%) rotate(30deg);
  }

  .site-header__menu-button.is-open span:last-child {
    transform: translateX(-50%) rotate(-30deg);
  }

  /* External links in the SP hamburger CTA area. */
  .global-menu__cta > a[target="_blank"] {
    position: relative;
  }

  .global-menu__cta > a[target="_blank"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    background: url("../img/icon-external.svg") center / contain no-repeat;
    transform: translateY(-50%);
  }

  .global-menu {
    top: 60px;
    height: calc(100dvh - 60px);
  }

  .global-menu__inner {
    width: min(100% - 48px, 390px);
    padding: 40px 0 60px;
  }

  .fixed-entry-cta__inner {
    width: calc(100% - 48px);
    max-width: 390px;
  }

  .fixed-entry-cta__lead {
    font-size: 15px;
  }

  .fixed-entry-cta__button {
    min-height: 58px;
    font-size: 15px;
  }
}

/* =========================================================
   Figma alignment: 1440px / 390px
========================================================= */
@media (min-width: 1200px) {
  .site-header__logo {
    flex-basis: 79px;
    width: 79px;
  }

  .site-header__logo-company {
    display: block;
    width: 79px;
    height: auto;
  }

  .site-header__logo-title {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .site-header__nav-item > a {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }

  .site-header__cta > .site-header__cta-item {
    flex: none;
    height: 39px;
  }

  .site-header__cta > .site-header__cta-item:nth-child(1) {
    width: 184px;
    padding-inline: 32px;
  }

  .site-header__cta > .site-header__cta-item:nth-child(2) {
    width: 162px;
  }

  .site-header__cta > .site-header__cta-item:nth-child(3) {
    width: 174px;
  }

  .site-header__entry {
    flex-basis: 194px;
    width: 194px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 57px;
  }

  .site-header__inner {
    padding: 8px 16px;
  }

  .site-header__logo {
    flex-basis: 79px;
    width: 79px;
  }

  .site-header__logo-company {
    display: block;
    width: 79px;
    height: auto;
  }

  .site-header__logo-title {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .site-header__menu-button {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .global-menu {
    top: 57px;
    height: calc(100dvh - 57px);
  }
}


@media (max-width: 1199px) {
  .global-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(calc(100% - 48px), 342px);
    min-height: 100%;
    padding: 60px 0;
  }

  .global-menu__nav ul {
    gap: 24px;
  }

  .global-menu__nav a {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }

  .global-menu__groups {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: min(280px, 100%);
    margin: 48px auto 0;
  }

  .global-menu__group {
    width: 100%;
  }

  .global-menu__group-title {
    margin: 0 0 12px;
    color: var(--color-gray0);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
  }

  .global-menu__group-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .global-menu__cta-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 12px 24px;
    border-radius: 4px;
    background: #2a363c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  .global-menu__cta-item--internship {
    min-height: 48px;
    padding-block: 16px;
    padding-right: 46px;
    background: #e3494b;
    font-size: 16px;
  }

  .global-menu__cta-item--internship::after {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 18px;
    height: 18px;
    background: url("../img/icon-external.svg") center / contain no-repeat;
    content: "";
    transform: translateY(-50%);
  }

  .global-menu__cta-item--entry-link {
    border-radius: 100px;
    background: #e3494b;
  }

  .global-menu__cta-item--career {
    border-radius: 100px;
  }

  .global-menu__cta-item--external,
  .global-menu__cta-item--entry-link {
    padding-right: 46px;
  }

  .global-menu__cta-item--external::after,
  .global-menu__cta-item--entry-link::after {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 18px;
    height: 18px;
    background: url("../img/icon-external.svg") center / contain no-repeat;
    content: "";
    transform: translateY(-50%);
  }


  .global-menu.is-entry-only .global-menu__nav {
    display: none;
  }

  .global-menu.is-entry-only .global-menu__groups {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .global-menu__inner {
    width: calc(100% - 48px);
    max-width: 342px;
    padding: 60px 0 50px;
  }

  .global-menu__groups {
    width: 280px;
    max-width: 100%;
  }
}

/* =========================================================
   Short desktop viewport: use bottom internship CTA
   - Width remains PC (>=1200px)
   - Switch only when viewport height is 700px or less
========================================================= */
@media (min-width: 1200px) and (max-height: 700px) {
  .pc-fixed-internship {
    display: none !important;
  }

  .fixed-entry-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 980;
    display: block !important;
    width: 100%;
    padding: 8px 0 calc(14px + env(safe-area-inset-bottom));
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .fixed-entry-cta__inner {
    width: min(calc(100% - 48px), 390px);
    margin: 0 auto;
  }

  .fixed-entry-cta__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 7px;
    color: var(--color-accent);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .fixed-entry-cta__lead span {
    display: block;
    flex: 0 0 2px;
    width: 2px;
    height: 18px;
    overflow: hidden;
    border-radius: 999px;
    background-color: currentColor;
    color: var(--color-accent);
    font-size: 0;
  }

  .fixed-entry-cta__lead span:first-child { transform: rotate(-25deg); }
  .fixed-entry-cta__lead span:last-child { transform: rotate(25deg); }

  .fixed-entry-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 12px 20px;
    border: 0;
    border-radius: 4px;
    background-color: var(--color-accent);
    color: var(--color-gray0);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    cursor: pointer;
  }

  body.is-menu-open .fixed-entry-cta {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
