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

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --green: #029b79;
  --green-dark: #006649;
  --text: #474747;
  --header-h: 90px;
  --sidebar-w: clamp(56px, 5.2vw, 100px);
  --ham-h: clamp(56px, 4.8vw, 70px);
  --ham-w: clamp(56px, 5.2vw, 76px);
  --sp-banner-h: 0px;
  --sp-banner-clear: 0px;
}
@media screen and (max-width: 1024px) {
  :root {
    --header-h: 68px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    /* --sidebar-w: 56px; */
    --sidebar-w: 47px;
    --ham-h: 56px;
    --ham-w: 56px;
    --sp-banner-h: 70px;
    --sp-banner-clear: 120px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #474747;
  background: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}
body.is-drawer-open {
  overflow: hidden;
}

:where(section[id], [id].anchor-target) {
  scroll-margin-top: var(--header-h);
}

img {
  width: 100%;
}

::selection {
  background: #029b79;
  color: #ffffff;
}

.--d-ib {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .--sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .--pc {
    display: none;
  }
}

.l-inner {
  width: 100%;
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.l-main {
  display: block;
}
.l-main--page {
  padding-block: clamp(120px, 18vw, 220px) clamp(60px, 10vw, 120px);
}

.page-body {
  min-height: 40vh;
}

.entry__title {
  font-size: 1.75rem;
  margin-bottom: 1em;
}

.l-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.l-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-inline: clamp(20px, 3vw, 48px);
}
.l-header__logo {
  display: block;
  line-height: 0;
}
.l-header__logo img {
  width: auto;
  height: clamp(40px, 4vw, 52px);
  aspect-ratio: 696/295;
}

.l-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--ham-h);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.l-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #029b79;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.l-sidebar.is-active {
  opacity: 1;
  visibility: visible;
}
.l-sidebar.is-past-mv::before {
  opacity: 1;
}
.l-sidebar .hamburger {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--ham-w);
  height: 100%;
  pointer-events: auto;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, opacity 0.6s ease 0.12s;
}
.l-sidebar.is-active .hamburger {
  transform: none;
  opacity: 1;
}
.l-sidebar__logo {
  position: absolute;
  left: var(--ham-w);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: clamp(10px, 1.2vw, 20px);
  pointer-events: auto;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, opacity 0.6s ease 0.2s;
}
.l-sidebar__logo img {
  display: block;
  width: auto;
  height: clamp(20px, 2.2vw, 34px);
  aspect-ratio: 696.569/295;
}
@media (hover: hover) {
  .l-sidebar__logo:hover {
    opacity: 0.7;
  }
}
.l-sidebar.is-active .l-sidebar__logo {
  transform: none;
  opacity: 1;
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #029b79;
  color: #ffffff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.l-drawer__close {
  position: absolute;
  top: clamp(16px, 1.4vw, 28px);
  left: clamp(16px, 2vw, 40px);
  z-index: 2;
  width: clamp(40px, 3.6vw, 60px);
  height: clamp(40px, 3.6vw, 60px);
  border: 0;
  background: transparent;
  cursor: pointer;
}
.l-drawer__close::before, .l-drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: background 0.3s ease;
}
.l-drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .l-drawer__close:hover::before, .l-drawer__close:hover::after {
    background: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (max-width: 768px) {
  .l-drawer__close {
    left: clamp(14px, 4vw, 20px);
  }
}
.l-drawer__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(30px, 4vw, 80px);
  max-width: 1480px;
  margin-inline: auto;
  min-height: 100dvh;
  padding: clamp(80px, 8vw, 130px) 0 clamp(60px, 8vw, 160px);
}
.l-drawer__cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 2.4vw, 40px);
  flex: 0 1 600px;
}
.l-drawer__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 3vw, 44px);
  flex: 0 1 auto;
}
@media screen and (max-width: 1024px) {
  .l-drawer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(28px, 6vw, 48px);
    padding: clamp(70px, 14vw, 100px) clamp(20px, 6vw, 60px) clamp(48px, 12vw, 80px);
    min-height: 0;
  }
  .l-drawer__cards {
    flex: none;
  }
  .l-drawer__side {
    flex: none;
  }
}

.drawer-card {
  display: block;
  text-decoration: none;
  color: #ffffff;
}
.drawer-card__head {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.09vw, 21px);
  margin-bottom: clamp(10px, 0.83vw, 16px);
  padding-inline: clamp(4px, 1.25vw, 24px);
  white-space: nowrap;
}
.drawer-card__no {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  letter-spacing: -0.022em;
}
.drawer-card__jp {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.67vw, 2rem);
  letter-spacing: -0.042em;
  line-height: 1.5;
}
.drawer-card__media {
  position: relative;
  display: block;
  aspect-ratio: 600/180;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.drawer-card__arrow {
  position: absolute;
  right: clamp(6px, 0.78vw, 15px);
  bottom: clamp(6px, 0.78vw, 15px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 2.86vw, 55px);
  height: clamp(36px, 2.86vw, 55px);
}
.drawer-card__arrow svg {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  .drawer-card:hover .drawer-card__media::before {
    background: rgba(255, 255, 255, 0.15);
  }
}
@media screen and (max-width: 768px) {
  .drawer-card__jp {
    font-size: clamp(1rem, 4.6vw, 1.375rem);
  }
  .drawer-card__media {
    aspect-ratio: 5/2;
  }
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.67vw, 32px);
  list-style: none;
}
.drawer-links .drawer-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 21px);
  padding-inline: clamp(4px, 1.25vw, 24px);
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .drawer-links .drawer-link:hover {
    opacity: 0.7;
  }
}
.drawer-links .drawer-link__no {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  letter-spacing: -0.022em;
}
.drawer-links .drawer-link__jp {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.67vw, 2rem);
  letter-spacing: -0.042em;
  white-space: nowrap;
}
.drawer-links .drawer-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 2.34vw, 45px);
  height: clamp(28px, 2.34vw, 45px);
  background: #029b79;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.drawer-links .drawer-link__arrow svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .drawer-links .drawer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-inline: 0;
  }
  .drawer-links .drawer-link__no {
    margin-right: 0.6em;
  }
  .drawer-links .drawer-link__jp {
    flex: 1;
  }
  .drawer-links .drawer-link__arrow {
    margin-left: auto;
  }
}

.drawer-actions {
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 2.08vw, 40px);
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .drawer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 4vw, 24px);
  }
}

.drawer-btns {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.83vw, 16px);
}
@media screen and (max-width: 1024px) {
  .drawer-btns {
    padding-inline: 0;
  }
}

.drawer-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 0.83vw, 16px);
  width: clamp(240px, 21vw, 400px);
  max-width: 100%;
  padding: clamp(10px, 0.83vw, 16px) clamp(10px, 1.04vw, 20px);
  border: 1.6px solid #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.67vw, 2rem);
  letter-spacing: -0.042em;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.drawer-btn__icon {
  flex-shrink: 0;
  width: clamp(28px, 2.5vw, 48px);
  height: auto;
  transition: filter 0.3s ease;
}
@media (hover: hover) {
  .drawer-btn:hover {
    background: #ffffff;
    color: #029b79;
  }
  .drawer-btn:hover .drawer-btn__icon path,
  .drawer-btn:hover .drawer-btn__icon rect,
  .drawer-btn:hover .drawer-btn__icon circle {
    stroke: #029b79;
  }
  .drawer-btn:hover .drawer-btn__icon circle[fill] {
    fill: #029b79;
  }
}
@media screen and (max-width: 1024px) {
  .drawer-btn {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .drawer-btn--sp-hide {
    display: none;
  }
}

.drawer-sns {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 18px);
}
.drawer-sns a {
  display: block;
  transition: opacity 0.3s ease;
  max-width: 50px;
}
@media (hover: hover) {
  .drawer-sns a:hover {
    opacity: 0.7;
  }
}
.drawer-sns img {
  width: clamp(40px, 3.6vw, 55px);
  height: auto;
  display: block;
}

.drawer-ext {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.04vw, 20px);
  padding: clamp(16px, 1.25vw, 24px) clamp(6px, 0.5vw, 8px);
  background: rgba(255, 255, 255, 0.2);
}
.drawer-ext__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.78vw, 12px);
  padding-inline: clamp(12px, 1.25vw, 24px);
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .drawer-ext__item:hover {
    opacity: 0.7;
  }
}
.drawer-ext__jp {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.46vw, 1.75rem);
  letter-spacing: -0.042em;
  white-space: nowrap;
}
.drawer-ext__sub {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  letter-spacing: -0.022em;
}
.drawer-ext__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(26px, 1.67vw, 32px);
  height: clamp(26px, 1.67vw, 32px);
  flex-shrink: 0;
}
.drawer-ext__mark svg {
  width: 100%;
  height: auto;
}

.l-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.l-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.footer-cta {
  position: relative;
  padding: clamp(40px, 6vw, 100px) clamp(40px, 12vw, 200px);
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .footer-cta {
    padding: clamp(40px, 6vw, 100px) clamp(20px, 4vw, 100px);
  }
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.footer-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 40px);
  max-width: 1366px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer-cta__grid {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.2vw, 20px);
  min-height: clamp(180px, 28vw, 500px);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
}
.cta-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.65);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
}
.cta-card > *:not(.cta-card__media) {
  position: relative;
  z-index: 1;
}
.cta-card__en {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 8.125rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .cta-card__en {
    width: 90%;
  }
}
.cta-card__en path {
  fill: #ffffff;
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
  transition: fill 0.4s ease, stroke 0.4s ease;
}
.cta-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #029b79;
  padding: clamp(6px, 0.6vw, 10px) clamp(12px, 1.8vw, 30px);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.4s ease, color 0.4s ease;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #029b79;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .cta-card:hover .cta-card__media {
    transform: scale(1.06);
    filter: grayscale(0) brightness(0.55);
  }
  .cta-card:hover::after {
    opacity: 0.85;
  }
  .cta-card:hover .cta-card__en path {
    fill: rgba(255, 255, 255, 0);
    stroke: #ffffff;
  }
  .cta-card:hover .cta-card__meta {
    background: #ffffff;
    color: #029b79;
  }
}

.keyplus {
  background: #029b79;
  padding: clamp(16px, 3vw, 50px);
}
.keyplus__layout {
  display: flex;
  gap: clamp(6px, 0.8vw, 14px);
  max-width: 1800px;
  margin-inline: auto;
  height: clamp(260px, 34vw, 540px);
}
.keyplus__main {
  position: relative;
  flex: 1;
  overflow: hidden;
  background-image: var(--keyplus-img);
  background-size: cover;
  background-position: center;
}
.keyplus__side {
  flex: 0 0 clamp(140px, 23vw, 409px);
  background-image: var(--keyplus-side);
  background-size: cover;
  background-position: center;
}
.keyplus__band {
  position: absolute;
  left: 0;
  right: auto;
  bottom: clamp(50px, 7vw, 130px);
  background: #029b79;
  padding: 0 clamp(16px, 10vw, 180px);
  z-index: 2;
}
.keyplus__lead {
  font-family: "Hina Mincho", serif;
  font-size: clamp(1rem, 1.5vw, 1.875rem);
  color: #ffffff;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.keyplus__title {
  position: absolute;
  left: -0.6vw;
  bottom: clamp(-100px, -1vw, 30px);
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(3rem, 9.5vw, 11.625rem);
  line-height: 0.82;
  color: #029b79;
  letter-spacing: -0.08em;
  white-space: nowrap;
}
.keyplus__link {
  position: absolute;
  right: clamp(10px, 2vw, 40px);
  bottom: clamp(10px, 1.5vw, 30px);
  font-size: clamp(0.6875rem, 1.1vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  background-image: linear-gradient(165deg, #17c1b4 3%, #8ff69a 42%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.75);
  transition: 0.4s ease;
}
.keyplus__link:hover {
  opacity: 50% !important;
}
@media screen and (max-width: 1200px) {
  .keyplus {
    padding: 12px 12px 20px;
  }
  .keyplus__layout {
    height: clamp(170px, 48vw, 260px);
    gap: 6px;
  }
  .keyplus__side {
    flex: 0 0 clamp(88px, 25vw, 130px);
  }
  .keyplus__band {
    bottom: auto;
    top: clamp(6px, 2vw, 12px);
    padding: 4px 10px;
  }
  .keyplus__lead {
    font-size: clamp(0.6875rem, 3.4vw, 0.9375rem);
  }
  .keyplus__title {
    bottom: auto;
    top: clamp(28px, 10vw, 52px);
    font-size: clamp(2.125rem, 12vw, 4.125rem);
  }
  .keyplus__link {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 8px;
    background: rgba(0, 0, 0, 0.32);
    text-shadow: none;
  }
  .keyplus__link svg {
    width: 88%;
    max-width: 260px;
    height: auto;
  }
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(160px, 16vw, 220px);
  padding: 24px;
  color: #ffffff;
  overflow: hidden;
}
.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--case-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}
.case-card > * {
  position: relative;
  z-index: 1;
}
.case-card--kaneko::after {
  background: linear-gradient(to top, rgba(0, 168, 200, 0.85), rgba(0, 168, 200, 0.2));
}
.case-card--rakuen::after {
  background: linear-gradient(to top, rgba(34, 139, 34, 0.85), rgba(34, 139, 34, 0.2));
}
.case-card--group::after {
  background: linear-gradient(to top, rgba(70, 130, 180, 0.85), rgba(70, 130, 180, 0.2));
}
.case-card__name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.case-card__read {
  font-size: 1rem;
  opacity: 0.9;
}
@media (hover: hover) {
  .case-card:hover::before {
    transform: scale(1.06);
  }
}

.kaneko-story {
  background: #f5ece7;
  padding: clamp(60px, 8vw, 110px) clamp(24px, 5vw, 80px);
}
.kaneko-story__head {
  display: flex;
  justify-content: center;
  max-width: 1366px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.kaneko-story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  max-width: 1366px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .kaneko-story__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.kaneko-story-txt {
  display: block;
  width: clamp(260px, 55%, 720px);
  height: auto;
}

.kaneko-story-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/13;
  overflow: hidden;
  color: #ffffff;
}
.kaneko-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--case-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.kaneko-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.kaneko-story-card--kaneko::after {
  background: #00a8c8;
}
.kaneko-story-card--rakuen::after {
  background: #228b22;
}
.kaneko-story-card--group::after {
  background: #4682b4;
  opacity: 1;
}
.kaneko-story-card {
  --name-top: 38%;
  --name-bottom: 12%;
}
.kaneko-story-card__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: calc(var(--name-top) - 16px);
  background: rgba(255, 255, 255, 0.75);
}
.kaneko-story-card__name {
  position: absolute;
  top: var(--name-top);
  bottom: var(--name-bottom);
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, 2vw, 1.875rem);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
@media (hover: hover) {
  .kaneko-story-card:hover::before {
    transform: scale(1.06);
  }
}
@media screen and (max-width: 768px) {
  .kaneko-story-card {
    aspect-ratio: 1/3;
    --name-top: 26%;
    --name-bottom: 6%;
  }
  .kaneko-story-card__name {
    font-size: clamp(1rem, 3.8vw, 1.25rem);
  }
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 50px) clamp(16px, 5vw, 100px) clamp(16px, 2.5vw, 30px);
}
@media screen and (max-width: 768px) {
  .footer-main {
    padding-bottom: 100px;
  }
}
.footer-main__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center;
}
.footer-main__bg::after {
  content: "";
  inset: 0;
  background: #d3d3d3;
  mix-blend-mode: screen;
}
.footer-main__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 14px);
  max-width: 1720px;
  margin-inline: auto;
}
.footer-main__row1 {
  display: grid;
  grid-template-columns: clamp(160px, 24%, 412px) 1fr 1fr;
  gap: clamp(6px, 0.8vw, 14px);
  align-items: stretch;
}
.footer-main__row1 .footer-main__org:first-child {
  padding: 0;
}
.footer-main__row2 {
  display: grid;
  grid-template-columns: clamp(160px, 24%, 412px) 1fr clamp(160px, 25%, 430px);
  gap: clamp(6px, 0.8vw, 14px);
  align-items: stretch;
}
.footer-main__org {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.6vw, 8px);
  padding: clamp(16px, 2vw, 30px);
  min-height: clamp(140px, 19vw, 327px);
}
.footer-main__logo img {
  width: clamp(130px, 16vw, 220px);
  height: auto;
}
.footer-main__name {
  font-weight: 700;
  font-size: clamp(0.6875rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: #029b79;
  text-align: center;
}
.footer-main__address {
  font-size: clamp(0.625rem, 1vw, 1rem);
  line-height: 1.6;
  color: #029b79;
  text-align: center;
}
.footer-main__col-a {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 14px);
}
.footer-main__col-b {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 14px);
}
.footer-main__col-b-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 0.8vw, 14px);
  flex: 1;
}
.footer-main__mini {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 14px);
}
.footer-main__col-c {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 14px);
}
@media screen and (max-width: 768px) {
  .footer-main__row1 {
    grid-template-columns: 1fr;
  }
  .footer-main__row1 .footer-nav__card {
    display: none;
  }
  .footer-main__row2 {
    grid-template-columns: 1fr;
  }
  .footer-main__row2 .footer-nav__card {
    display: none;
  }
  .footer-main__col-a, .footer-main__col-b {
    display: none;
  }
  .footer-main__col-c {
    display: block;
  }
  .footer-main__col-c .footer-sns-card {
    min-height: 90px;
  }
}

.footer-nav__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
  flex: 1;
  min-height: clamp(120px, 17vw, 282px);
  padding: clamp(10px, 1.5vw, 20px);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
}
.footer-nav__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.65);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
}
.footer-nav__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #029b79;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.footer-nav__card > * {
  position: relative;
  z-index: 1;
}
.footer-main__row1 .footer-nav__card {
  min-height: clamp(140px, 22vw, 327px);
}
.footer-nav__card--mini {
  min-height: 0;
  flex: 1;
}
@media (hover: hover) {
  .footer-nav__card:hover::before {
    filter: grayscale(0) brightness(0.55);
    transform: scale(1.06);
  }
  .footer-nav__card:hover::after {
    opacity: 0.85;
  }
  .footer-nav__card:hover .footer-nav__jp {
    background: #ffffff;
    color: #029b79;
  }
  .footer-nav__card:hover svg.footer-nav__en path {
    fill: rgba(255, 255, 255, 0);
    stroke: #ffffff;
  }
  .footer-nav__card:hover span.footer-nav__en {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
  }
}

svg.footer-nav__en {
  display: block;
  height: clamp(1.25rem, 2.6vw, 2.75rem);
  width: auto;
  max-width: 92%;
  overflow: visible;
}
svg.footer-nav__en path {
  fill: #ffffff;
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
  transition: fill 0.4s ease, stroke 0.4s ease;
}

span.footer-nav__en {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 3vw, 2.875rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  transition: color 0.35s ease;
}
span.footer-nav__en em {
  font-style: italic;
}

.footer-nav__jp {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: #029b79;
  font-weight: 700;
  font-size: clamp(0.625rem, 1.4vw, 1.25rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.4s ease;
}

.footer-nav__card--mini .footer-nav__en {
  font-size: clamp(1rem, 2vw, 1.875rem);
}
.footer-nav__card--mini svg.footer-nav__en {
  height: clamp(1rem, 2.1vw, 2.125rem);
}
.footer-nav__card--mini .footer-nav__jp {
  font-size: clamp(0.5rem, 1vw, 0.875rem);
}

.footer-sns-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  flex: 1;
  min-height: clamp(120px, 17vw, 282px);
  background-image: url(../img/common/sns-bg.png);
}
.footer-sns-card img {
  width: clamp(40px, 5vw, 72px);
  height: auto;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer-sns-card:hover img:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  margin: clamp(16px, 2vw, 28px) auto 0;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #4c4c4c;
  text-align: center;
}

.sp-bottom-banner {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  align-items: center;
  height: var(--sp-banner-h);
  padding: 0 24px;
  background: #029b79;
}
@media screen and (max-width: 768px) {
  .sp-bottom-banner {
    display: flex;
  }
}
.sp-bottom-banner__btn {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 45px;
  padding: 10px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.042em;
  color: #ffffff;
  background: #029b79;
  border: 1px solid #ffffff;
  text-decoration: none;
  white-space: nowrap;
}
.sp-bottom-banner__btn + .sp-bottom-banner__btn {
  border-left: 0;
}
.sp-bottom-banner__icon {
  flex-shrink: 0;
  width: 22px;
  height: auto;
}

.totop {
  position: fixed;
  right: clamp(16px, 2vw, 32px);
  bottom: clamp(40px, 6vh, 60px);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(2, 155, 122, 0.7333333333);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
}
.totop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.totop img {
  width: 16px;
  height: auto;
  filter: brightness(0) invert(1);
}
.totop__en {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
.totop__jp {
  font-size: 0.625rem;
}
@media (hover: hover) {
  .totop:hover {
    background: #006649;
  }
}
@media screen and (max-width: 768px) {
  .totop {
    bottom: 76px;
    width: 56px;
    height: 56px;
  }
}

.hamburger {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: clamp(64px, 6vw, 92px);
  color: #ffffff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .hamburger:hover {
    opacity: 0.7;
  }
}
.hamburger__box {
  position: relative;
  width: clamp(30px, 2.8vw, 53px);
  height: 16px;
}
.hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger__bar:nth-child(1) {
  top: 0;
}
.hamburger__bar:nth-child(2) {
  top: 10px;
}
.hamburger__bar:nth-child(3) {
  top: 20px;
}
.hamburger__label {
  font-family: "Jost", sans-serif;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hamburger[aria-expanded=true] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: #029b79;
}
.loading.is-active {
  display: block;
}
.loading.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.loading__screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.loading__tagline {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.375rem);
  letter-spacing: 0.2em;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease-out, filter 1s ease-out;
}
.loading__screen--text {
  transition: opacity 0.6s ease;
}
.loading__screen--text.is-show .loading__tagline {
  opacity: 1;
  filter: blur(0);
}
.loading__screen--text.is-out {
  opacity: 0;
}
.loading__screen--logo {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.loading__screen--logo.is-in {
  opacity: 1;
}
.loading__logo {
  width: clamp(220px, 30vw, 420px);
  height: auto;
}

body.is-loading {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .loading__tagline {
    transition-duration: 0.01ms;
  }
  .loading__screen--text,
  .loading__screen--logo {
    transition-duration: 0.01ms;
  }
}
.ring-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 13vw, 200px);
  aspect-ratio: 1/1;
  color: #ffffff;
  transition: transform 0.4s ease;
}
.ring-btn__ring {
  position: absolute;
  inset: 0;
  animation: kp-ring-spin 18s linear infinite;
}
.ring-btn__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ring-btn__text {
  fill: currentColor;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.ring-btn__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6em;
  width: 72%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-left: 1rem;
}
.ring-btn__no {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 2.2vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ring-btn__row {
  display: flex;
  /* align-items: center; */
  align-items: end;
  gap: 0.4em;
}
.ring-btn__label {
  font-size: clamp(1rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ring-btn__label--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .ring-btn {
    width: 219px;
  }
  .ring-btn__center {
    justify-content: center;
    width: fit-content;
    height: fit-content;
    aspect-ratio: auto;
    align-self: flex-start;
    margin-top: 43px;
    min-height: 70px;
  }
  .ring-btn__label {
    font-size: 14px;
  }
  .ring-btn__label--pc {
    display: none;
  }
  .ring-btn__label--sp {
    display: inline;
  }
}
.ring-btn__arrow {
  width: clamp(16px, 1.3vw, 20px);
  height: auto;
  filter: brightness(0) invert(1);
}
@media (hover: hover) {
  .ring-btn:hover {
    transform: scale(1.06);
  }
  .ring-btn:hover .ring-btn__ring {
    animation-duration: 9s;
  }
}
.ring-btn--hero {
  width: clamp(190px, 16vw, 240px);
}
.ring-btn--story {
  width: clamp(280px, 30vw, 460px);
}
.ring-btn--story .ring-btn__center {
  gap: 0.4em;
}
@media screen and (max-width: 768px) {
  .ring-btn--story {
    /* width: clamp(150px, 48vw, 190px); */
    width: 219px;
  }
}

@keyframes kp-ring-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ring-btn__ring {
    animation: none;
  }
}
html.kp-anim-ready [data-anim] {
  --anim-duration: .9s;
  --anim-delay: 0s;
  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
html.kp-anim-ready [data-anim]:not(.is-inview) {
  will-change: opacity, transform;
}
html.kp-anim-ready [data-anim].is-inview {
  opacity: 1;
}
html.kp-anim-ready [data-anim=text-fade] {
  opacity: 1;
}
html.kp-anim-ready [data-anim=text-fade] .kp-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
}
html.kp-anim-ready [data-anim=text-fade] .kp-line.is-in {
  opacity: 1;
  transform: none;
}
html.kp-anim-ready [data-anim=text-blur] {
  opacity: 1;
  --anim-duration: 1s;
}
html.kp-anim-ready [data-anim=text-blur] .kp-line {
  display: block;
  opacity: 0;
  filter: blur(8px);
  transition: opacity var(--anim-duration) ease-out, filter var(--anim-duration) ease-out;
}
html.kp-anim-ready [data-anim=text-blur] .kp-line.is-in {
  opacity: 1;
  filter: blur(0);
}
html.kp-anim-ready [data-anim=text-bounce] {
  --anim-duration: 1s;
  transform: scale(0.3);
}
html.kp-anim-ready [data-anim=text-bounce].is-inview {
  animation: kp-bounce-in var(--anim-duration) ease-out var(--anim-delay) both;
}
html.kp-anim-ready [data-anim=text-chars] {
  opacity: 1;
}
html.kp-anim-ready [data-anim=text-chars] .kp-char {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
  transform-origin: center bottom;
  will-change: opacity, transform;
}
html.kp-anim-ready [data-anim=text-chars].is-inview .kp-char {
  animation: kp-char-in 0.6s ease-out both;
  animation-delay: calc(var(--i) * 0.05s + var(--anim-delay));
}
html.kp-anim-ready [data-anim=fade-in] {
  transition: opacity var(--anim-duration) var(--anim-ease) var(--anim-delay);
}
html.kp-anim-ready [data-anim=img-focus] {
  filter: blur(18px);
  transform: scale(1.05);
  transition: opacity var(--anim-duration) var(--anim-ease) var(--anim-delay), filter var(--anim-duration) var(--anim-ease) var(--anim-delay), transform var(--anim-duration) var(--anim-ease) var(--anim-delay);
}
html.kp-anim-ready [data-anim=img-focus].is-inview {
  filter: blur(0);
  transform: none;
}
html.kp-anim-ready [data-anim=img-overshoot] {
  transform: scale(0.85);
}
html.kp-anim-ready [data-anim=img-overshoot].is-inview {
  animation: kp-overshoot var(--anim-duration) var(--anim-ease) var(--anim-delay) both;
}
html.kp-anim-ready [data-anim=img-clip] {
  opacity: 1;
  clip-path: inset(50% 50% 50% 50% round 50%);
}
html.kp-anim-ready [data-anim=img-clip].is-inview {
  animation: kp-clip var(--anim-duration) var(--anim-ease) var(--anim-delay) both;
}
html.kp-anim-ready [data-anim=img-zoom] {
  transform: scale(0.86);
  transition: opacity var(--anim-duration) var(--anim-ease) var(--anim-delay), transform var(--anim-duration) var(--anim-ease) var(--anim-delay);
}
html.kp-anim-ready [data-anim=img-zoom].is-inview {
  transform: none;
}
html.kp-anim-ready [data-anim=img-mask] {
  opacity: 1;
  clip-path: inset(0 0 100% 0);
}
html.kp-anim-ready [data-anim=img-mask].is-inview {
  animation: kp-mask var(--anim-duration) var(--anim-ease) var(--anim-delay) both;
}
html.kp-anim-ready [data-anim=band-reveal] {
  opacity: 1;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
html.kp-anim-ready [data-anim=band-reveal]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #029b79;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 0;
}
html.kp-anim-ready [data-anim=band-reveal] .kp-band-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}
html.kp-anim-ready [data-anim=band-reveal].is-inview::before {
  animation: kp-band-wipe var(--anim-duration) var(--anim-ease) var(--anim-delay) both;
}
html.kp-anim-ready [data-anim=band-reveal].is-inview .kp-band-text {
  animation: kp-band-text var(--anim-duration) var(--anim-ease) calc(var(--anim-delay) + var(--anim-duration) * 0.8) both;
}
html.kp-anim-ready [data-anim=line-grow] {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--anim-duration) var(--anim-ease) var(--anim-delay);
}
html.kp-anim-ready [data-anim=line-grow].is-inview {
  transform: scaleX(1);
}
html.kp-anim-ready [data-anim=band-box] {
  opacity: 1;
  position: relative;
  overflow: hidden;
}
html.kp-anim-ready [data-anim=band-box]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--band-box-bg, #fff);
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--anim-duration) var(--anim-ease) var(--anim-delay);
  z-index: 0;
}
html.kp-anim-ready [data-anim=band-box] > * {
  position: relative;
  z-index: 1;
}
html.kp-anim-ready [data-anim=band-box].is-inview::before {
  clip-path: inset(0 0 0 0);
}

@keyframes kp-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes kp-char-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes kp-overshoot {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes kp-clip {
  from {
    clip-path: inset(50% round 50%);
  }
  to {
    clip-path: inset(0 round 0);
  }
}
@keyframes kp-mask {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes kp-band-wipe {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes kp-band-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
.kp-hover-color {
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}
@media (hover: hover) {
  .kp-hover-color:hover {
    background-color: #006649;
    color: #ffffff;
    border-color: #006649;
  }
}

html.kp-snap {
  scroll-snap-type: y proximity;
}
html.kp-snap .kp-snap-sect {
  scroll-snap-align: start;
}

@media (prefers-reduced-motion: reduce) {
  html.kp-anim-ready [data-anim],
  html.kp-anim-ready [data-anim] .kp-char,
  html.kp-anim-ready [data-anim] .kp-line,
  html.kp-anim-ready [data-anim] .kp-band-text {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  html.kp-anim-ready [data-anim=band-reveal]::before {
    transform: scaleX(1) !important;
    animation: none !important;
  }
}
.mv-menu {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6% 0 13%;
  color: #ffffff;
}
.mv-menu__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.125rem, 1.6vw, 1.875rem);
  letter-spacing: -0.02em;
  margin-bottom: clamp(10px, 1.2vw, 20px);
}
.mv-menu__list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 22px);
  margin-bottom: clamp(14px, 1.4vw, 26px);
}
.mv-menu__list a {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 15px);
  transition: opacity 0.3s ease, padding-left 0.3s ease;
}
@media (hover: hover) {
  .mv-menu__list a:hover {
    opacity: 0.7;
    padding-left: 0.3em;
  }
}
.mv-menu__no {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.5rem, 1.15vw, 1.25rem);
}
.mv-menu__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(0.5rem, 1.15vw, 1.125rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.mv-menu__vr {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding-left: 20px;
  width: clamp(180px, 13vw, 250px);
  height: clamp(38px, 2.2vw, 42px);
  border: 1px solid #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1vw, 1.25rem);
  letter-spacing: -0.02em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
  .mv-menu__vr:hover {
    background: #ffffff;
    color: #029b79;
  }
}

@media screen and (max-width: 1024px) {
  .mv-menu {
    padding: 5% 5% 5% 9%;
  }
}
@media screen and (max-width: 768px) {
  .mv-menu {
    padding: clamp(28px, 8vw, 48px) 24px clamp(28px, 8vw, 48px) 28px;
  }
}
