:root {
  --navy: #1e2753;
  --accent: #ff5638;
  --beige: #F2D1B7;
  --green: #06c755;
  --gray: #525252;
  --lgray: #7e7e7e;
  --f-en: 'Optima', 'Palatino Linotype', serif;
  --f-jp: 'Noto Sans JP', sans-serif;
  --f-jps: 'Noto Serif JP', serif;
  --max: 1800px;
  --ease-out-premio: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout-premio: cubic-bezier(0.65, 0, 0.35, 1);
  --cookie-offset: 0px;
  --cta-mobile-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fdfaf4;
  color: #000;
  overflow-x: hidden;
  position: relative;
}

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

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

.link-more {
  font-family: var(--f-en);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--accent);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
}
.link-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.link-more:hover::after {
  transform: scaleX(1);
}

main a:not([class]),
body > section a:not([class]) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s ease;
}
main a:not([class]):hover,
body > section a:not([class]):hover {
  opacity: 0.72;
}

.breadcrumb {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 0 clamp(28px, 7.2vw, 117px) 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  font-family: var(--f-jp);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--lgray);
}
.breadcrumb a,
.breadcrumb span {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease-out-premio), opacity 0.25s ease;
}
.breadcrumb a:hover {
  color: var(--accent);
  opacity: 1;
}
.breadcrumb .breadcrumb-sep,
.breadcrumb .current {
  color: var(--lgray);
}

.breadcrumb-current-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 34px;
    padding: 0 29px 14px;
    gap: 6px;
  }
  .breadcrumb-current-group {
    flex-basis: 100%;
    margin-top: 4px;
    padding-left: 0;
  }
  .breadcrumb-current-group .breadcrumb-sep {
    display: none;
  }
}
@keyframes load-slide-down {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes load-slide-up {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}
@keyframes load-hero-frame {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 24% round 120px 0 0 0);
    transform: translateX(26px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 120px 0 0 0);
    transform: translateX(0);
  }
}
@keyframes hero-image-breathe {
  from {
    transform: scale(1.065) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.018) translate3d(-0.8%, 0.5%, 0);
  }
}
@keyframes load-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes load-title-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 115% 0);
    filter: blur(8px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    clip-path: inset(-18% -4% -22% -4%);
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes load-sub-materialize {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(12px) scale(1.012);
    letter-spacing: inherit;
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-y, 28px)) scale(var(--reveal-scale, 1));
  filter: blur(var(--reveal-blur, 12px));
  transition: opacity var(--reveal-duration, 0.82s) var(--ease-out-premio), transform var(--reveal-duration, 0.82s) var(--ease-out-premio), filter var(--reveal-duration, 0.82s) var(--ease-out-premio);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .site-header,
  .hero-img-wrap img,
  .hero-img-wrap,
  .hero-title,
  .hero-sub,
  .hero-sub-line,
  .hero-scroll {
    animation: none !important;
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }
}
#bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.bg-obj {
  position: absolute;
  top: 0;
  opacity: 0.55;
  mix-blend-mode: multiply;
  user-select: none;
  will-change: top;
}
@media (max-width: 768px) {
  .bg-obj {
    opacity: 0.4;
  }
}

.bg-obj:nth-child(1) {
  width: clamp(240px, 30vw, 480px);
  right: 0;
}
@media (max-width: 768px) {
  .bg-obj:nth-child(1) {
    width: 55vw;
    right: -8%;
  }
}

.bg-obj:nth-child(2) {
  width: clamp(140px, 16vw, 250px);
  left: 15%;
}
@media (max-width: 768px) {
  .bg-obj:nth-child(2) {
    width: 34vw;
    left: 15%;
  }
}

.bg-obj:nth-child(3) {
  width: clamp(210px, 26vw, 400px);
  right: -2%;
}
@media (max-width: 768px) {
  .bg-obj:nth-child(3) {
    width: 50vw;
    right: -4%;
  }
}

.bg-obj:nth-child(4) {
  width: clamp(180px, 22vw, 340px);
  left: 44%;
}
@media (max-width: 768px) {
  .bg-obj:nth-child(4) {
    width: 44vw;
    left: 44%;
  }
}

.bg-obj:nth-child(5) {
  width: clamp(280px, 36vw, 560px);
  right: -7%;
}
@media (max-width: 768px) {
  .bg-obj:nth-child(5) {
    width: 62vw;
    right: -10%;
  }
}

.bg-obj:nth-child(6) {
  width: clamp(190px, 24vw, 370px);
  left: -3%;
}
@media (max-width: 768px) {
  .bg-obj:nth-child(6) {
    width: 46vw;
    left: -5%;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fdfaf4;
  box-shadow: 0 1px 0 rgba(30, 39, 83, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
  height: 96px;
  animation: load-slide-down 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media (max-width: 1400px) {
  .site-header {
    padding: 0 1.5em;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
  }
}

.header-logo img {
  height: 46px;
  width: auto;
}
@media (max-width: 768px) {
  .header-logo img {
    height: 32px;
  }
}

.header-service-line {
  margin: 0 auto 0 clamp(20px, 3vw, 48px);
  padding-right: clamp(18px, 3vw, 48px);
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px 12px;
  font-family: var(--f-jps);
  font-weight: 500;
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.header-service-line span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.header-service-line span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}

@media (max-width: 1180px) {
  .header-service-line {
    max-width: 48vw;
    gap: 4px 10px;
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .header-service-line {
    margin-left: 16px;
    padding-right: 14px;
    max-width: none;
    gap: 0 7px;
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .header-service-line span + span::before {
    width: 2px;
    height: 2px;
    margin-right: 7px;
  }
}

@media (max-width: 768px) {
  .header-service-line {
    display: none;
  }
}

.hamburger-btn {
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.3s ease, transform 0.3s var(--ease-out-premio);
}
.hamburger-btn:hover {
  transform: translateY(-1px);
}
.hamburger-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.42s var(--ease-out-premio), opacity 0.28s ease, background 0.3s ease;
  transform-origin: center;
}

.nav-open .hamburger-btn span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-open .hamburger-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: radial-gradient(circle at 16% 18%, rgba(255, 86, 56, 0.18), transparent 28%), linear-gradient(135deg, #1e2753 0%, #161d42 58%, #111733 100%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-8px);
  transition: opacity 0.45s var(--ease-out-premio), visibility 0s linear 0.45s, clip-path 0.62s var(--ease-out-premio), transform 0.62s var(--ease-out-premio);
  overflow-y: auto;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  transition-delay: 0s;
}
@media (max-width: 768px) {
  .nav-overlay {
    top: 72px;
  }
}

.nav-overlay :is(.nav-item-group, .nav-sub-row) {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  transition: opacity 0.58s var(--ease-out-premio), transform 0.58s var(--ease-out-premio), filter 0.58s var(--ease-out-premio);
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(1) {
  transition-delay: 0.105s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(2) {
  transition-delay: 0.15s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(3) {
  transition-delay: 0.195s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(4) {
  transition-delay: 0.24s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(5) {
  transition-delay: 0.285s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(6) {
  transition-delay: 0.33s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(7) {
  transition-delay: 0.375s;
}

.nav-overlay.is-open :is(.nav-item-group, .nav-sub-row):nth-of-type(8) {
  transition-delay: 0.42s;
}

.nav-body {
  flex: 1;
  display: flex;
  padding: 10vh 60px;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(72px, 12vw, 180px);
}
@media (max-width: 1400px) {
  .nav-body {
    padding: 8vh 48px;
  }
}
@media (max-width: 768px) {
  .nav-body {
    flex-direction: column;
    padding: 40px 24px;
    justify-content: flex-start;
    gap: 20px;
  }
}

.nav-col {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .nav-col {
    width: 100%;
  }
}

.nav-item-group {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .nav-item-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
  }
}

.nav-item-en {
  font-family: var(--f-en);
  font-size: 38px;
  color: #fff;
  line-height: 1.2;
  display: block;
  transition: color 0.3s ease, transform 0.36s var(--ease-out-premio);
}
.nav-item-en:hover {
  color: var(--accent);
  transform: translateX(8px);
}
@media (max-width: 1400px) {
  .nav-item-en {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .nav-item-en {
    font-size: 28px;
    display: inline-block;
  }
}

.nav-item-en-static {
  cursor: default;
}
.nav-item-en-static:hover {
  color: #fff;
  transform: none;
}

.nav-item-jp {
  font-family: var(--f-jps);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .nav-item-jp {
    font-size: 10px;
    margin-bottom: 4px;
    display: inline-block;
  }
}

.nav-sub {
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .nav-sub {
    margin-left: 2px;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

.nav-sub-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .nav-sub-row {
    justify-content: space-between;
    padding-left: 6px;
    padding-bottom: 5px;
    margin-bottom: 12px;
  }
}

.nav-sub-en {
  font-family: var(--f-en);
  font-size: 26px;
  color: #fff;
  line-height: 1;
  display: block;
  transition: color 0.3s ease, transform 0.36s var(--ease-out-premio);
}
.nav-sub-en:hover {
  color: var(--accent);
  transform: translateX(8px);
}
@media (max-width: 1400px) {
  .nav-sub-en {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .nav-sub-en {
    font-size: 20px;
    display: inline-block;
  }
}

.nav-sub-jp {
  font-family: var(--f-jps);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s ease;
}
.nav-sub-jp:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .nav-sub-jp {
    font-size: 10px;
    display: inline-block;
    margin-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay,
  .nav-overlay :is(.nav-item-group, .nav-sub-row),
  .nav-item-en,
  .nav-sub-en {
    clip-path: none !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
.cta-sp-tel,
.cta-sp-btns {
  display: none;
}

.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 440px;
  background: var(--navy);
  padding: 0;
  z-index: 90;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(30, 39, 83, 0.24);
  transition: bottom 0.36s var(--ease-out-premio), transform 0.48s var(--ease-out-premio), box-shadow 0.36s ease;
}
.fixed-cta.is-collapsed {
  transform: translateY(calc(100% - 48px));
}
.fixed-cta.is-collapsed .cta-toggle-icon {
  transform: rotate(180deg);
}
@media (min-width: 769px) and (max-width: 1180px) {
  .fixed-cta {
    bottom: calc(var(--cookie-offset, 0px) + 24px);
  }
}
@media (max-width: 768px) {
  .fixed-cta {
    width: auto;
    max-width: none;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 14px env(safe-area-inset-bottom);
    height: calc(var(--cta-mobile-height) + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 0;
    box-shadow: 0 -12px 44px rgba(30, 39, 83, 0.18);
    transform: none !important;
  }
  .fixed-cta .cta-toggle,
  .fixed-cta .cta-body,
  .fixed-cta .cta-tel-badge,
  .fixed-cta .cta-phone,
  .fixed-cta .cta-hours,
  .fixed-cta .cta-btns {
    display: none;
  }
  .fixed-cta .cta-sp-tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    gap: 0;
    min-width: 0;
  }
  .fixed-cta .cta-sp-btns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    flex: 1 1 100%;
    width: 100%;
    max-width: 560px;
    min-width: 0;
    margin: 0 auto;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .fixed-cta .cta-sp-tel {
    display: none;
  }
  .fixed-cta .cta-sp-btns {
    max-width: 100%;
  }
}

.cta-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0 24px;
  border-radius: 18px 18px 0 0;
  transition: background 0.28s ease;
}
.cta-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .cta-toggle {
    display: none;
  }
}

.cta-toggle-label {
  font-family: var(--f-jps);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
}

.cta-toggle-icon {
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.cta-body {
  padding: 24px 48px 40px;
}
@media (max-width: 768px) {
  .cta-body {
    display: none;
  }
}

.cta-tag {
  display: inline-block;
  font-family: var(--f-jps);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.cta-tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-tel-badge {
  background: #fdfaf4;
  padding: 1px 10px;
  font-family: var(--f-en);
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0.4px;
  flex-shrink: 0;
}

.cta-phone {
  font-family: var(--f-en);
  font-size: 40px;
  color: #fff;
  letter-spacing: -1px;
  display: block;
}

.cta-hours {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  text-align: center;
  display: block;
  margin-bottom: 18px;
}

.cta-btns {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.cta-btn {
  height: 50px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 4px;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out-premio);
}
.cta-btn.mail {
  background: var(--accent);
}
.cta-btn.line {
  background: var(--green);
}
.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cta-sp-tel-badge {
  display: inline-block;
  background: #fdfaf4;
  color: var(--navy);
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1px 6px;
  width: fit-content;
  margin-bottom: 2px;
}

.cta-sp-phone {
  font-family: var(--f-en);
  font-size: 21px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: block;
}
@media (max-width: 390px) {
  .cta-sp-phone {
    font-size: 19px;
  }
}

.cta-sp-hours {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-sp-btn {
  width: 100%;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.3s var(--ease-out-premio);
}
.cta-sp-btn.tel {
  background: #fdfaf4;
  color: var(--navy);
}
.cta-sp-btn.mail {
  background: var(--accent);
}
.cta-sp-btn.line {
  background: var(--green);
}
.cta-sp-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media (max-width: 390px) {
  .cta-sp-btn {
    width: 100%;
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 600px) {
  .cta-sp-btn {
    width: 100%;
  }
}

.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: min(900px, 100vw - 540px);
  max-width: calc(100vw - 48px);
  box-sizing: border-box;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 39, 83, 0.1);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(30, 39, 83, 0.14);
  backdrop-filter: blur(18px);
  padding: 14px 16px 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  animation: cookie-rise 0.72s var(--ease-out-premio) 1.05s both;
}
.cookie-bar.is-hidden {
  display: none;
}
@media (max-width: 1180px) {
  .cookie-bar {
    width: auto;
    right: 24px;
    max-width: calc(100vw - 48px);
  }
}
@media (max-width: 768px) {
  .cookie-bar {
    bottom: calc(var(--cta-mobile-height) + env(safe-area-inset-bottom) + 10px);
    left: 12px;
    right: 12px;
    max-height: min(42dvh, 290px);
    flex-direction: column;
    padding: 14px;
    gap: 12px;
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 14px;
    max-width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-bar {
    animation: none;
  }
}
@keyframes cookie-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-text {
  flex: 1;
  font-size: 10px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
}
.cookie-text a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .cookie-text {
    font-size: 10px;
    line-height: 1.7;
  }
}

.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cookie-btns {
    width: 100%;
    min-width: 0;
  }
}

.cookie-btn-settings, .cookie-btn-accept {
  height: 42px;
  min-width: 98px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s var(--ease-out-premio);
}
@media (max-width: 768px) {
  .cookie-btn-settings, .cookie-btn-accept {
    flex: 1;
    min-width: 0;
    padding: 0;
  }
}

.cookie-btn-accept {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
  background: #121938;
  border-color: #121938;
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.4);
  color: var(--navy);
  border: 1px solid rgba(30, 39, 83, 0.35);
}
.cookie-btn-settings:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  background: #fdfaf4;
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .cookie-modal {
    align-items: end;
    padding: 14px;
  }
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.cookie-modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(86dvh, 760px);
  overflow-y: auto;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid rgba(30, 39, 83, 0.18);
  background: #fdfaf4;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  padding: clamp(26px, 3.4vw, 38px);
  transform: translateY(8px);
  transition: transform 0.22s ease;
}
.cookie-modal.is-open .cookie-modal-panel {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .cookie-modal-panel {
    max-height: calc(100dvh - 28px);
    border-radius: 4px;
    padding: 28px 18px 18px;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.cookie-modal-close::before, .cookie-modal-close::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 7px;
  width: 16px;
  height: 1px;
  background: var(--navy);
}
.cookie-modal-close::before {
  transform: rotate(45deg);
}
.cookie-modal-close::after {
  transform: rotate(-45deg);
}

.cookie-modal-eyebrow {
  margin: 0 0 8px;
  color: rgba(30, 39, 83, 0.62);
  font-family: var(--f-jp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cookie-modal-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--f-jps);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cookie-modal-lead {
  margin: 16px 0 0;
  color: rgba(40, 44, 52, 0.82);
  font-family: var(--f-jp);
  font-size: 13px;
  line-height: 1.9;
}
.cookie-modal-lead a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-modal-options {
  margin-top: 24px;
  border-top: 1px solid rgba(30, 39, 83, 0.18);
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(30, 39, 83, 0.14);
}
.cookie-option h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--f-jps);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cookie-option p {
  margin: 8px 0 0;
  color: rgba(40, 44, 52, 0.72);
  font-family: var(--f-jp);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .cookie-option {
    gap: 14px;
  }
}

.cookie-option-toggle {
  cursor: pointer;
}

.cookie-option-required {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(30, 39, 83, 0.72);
  font-family: var(--f-jp);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(30, 39, 83, 0.2);
  transition: background 0.25s ease;
}
.cookie-switch span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fdfaf4;
  box-shadow: 0 4px 12px rgba(30, 39, 83, 0.18);
  transition: transform 0.25s ease;
}
.cookie-switch input:checked + span {
  background: var(--navy);
}
.cookie-switch input:checked + span::before {
  transform: translateX(24px);
}
.cookie-switch input:focus-visible + span {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}
@media (max-width: 768px) {
  .cookie-modal-actions {
    flex-direction: column-reverse;
  }
}

.cookie-modal-primary,
.cookie-modal-secondary {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
  font-family: var(--f-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cookie-modal-primary:hover,
.cookie-modal-secondary:hover {
  opacity: 0.72;
}
@media (max-width: 768px) {
  .cookie-modal-primary,
  .cookie-modal-secondary {
    width: 100%;
  }
}

.cookie-modal-primary {
  border: 1px solid var(--navy);
  color: #fff;
  background: var(--navy);
}

.cookie-modal-secondary {
  border: 1px solid rgba(30, 39, 83, 0.42);
  color: var(--navy);
  background: #fdfaf4;
}

.service-section {
  max-width: var(--max);
  margin: 80px auto 0;
  padding: 0 117px;
  overflow-x: hidden;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-section {
    padding: 0 24px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .service-section {
    padding: 0 24px;
    margin-top: 20px;
  }
}

.service-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-header {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .service-header {
    margin-bottom: 20px;
  }
}

.service-header-dot {
  display: none;
}

.service-header > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-title-jp {
  order: 2;
  font-family: var(--f-jp);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin: 12px 0 0;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-title-jp {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .service-title-jp {
    font-size: 11px;
  }
}

.service-title-en {
  order: 1;
  font-family: var(--f-en);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 0.95;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-title-en {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .service-title-en {
    font-size: 40px;
  }
}

.service-cards {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  width: calc(100% + 117px);
  cursor: grab;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 130px), transparent 100%);
}
.service-cards:active {
  cursor: grabbing;
}
.service-cards::-webkit-scrollbar {
  display: none;
}
.service-cards {
  scrollbar-width: none;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-cards {
    gap: 10px;
    width: calc(100% + 24px);
    mask-image: none;
  }
}
@media (max-width: 768px) {
  .service-cards {
    gap: 10px;
    width: calc(100% + 24px);
    mask-image: none;
  }
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 0 0 clamp(350px, 25vw, 400px);
  height: clamp(360px, 50vw, 560px);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  transform: scale(0.965);
  opacity: 0.72;
  filter: saturate(0.92);
  transition: transform 0.54s var(--ease-out-premio), opacity 0.42s ease, filter 0.42s ease;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 0.7s var(--ease-out-premio);
}
.service-card.is-current {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1.04);
}
.service-card:hover, .service-card.is-current:hover {
  transform: translateY(-8px) scale(1);
  opacity: 1;
}
.service-card:hover img, .service-card.is-current img {
  transform: scale(1);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-card {
    flex: 0 0 72vw;
    height: 100vw;
    border-radius: 12px;
    transform: none;
    opacity: 1;
    filter: none;
  }
}
@media (max-width: 768px) {
  .service-card {
    flex: 0 0 52vw;
    height: 66vw;
    border-radius: 12px;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform 0.42s var(--ease-out-premio);
}
@media (max-width: 768px) {
  .service-card-content {
    padding: 20px 16px;
  }
}

.service-card:hover .service-card-content,
.service-card.is-current .service-card-content {
  transform: translateY(0);
}

.service-card-jp {
  font-family: var(--f-jps);
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-card-jp {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .service-card-jp {
    font-size: 11px;
  }
}

.service-card-en {
  font-family: var(--f-en);
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 1.1;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-card-en {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .service-card-en {
    font-size: 24px;
  }
}

.service-progress {
  width: min(360px, 36vw);
  height: 2px;
  margin: 28px 0 0 auto;
  background: rgba(30, 39, 83, 0.12);
  overflow: hidden;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-progress {
    width: 100%;
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .service-progress {
    width: 100%;
    margin-top: 18px;
  }
}

.service-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease-out-premio);
}

.service-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .service-nav {
    display: none;
  }
}

.service-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease-out-premio), opacity 0.25s ease;
}
.service-nav-btn svg {
  display: block;
  stroke: var(--navy);
  transition: stroke 0.2s ease;
}
.service-nav-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.service-nav-btn:hover svg {
  stroke: #fff;
}
.service-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.service-nav-btn:disabled:hover {
  background: transparent;
  border-color: #ccc;
  transform: none;
}
.service-nav-btn:disabled:hover svg {
  stroke: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card img,
  .service-card-content,
  .service-progress-bar,
  .service-nav-btn {
    transform: none !important;
    transition: none !important;
  }
}
.photo-section {
  position: relative;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 70px) 0;
  overflow: hidden;
  isolation: isolate;
}

.wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.wave-canvas--back {
  z-index: 0;
}

.wave-canvas--front {
  z-index: 2;
}

.photo-strip {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 4em 0 8em;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}
@media (prefers-reduced-motion: reduce) {
  .photo-strip .photo-track {
    animation-play-state: paused;
  }
}
@media (max-width: 768px) {
  .photo-strip {
    padding: 0 0 4em;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }
}

.photo-track {
  display: flex;
  gap: clamp(32px, 8vw, 80px);
  width: max-content;
  animation: strip-scroll 34s linear infinite;
  will-change: transform;
}
@media (max-width: 768px) {
  .photo-track {
    animation-duration: 26s;
  }
}

@keyframes strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.strip-img {
  flex-shrink: 0;
  width: clamp(240px, 26vw, 420px);
  height: clamp(180px, 20vw, 300px);
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  background: #eef6fb;
  filter: saturate(0.96);
}
.strip-img:nth-child(even) {
  transform: translateY(24px);
}
.strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .strip-img {
    width: 58vw;
    height: 38vw;
    border-radius: 10px;
  }
  .strip-img:nth-child(even) {
    transform: translateY(12px);
  }
}

.site-footer {
  margin-top: 80px;
  background: #fdfaf4;
  border-top: 1px solid rgba(30, 39, 83, 0.1);
  padding: 120px 0 0;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .site-footer {
    padding: 4em 0;
    margin-top: 3em;
    background: #fdfaf4;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 4em 0;
    margin-top: 3em;
    background: #fdfaf4;
  }
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-inner {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    padding: 0 20px;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 5fr 2fr 2fr;
  gap: clamp(60px, 10vw, 120px);
  padding-bottom: 3em;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding-bottom: 0;
  }
}

.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    margin: auto;
    height: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    margin: auto;
    height: 40px;
    margin-bottom: 8px;
  }
}

.footer-brand {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 2.8px;
  margin-bottom: 10px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-brand {
    text-align: center;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
    font-size: 12px;
  }
}

.footer-addr {
  font-family: var(--f-jps);
  font-weight: 600;
  font-size: 15px;
  color: var(--gray);
  line-height: 24px;
  letter-spacing: 1.5px;
  margin: 2em auto 8px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-addr {
    font-size: 13px;
    margin: 1em auto 8px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-addr {
    font-size: 13px;
    margin: 1em auto 8px;
    text-align: center;
  }
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 32px;
  padding: 3px 2em;
  font-family: var(--f-jp);
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.footer-map-btn:hover {
  background: #fdfaf4;
  border-color: var(--accent);
  color: var(--accent);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-map-btn {
    font-size: 10px;
    margin: 4px auto 2em;
  }
}
@media (max-width: 768px) {
  .footer-map-btn {
    font-size: 10px;
    margin: 4px auto 2em;
  }
}

.footer-tel-block {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-tel-block {
    margin-top: 1em;
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer-tel-block {
    margin-top: 1em;
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}

.footer-tel-badge {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  display: inline-block;
  background: var(--navy);
  padding: 2px 10px;
  font-family: var(--f-en);
  font-size: 13px;
  color: #fff;
  letter-spacing: 1.04px;
  font-weight: 700;
}

.footer-tel {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--f-en);
  font-size: 40px;
  color: var(--navy);
  letter-spacing: -1.6px;
  display: block;
  line-height: 1;
  transition: color 0.25s ease;
}
.footer-tel:hover {
  color: var(--accent);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-tel {
    font-size: 40px;
    letter-spacing: -1.44px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .footer-tel {
    font-size: 40px;
    letter-spacing: -1.44px;
    margin-top: 8px;
  }
}

.footer-tel-hrs {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--f-jp);
  font-size: 13px;
  color: var(--navy);
  margin-top: 4px;
  text-align: left;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-tel-hrs {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-tel-hrs {
    text-align: center;
  }
}

.footer-cta-row {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-cta-row {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-cta-row {
    justify-content: center;
  }
}

.footer-cta-btn {
  height: clamp(44px, 10vw, 60px);
  max-width: 240px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #fff;
  transition: opacity 0.3s ease, transform 0.32s var(--ease-out-premio);
}
.footer-cta-btn.web {
  background: var(--accent);
}
.footer-cta-btn.line {
  background: var(--green);
}
.footer-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-cta-btn {
    max-width: 160px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer-cta-btn {
    max-width: 160px;
    font-size: 14px;
  }
}

.footer-nav-col {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-nav-col {
    gap: 16px;
    padding: 0 20px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .footer-nav-col {
    gap: 16px;
    padding: 0 20px;
    text-align: left;
  }
}

.footer-nav-col a {
  color: var(--lgray);
  transition: color 0.3s ease, transform 0.34s var(--ease-out-premio);
}
.footer-nav-col a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-nav-en {
  font-family: var(--f-en);
  font-size: 28px;
  color: var(--lgray);
  line-height: 24px;
  margin-bottom: 4px;
  display: block;
}
.footer-nav-en:hover {
  color: var(--accent);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-nav-en {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .footer-nav-en {
    font-size: 20px;
  }
}

.footer-nav-en-static {
  pointer-events: none;
}

.footer-nav-jp {
  font-family: var(--f-jps);
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  display: block;
}

.footer-nav-sub {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 1.2em;
}
.footer-nav-sub li {
  font-family: var(--f-jps);
  font-size: clamp(12px, 2vw, 15px);
  color: var(--gray);
  line-height: 36px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-nav-sub {
    margin-bottom: 0;
    padding-left: 0;
  }
  .footer-nav-sub li {
    font-size: 13px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .footer-nav-sub {
    margin-bottom: 0;
    padding-left: 0;
  }
  .footer-nav-sub li {
    font-size: 13px;
    line-height: 32px;
  }
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 16px 0 80px;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-bottom {
    padding: 16px 0 40px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    padding: 16px 0 40px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.footer-policy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-policy a,
.footer-policy button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--f-jp);
  font-size: 11px;
  color: var(--lgray);
  padding: 0 16px;
  line-height: 1.6;
  cursor: pointer;
  text-decoration: none;
}
.footer-policy .sep {
  width: 1px;
  height: 9px;
  background: var(--lgray);
}

.footer-copy {
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--lgray);
}
