@charset "UTF-8";
html {
  overflow-x: clip;
  width: 100%
}
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-ja);
  color: var(--color-text-base);
  background-color: var(--color-bg-base);
  overflow-x: clip;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh
}
main {
  flex: 1 0 auto
}
.footer {
  flex-shrink: 0
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-6)
}
@media (min-width:768px) {
  .container {
    padding-inline: var(--space-10)
  }
}
[id] {
  scroll-margin-top: 100px
}
#about {
  scroll-margin-top: 200px
}
@media (min-width:768px) {
  [id] {
    scroll-margin-top: 120px
  }
  #about {
    scroll-margin-top: 220px
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap
}
[data-reveal-stagger] > *,
[data-reveal] {
  opacity: 0
}
[data-reveal-stagger] > *,
[data-reveal=up],
[data-reveal] {
  transform: translateY(32px)
}
[data-reveal=down] {
  transform: translateY(-32px)
}
[data-reveal=left] {
  transform: translateX(-48px)
}
[data-reveal=right] {
  transform: translateX(48px)
}
[data-reveal-stagger].is-visible > *,
[data-reveal].is-visible {
  animation: revealIn 1s var(--ease-default) forwards
}
@keyframes revealIn {
  to {
    opacity: 1;
    transform: none
  }
}
[data-reveal-stagger].is-visible > :nth-child(1) {
  animation-delay: 0s
}
[data-reveal-stagger].is-visible > :nth-child(2) {
  animation-delay: 120ms
}
[data-reveal-stagger].is-visible > :nth-child(3) {
  animation-delay: 240ms
}
[data-reveal-stagger].is-visible > :nth-child(n+4) {
  animation-delay: 360ms
}
@media (prefers-reduced-motion:reduce) {
  [data-reveal-stagger] > *,
  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 0 0 0 20px;
  background-color: transparent
}
.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}
.header__logo {
  display: block;
  margin-top: 8px;
  transition: opacity var(--duration-fast) var(--ease-default)
}
.header__logo:hover {
  opacity: .8
}
.header__logo-inner {
  display: flex;
  align-items: center;
  gap: var(--space-1)
}
.header__logo-text {
  width: 110.13px;
  height: 50.29px
}
.header__logo-chara {
  width: 75.11px;
  height: 71.47px
}
.header__menu-btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 65px;
  height: 65px;
  background-color: var(--color-white);
  border-radius: 0 0 0 var(--radius-lg);
  box-shadow: none;
  transition: opacity var(--duration-fast) var(--ease-default)
}
.header__menu-btn:hover {
  opacity: .85
}
.header__menu-icon {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-text-base);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-default)
}
@media (min-width:768px) {
  .header {
    padding: 0 0 0 50px
  }
  .header__logo {
    margin-top: 24px
  }
  .header__logo-text {
    width: 172.08px;
    height: 78.57px
  }
  .header__logo-chara {
    width: 93.89px;
    height: 89.34px
  }
  .header__menu-btn {
    width: 100px;
    height: 100px;
    gap: 7px
  }
  .header__menu-icon {
    width: 36px
  }
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,.4);
  opacity: 0;
  z-index: 350;
  transition: opacity var(--duration-normal) var(--ease-default);
  pointer-events: none
}
.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw,280px);
  z-index: 360;
  display: flex;
  flex-direction: column;
  padding: 65px var(--space-6) var(--space-3);
  background-color: var(--color-white);
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-in-out);
  overflow-y: auto;
  overscroll-behavior: contain
}
.drawer.is-open {
  transform: translateX(0)
}
.drawer__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  background: 0 0;
  border: 0;
  cursor: pointer;
  transition: opacity var(--duration-fast) var(--ease-default)
}
.drawer__close:hover {
  opacity: .6
}
.drawer__close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-base);
  border-radius: 2px;
  transform-origin: center
}
.drawer__close-bar:nth-child(1) {
  transform: translate(-50%,-50%) rotate(45deg)
}
.drawer__close-bar:nth-child(2) {
  transform: translate(-50%,-50%) rotate(-45deg)
}
.drawer__nav {
  margin-top: var(--space-6)
}
.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 44px;
  text-align: center
}
.drawer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-default)
}
.drawer__link:hover {
  opacity: .7
}
.drawer__link-en {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--color-primary);
  line-height: 1
}
.drawer__link-ja {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: .02em
}
@media (min-width:768px) {
  .drawer {
    padding: 100px var(--space-6) var(--space-3)
  }
  .drawer__close {
    width: 100px;
    height: 100px
  }
  .drawer__list {
    gap: 56px
  }
  .drawer__link {
    gap: 14px
  }
  .drawer__link-en {
    font-size: 36px
  }
  .drawer__link-ja {
    font-size: 16px
  }
}
.drawer__characters {
  margin-top: auto;
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--space-2)
}
.drawer__character {
  width: auto;
  height: 100px
}
.drawer__copy {
  margin-top: var(--space-2);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-base);
  text-align: center;
  letter-spacing: .06em
}
@media (min-width:768px) {
  .drawer {
    width: 280px;
    padding: var(--space-3) var(--space-6) var(--space-3)
  }
}
body.is-drawer-open {
  overflow: hidden
}
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden
}
@media (max-width:767px) {
  .hero {
    height: 550px;
    min-height: 550px;
    max-height: 550px
  }
}
.hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}
.hero__scroll {
  position: fixed;
  left: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2)
}
.hero__scroll-text {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  color: var(--color-white);
  writing-mode: vertical-rl;
  letter-spacing: var(--tracking-widest);
  opacity: .9
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom,transparent,#fff 30%,#fff 70%,transparent);
  animation: scrollPulse 2s ease-in-out infinite
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: .3;
    transform: scaleY(.5)
  }
  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}
.hero__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
  z-index: 2;
  text-align: center;
  padding-inline: var(--space-6)
}
.hero__title {
  font-family: Inter,sans-serif;
  font-size: clamp(2.5rem,7vw,9rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -.02em;
  opacity: .85
}
.hero__sparkles {
  position: absolute;
  inset: -80px -8% -60px -8%;
  pointer-events: none;
  z-index: 1;
  overflow: visible
}
.hero__sparkle {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.5 L13.8 10.2 L22.5 12 L13.8 13.8 L12 22.5 L10.2 13.8 L1.5 12 L10.2 10.2 Z' fill='%23fff7c2'/></svg>") center/contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(255, 220, 120, .85));
  opacity: 0;
  transform: scale(0) rotate(0);
  animation: heroSparkle var(--dur,2s) cubic-bezier(.22,1,.36,1) forwards
}
@keyframes heroSparkle {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0)
  }
  20% {
    opacity: 1;
    transform: scale(var(--scale,1)) rotate(var(--rot,180deg))
  }
  60% {
    opacity: 1
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx,0),var(--dy,-30px)) scale(0) rotate(calc(var(--rot,180deg) + 120deg))
  }
}
.hero__title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-90px) scale(.3) rotate(-15deg);
  transform-origin: center bottom;
  will-change: opacity,transform
}
.hero__title.is-revealed .hero__title-char {
  animation: heroCharBounce .95s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: calc(var(--i) * 70ms)
}
@keyframes heroCharBounce {
  0% {
    opacity: 0;
    transform: translateY(-90px) scale(.3) rotate(-15deg)
  }
  55% {
    opacity: 1;
    transform: translateY(12px) scale(1.18) rotate(3deg)
  }
  78% {
    transform: translateY(-3px) scale(.96) rotate(-1deg)
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0)
  }
}
.hero__title.is-finished .hero__title-char {
  opacity: 1;
  animation: heroCharIdle 2.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 90ms)
}
@keyframes heroCharIdle {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0)
  }
  50% {
    opacity: 1;
    transform: translateY(-5px)
  }
}
.hero__title.is-finished {
  animation: heroBreath 5s ease-in-out infinite
}
@keyframes heroBreath {
  0%,
  100% {
    text-shadow: 0 0 18px rgba(255,247,194,.35)
  }
  50% {
    text-shadow: 0 0 36px rgba(255,247,194,.85)
  }
}
.hero__divider {
  display: block;
  width: 0;
  height: 3px;
  margin: var(--space-4) auto 0;
  background: linear-gradient(90deg,transparent 0,#fff7c2 50%,transparent 100%);
  box-shadow: 0 0 14px rgba(255,247,194,.7);
  transition: width .9s cubic-bezier(.22,1,.36,1) 1.6s
}
.hero__divider.is-revealed {
  width: clamp(100px,18vw,240px)
}
.hero__subtitle {
  margin-top: var(--space-5);
  font-size: 18px;
  color: rgba(255,255,255,.92);
  letter-spacing: .08em;
  text-shadow: 0 0 8px rgba(0,0,0,.35)
}
.hero__subtitle-char {
  display: inline-block;
  opacity: 0
}
.hero__subtitle-br-sp {
  display: none
}
@media (max-width:767px) {
  .hero__subtitle-br-sp {
    display: inline
  }
}
.hero__subtitle.is-revealed .hero__subtitle-char {
  animation: heroSubChar 10ms linear forwards;
  animation-delay: calc(2s + var(--i) * 55ms)
}
@keyframes heroSubChar {
  to {
    opacity: 1
  }
}
.hero__subtitle::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  color: #fff7c2;
  opacity: 0;
  animation: heroCaret .55s steps(1) 1.9s 12 forwards
}
@keyframes heroCaret {
  0%,
  50% {
    opacity: 1
  }
  100%,
  50.01% {
    opacity: 0
  }
}
@media (prefers-reduced-motion:reduce) {
  .hero__subtitle-char,
  .hero__title-char {
    opacity: 1;
    transform: none;
    animation: none!important
  }
  .hero__title.is-finished,
  .hero__title.is-revealed {
    animation: none
  }
  .hero__divider {
    transition: none;
    width: clamp(100px,18vw,240px)
  }
  .hero__sparkle,
  .hero__subtitle::after {
    animation: none!important;
    opacity: 0
  }
}
.hero__character {
  position: absolute;
  right: clamp(16px,12.76vw,204px);
  bottom: max(20px,20.38vw - clamp(93.5px,11.8vw,188.65px));
  width: clamp(170px,21.45vw,343px);
  pointer-events: none
}
@media (max-width:767px) {
  .hero__character {
    right: -12px;
    bottom: calc(clamp(100px,29.115vw,559px) * .7 - 41.5px)
  }
}
.hero__character-body {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1
}
.hero__character-hand {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 4
}
@media (min-width:768px) {
  .hero__content {
    transform: translateY(-50%)
  }
  .hero__subtitle {
    font-size: var(--text-xl);
    margin-top: var(--space-6);
    font-weight: 700
  }
  .hero__scroll {
    left: var(--space-16)
  }
}
.wave-section {
  position: relative;
  overflow: visible
}
.wave-section--yellow {
  --wave-h: clamp(100px, 32vw, 600px);
  margin-top: -2px
}
.wave-section__white-bg {
  display: none
}
.hero-bridge {
  position: relative;
  height: clamp(280px,46vw,600px);
  overflow: visible
}
.about__bg-text {
  position: absolute;
  top: clamp(16px,2vw,32px);
  left: clamp(16px,18.75%,360px);
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}
@media (max-width:767px) {
  .hero-bridge {
    height: 315px
  }
}
.about {
  position: relative;
  z-index: 2;
  margin: 0 0 100px 0;
  background-color: var(--color-yellow);
  overflow: visible
}
.about::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/559;
  background-image: url(../images/yellow-wave-over.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1
}
.about::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/688;
  background-image: url(../images/yellow-wave-under.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1
}
@media (min-width:768px) {
  .about::after {
    top: 94%
  }
}
.about__bg-text span {
  display: block;
  font-family: Inter,sans-serif;
  font-weight: 700;
  font-size: clamp(44px,7.2vw,138px);
  color: var(--color-bg-ghost);
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: -.02em;
  opacity: .85;
  transform-origin: left center
}
.about__bg-text[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none
}
.about__bg-text[data-reveal] span {
  opacity: 0;
  transform: translateX(-90px) rotate(-4deg)
}
.about__bg-text[data-reveal].is-visible span {
  animation: bgTextEntrance .95s cubic-bezier(.34,1.56,.64,1) forwards,bgTextWakuwaku 4.5s ease-in-out infinite;
  animation-delay: 0s,1.5s
}
.about__bg-text[data-reveal].is-visible span:nth-child(2) {
  animation-delay: 220ms,1.9s
}
.about__bg-text[data-reveal].is-visible span:nth-child(3) {
  animation-delay: 440ms,2.3s
}
@keyframes bgTextEntrance {
  0% {
    opacity: 0;
    transform: translateX(-90px) rotate(-4deg)
  }
  100% {
    opacity: .85;
    transform: translateX(0) rotate(0)
  }
}
@keyframes bgTextWakuwaku {
  0%,
  100% {
    transform: translateX(0) rotate(0)
  }
  25% {
    transform: translateX(-5px) rotate(-1.6deg)
  }
  50% {
    transform: translateX(2px) rotate(.6deg)
  }
  75% {
    transform: translateX(5px) rotate(1.8deg)
  }
}
@media (prefers-reduced-motion:reduce) {
  .about__bg-text[data-reveal] span,
  .about__bg-text[data-reveal].is-visible span {
    opacity: .85;
    transform: none;
    animation: none
  }
}
.about__inner {
  position: relative;
  z-index: 2;
  top: -33px
}
@media (min-width:768px) {
  .about__inner {
    top: -100px
  }
}
.about__heading {
  margin-bottom: var(--space-6)
}
.about__title {
  font-size: clamp(32px,4.3vw,55px);
  font-weight: 900;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap
}
.about__title-en {
  font-family: Inter,sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: .843em
}
.about__title-brand {
  font-family: Inter,sans-serif;
  font-weight: 700
}
.about__title-ja {
  font-size: var(--text-2xl);
  margin-top: var(--space-2);
  letter-spacing: var(--tracking-wide);
  font-weight: 700
}
.about__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: var(--space-8);
  max-width: 1160px;
  letter-spacing: .05em
}
@media (min-width:768px) {
  .about__lead {
    font-size: var(--text-lg)
  }
}
.about__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  max-width: 1160px
}
.about__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  min-height: clamp(200px,20.8333333333vw,400px);
  transition: box-shadow var(--duration-fast) var(--ease-default)
}
.about__card:hover {
  box-shadow: var(--shadow-xl)
}
.about__card-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}
.about__card-category {
  font-size: var(--text-xs);
  color: var(--color-black);
  margin-bottom: 10px
}
.about__card:first-child .about__card-category {
  margin-bottom: 0
}
.about__card:nth-child(2) .about__card-category {
  margin-bottom: 12px
}
@media (min-width:768px) {
  .about__card:nth-child(2) .about__card-category {
    margin-bottom: 28px
  }
}
.about__card-logo {
  margin-bottom: var(--space-5)
}
.about__card-logo img {
  height: 45px;
  width: auto;
  max-width: 100%
}
.about__card-logo--onoret {
  display: flex;
  align-items: center;
  gap: var(--space-3)
}
.about__card-logo--onoret img {
  height: 50px;
  width: auto
}
.about__card-desc {
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: var(--leading-ja);
  margin-top: 0
}
.about__card-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-base);
  align-self: flex-end;
  margin-top: auto
}
.about__card-link img {
  display: block;
  width: 32px;
  height: 32px
}
.about__goods-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-8);
  box-shadow: var(--shadow-md);
  max-width: 1160px;
  min-height: clamp(80px,8.3333333333vw,160px);
  margin-bottom: var(--space-10);
  transition: box-shadow var(--duration-fast) var(--ease-default)
}
.about__goods-link:hover {
  box-shadow: var(--shadow-xl)
}
.about__goods-name {
  font-size: var(--text-xl);
  font-weight: 700
}
.about__goods-link-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-base)
}
.about__goods-link-cta img {
  display: block;
  width: 32px;
  height: 32px
}
.about__tagline {
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--color-text-base);
  font-weight: 500
}
@media (min-width:768px) {
  .about {
    margin: 0 0 500px 0;
    z-index: 3;
    max-height: 700px
  }
  .about__cards {
    flex-direction: row;
    gap: var(--space-5)
  }
  .about__card {
    flex: 1;
    padding: var(--space-10) var(--space-8)
  }
  .about__card-category {
    font-size: var(--text-lg)
  }
  .about__card-logo img {
    width: clamp(120px,25.5208333333vw,490px);
    height: auto
  }
  .about__card-logo--onoret img {
    width: auto;
    height: clamp(40px,3.125vw,60px)
  }
  .about__card-desc {
    font-size: var(--text-base);
    font-weight: 700
  }
  .about__card-link img,
  .about__goods-link-cta img {
    width: 48px;
    height: 48px
  }
  .about__goods-name {
    font-size: var(--text-3xl)
  }
  .about__tagline {
    font-size: var(--text-3xl)
  }
  .about__title-en {
    font-size: clamp(36px,3.6458333333vw,70px)
  }
  .about__title-brand {
    font-size: clamp(42px,4.3229166667vw,83px)
  }
}
.section__title {
  font-family: Inter,sans-serif;
  font-size: clamp(1.875rem,1.177rem + 2.977vw,4.75rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  position: relative;
  display: inline-block
}
.section__title-ja {
  font-size: var(--text-2xl);
  margin-top: var(--space-2);
  letter-spacing: 0
}
.service {
  position: relative;
  z-index: 3;
  background-color: var(--color-bg-base);
  --wave-h: clamp(100px, 32vw, 400px);
  padding-top: 40px;
  padding-bottom: var(--wave-h);
  overflow: visible
}
@media (max-width:767px) {
  .service {
    z-index: -1
  }
}
.service::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  aspect-ratio: 1920/589;
  background-image: url(../images/white-wave-over.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none
}
.service__inner {
  position: relative;
  z-index: 2
}
@media (max-width:767px) {
  .service__inner.container {
    padding-bottom: 100px
  }
}
.service__heading {
  margin-bottom: var(--space-10)
}
.service__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-8)
}
.service__card {
  background-color: var(--color-bg-base)
}
.service__card-figure {
  aspect-ratio: 360/280;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4)
}
.service__card-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-default)
}
.service__card:hover .service__card-figure img {
  transform: scale(1.04)
}
.service__card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2)
}
.service__card-desc {
  font-size: var(--text-base);
  line-height: var(--leading-ja);
  letter-spacing: .05em
}
.service__chara {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: calc(clamp(100px,29.5vw,589px) - 26.51vw - clamp(30px,2.8vw,54px));
  width: clamp(170px,19.2708333333vw,370px);
  pointer-events: none
}
@media (max-width:767px) {
  .service__chara {
    bottom: -14px
  }
}
.service__chara-hand-front {
  display: none
}
@media (max-width:767px) {
  .service__chara-hand {
    display: none
  }
  .service__chara-hand-front {
    display: block;
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 170px;
    z-index: 10;
    pointer-events: none
  }
  .service__chara-hand-front img {
    display: block;
    width: 100%;
    height: auto
  }
}
.service__chara-body {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1
}
.service__chara-hand {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3
}
@media (min-width:768px) {
  .service__cards {
    flex-direction: row;
    gap: var(--space-6)
  }
  .service__card {
    flex: 1
  }
}
.event {
  position: relative;
  background-color: var(--color-bg-blue);
  --wave-h: clamp(100px, 32vw, 500px);
  padding-top: max(80px,26.51vw - clamp(100px,32vw,500px) + 80px);
  margin-bottom: var(--wave-h);
  overflow: visible
}
.event::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  aspect-ratio: 1920/564;
  background-image: url(../images/blue-wave-over.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 4
}
.event::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  aspect-ratio: 1920/587;
  background-image: url(../images/blue-wave-under.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 4
}
.event__inner {
  position: relative;
  z-index: 3
}
.event__heading {
  margin-bottom: var(--space-10)
}
.event__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6)
}
.event__card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration-fast) var(--ease-default)
}
.event__card:hover {
  box-shadow: var(--shadow-xl)
}
.event__card-figure {
  aspect-ratio: 360/215;
  overflow: hidden
}
.event__card-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-default)
}
.event__card:hover .event__card-figure img {
  transform: scale(1.04)
}
.event__card-body {
  padding: var(--space-4) var(--space-5)
}
.event__card-date {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  letter-spacing: .05em
}
.event__card-title-text {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: .05em
}
.event__card-desc {
  font-size: var(--text-base);
  line-height: var(--leading-ja);
  margin-bottom: var(--space-4)
}
.event__card-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-primary);
  transition: color var(--duration-fast) var(--ease-default)
}
@media (min-width:768px) {
  .event__cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-6);
    justify-items: center
  }
  .event__card {
    width: 100%;
    max-width: 360px;
    max-height: 453px;
    overflow: hidden
  }
}
.company {
  position: relative;
  z-index: 5;
  background-color: transparent;
  --wave-h: clamp(100px, 32vw, 400px);
  padding-top: 40px;
  padding-bottom: var(--wave-h)
}
.company__heading {
  margin-bottom: var(--space-10)
}
.company__info,
.company__rep {
  background-color: var(--color-bg-base);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8)
}
.company__rep {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6)
}
.company__photo {
  width: 164px;
  height: 195px;
  overflow: hidden;
  border-radius: var(--radius-md)
}
.company__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.company__rep-name {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-left: 2px solid var(--color-black);
  padding-left: var(--space-2)
}
.company__rep-label {
  font-size: var(--text-base);
  letter-spacing: var(--tracking-widest);
  color: var(--color-text-muted)
}
.company__name-en {
  font-family: Inter,sans-serif;
  font-size: var(--text-base);
  color: var(--color-primary);
  letter-spacing: var(--tracking-wide)
}
.company__name-ja {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: .1em
}
.company__rep-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-ja);
  color: var(--color-text-base)
}
.company__box {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-8)
}
.company__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3)
}
.company__info {
  flex: 1
}
.company__name-corp {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-6)
}
.company__table {
  margin-bottom: var(--space-8)
}
.company__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-black)
}
.company__row:last-child {
  border-bottom: none
}
.company__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  flex-shrink: 0
}
.company__value {
  font-size: var(--text-base);
  line-height: var(--leading-ja);
  flex: 1;
  min-width: 0;
  width: 100%
}
.company__row:has(.company__related-item) .company__value {
  display: flex;
  flex-direction: column;
  gap: var(--space-3)
}
.company__related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%
}
.company__address-label {
  font-weight: 700;
  margin-right: var(--space-4)
}
.company__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 121px;
  height: 30px;
  font-size: var(--text-sm);
  color: var(--color-text-base);
  border: 1px solid var(--color-text-base);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease-default),color var(--duration-fast) var(--ease-default)
}
.company__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary)
}
.company__map {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
  width: 100%;
  max-width: 700px
}
.company__map img {
  width: 100%;
  height: auto
}
.company__map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7/3;
  border: 0
}
@media (min-width:768px) {
  .company__info,
  .company__rep {
    padding: var(--space-16)
  }
  .company__box {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-12)
  }
  .company__profile {
    width: 220px;
    flex-shrink: 0
  }
  .company__rep {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-10);
    padding: var(--space-16)
  }
  .company__rep-name {
    flex-shrink: 0;
    margin-top: calc(-1 * var(--space-16));
    padding-top: var(--space-16)
  }
  .company__rep-message {
    flex: 1;
    font-size: var(--text-lg);
    letter-spacing: .02em;
    line-height: 1.9rem
  }
  .company__row {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-32);
    padding: var(--space-12) 0
  }
  .company__label {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--color-text-base);
    min-width: 90px;
    padding-top: 2px
  }
  .company__value {
    width: auto
  }
  .company__row:has(.company__related-item) .company__value {
    display: grid;
    grid-template-columns: max-content max-content;
    -moz-column-gap: 130px;
    column-gap: 130px;
    row-gap: var(--space-6);
    align-items: center
  }
  .company__related-item {
    display: contents
  }
}
.page-event-single ~ .footer::before,
.page-events ~ .footer::before {
  display: none
}
.page-events__header {
  padding-top: 120px;
  padding-bottom: var(--space-8);
  background-color: var(--color-bg-base)
}
.page-events__body {
  position: relative;
  z-index: 4;
  padding-bottom: var(--space-32);
  background-color: var(--color-bg-base)
}
.page-events__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6)
}
.page-events__cards .event__card-inner {
  display: block;
  text-decoration: none;
  color: inherit
}
.page-events__empty {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  padding: var(--space-20) 0
}
@media (min-width:768px) {
  .page-events__header {
    padding-top: 140px;
    padding-bottom: var(--space-10)
  }
  .page-events__cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-6)
  }
  .page-events__cards .event__card {
    max-width: none;
    max-height: none
  }
}
.pagination {
  margin-top: var(--space-12)
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap
}
.pagination__item a,
.pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background-color var(--duration-fast) var(--ease-default),color var(--duration-fast) var(--ease-default)
}
.pagination__item a {
  background-color: var(--color-white);
  color: var(--color-text-base);
  box-shadow: var(--shadow-sm)
}
.pagination__item a:hover {
  background-color: var(--color-primary);
  color: var(--color-white)
}
.pagination__item span.current {
  background-color: var(--color-primary);
  color: var(--color-white)
}
.pagination__item span.dots {
  background: 0 0;
  box-shadow: none
}
.page-event-single__header {
  padding-top: 100px;
  padding-bottom: var(--space-4);
  background-color: var(--color-bg-base)
}
.page-event-single__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-default)
}
.page-event-single__back:hover {
  color: var(--color-primary)
}
.page-event-single__body {
  position: relative;
  z-index: 4;
  padding-bottom: var(--space-32);
  background-color: var(--color-bg-base)
}
.page-event-single__content {
  max-width: 800px
}
.page-event-single__thumbnail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-8)
}
.page-event-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block
}
.page-event-single__date {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  letter-spacing: .05em
}
.page-event-single__title {
  font-size: clamp(1.5rem,1rem + 2vw,2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-8)
}
.page-event-single__desc {
  font-size: var(--text-base);
  line-height: var(--leading-ja);
  margin-bottom: var(--space-10)
}
.page-event-single__action {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border)
}
.page-event-single__entry-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: opacity var(--duration-fast) var(--ease-default)
}
.page-event-single__entry-btn:hover {
  opacity: .85
}
.page-event-single__entry-btn img {
  filter: brightness(0) invert(1)
}
@media (min-width:768px) {
  .page-event-single__header {
    padding-top: 120px
  }
  .page-event-single__content {
    margin: 0 auto
  }
}
.footer {
  position: relative;
  overflow: visible;
  background-color: var(--color-primary);
  padding-top: 60px;
  padding-bottom: var(--space-20);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw
}
.footer::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 6px);
  left: 0;
  width: 100%;
  aspect-ratio: 1920/625;
  background-image: url(../images/pnk_curve.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 3
}
.footer__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8)
}
.footer__logo {
  display: block;
  transition: opacity var(--duration-fast) var(--ease-default)
}
.footer__logo:hover {
  opacity: .8
}
.footer__logo-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  filter: brightness(0) invert(1)
}
.footer__logo-text {
  height: 50px;
  width: 109px
}
.footer__logo-chara {
  height: 55px;
  width: 58px
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6)
}
.footer__nav-list a {
  color: var(--color-white);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  transition: opacity var(--duration-fast) var(--ease-default)
}
.footer__nav-list a:hover {
  opacity: .7
}
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.7);
  text-align: center
}
@media (min-width:768px) {
  .footer {
    padding-top: 100px
  }
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
  }
  .footer__copy {
    width: 100%;
    text-align: center;
    margin-top: var(--space-4)
  }
}