:root {
  --ink: #111111;
  --paper: #fffaf2;
  --white: #ffffff;
  --yellow: #ffd51e;
  --blue: #105bff;
  --red: #ff5a47;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 24px;
}

.brand,
.nav-links a,
.nav-cta {
  font-weight: 900;
}

.brand {
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.nav-cta,
.card-cta,
.map-button,
.final-cta a {
  display: inline-flex;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.nav-cta {
  background: var(--yellow);
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  animation: hero-float 9s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  transform: scale(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,250,242,0) 0%, rgba(255,250,242,0.2) 42%, rgba(255,250,242,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 40px;
}

.hero-copy {
  margin: 0;
  font-weight: 900;
  line-height: 1.8;
}

.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.94;
  font-weight: 900;
}

.hero ul {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section {
  border-bottom: 2px solid var(--ink);
  padding: 96px 0;
}

.section-inner,
.section-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 900;
}

.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

.yellow {
  color: var(--yellow);
}

h2 {
  margin: 0;
  font-size: clamp(56px, 6.4vw, 96px);
  line-height: 1.05;
  font-weight: 900;
}

.lead {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-weight: 800;
  line-height: 2;
}

.concept {
  position: relative;
  overflow: hidden;
}

.concept::before,
.concept::after,
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.concept::before {
  right: -70px;
  top: 56px;
  width: 190px;
  height: 190px;
  background: var(--red);
}

.concept::after {
  display: none;
}

.concept-card {
  position: relative;
  z-index: 2;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 40px;
  box-shadow: 8px 8px 0 var(--red);
}

.concept-title {
  margin: 0;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.1;
  font-weight: 900;
}

.concept-title span {
  display: block;
}

.concept-body {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}

.credit {
  margin-top: 32px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.gallery {
  overflow: hidden;
  background: var(--white);
}

.gallery .marquee-track + .marquee-track,
.reasons .marquee-track + .marquee-track {
  margin-top: 32px;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation-duration: var(--marquee-duration, 30s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: -7s;
}

.marquee-left {
  animation-name: marquee-left;
}

.marquee-right {
  animation-name: marquee-right;
}

.gallery-group,
.reason-group {
  display: flex;
  flex-shrink: 0;
  padding: 0 24px;
  gap: 28px;
}

.gallery-photo {
  flex-shrink: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.gallery-w-0 {
  width: 420px;
}

.gallery-w-1 {
  width: 340px;
}

.gallery-w-2 {
  width: 480px;
}

.gallery-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.menu {
  background: var(--paper);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--ink);
}

.menu-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.menu-image img,
.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.menu-title-row p {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.menu-title-row h3 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 900;
}

.menu-dot {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.dot-blue {
  background: var(--blue);
}

.dot-red {
  background: var(--red);
}

.dot-yellow {
  background: var(--yellow);
}

.price {
  margin: 28px 0 0;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0;
}

.price span {
  font-size: 20px;
}

.price small {
  font-size: 16px;
}

.tax {
  margin: 4px 0 0;
  font-weight: 900;
}

.badge {
  width: fit-content;
  margin: 22px 0 0;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 8px 12px;
  font-weight: 900;
}

.menu-body {
  flex: 1;
  margin: 22px 0;
  font-weight: 800;
  line-height: 2;
}

.card-cta {
  width: fit-content;
  margin-top: auto;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
}

.reasons {
  overflow: hidden;
  background: var(--white);
}

.reason-chip {
  display: inline-flex;
  white-space: nowrap;
  border: 2px solid var(--ink);
  padding: 14px 24px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.chip-yellow {
  background: var(--yellow);
}

.chip-white {
  background: var(--white);
}

.chip-blue {
  background: var(--blue);
  color: var(--white);
}

.chip-red {
  background: var(--red);
  color: var(--white);
}

.movie {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.movie-card {
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  padding: 28px;
  box-shadow: 8px 8px 0 var(--yellow);
}

.rec-box {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, var(--red) 0 32%, var(--paper) 32% 62%, var(--yellow) 62% 100%);
  font-size: 48px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 24px 0 0;
  font-size: 32px;
  font-weight: 900;
}

.movie-card p {
  font-weight: 800;
  line-height: 2;
}

.flow-box {
  margin-top: 48px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 14px;
  box-shadow: 8px 8px 0 var(--ink);
}

.flow-dock {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: visible;
}

.flow-item {
  position: relative;
  min-height: 176px;
  transform-origin: bottom;
  border-right: 2px solid var(--ink);
  background: var(--white);
  padding: 20px;
  transition: scale 300ms ease, transform 300ms ease, background 300ms ease, box-shadow 300ms ease;
  will-change: transform;
}

.flow-item:last-child {
  border-right: 0;
}

.flow-item:hover {
  z-index: 3;
  transform: translateY(-4px);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--blue);
}

.flow-item p {
  margin: 0;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.flow-item h3 {
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 900;
}

.flow-item span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.faq-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 20px;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item.is-open button {
  background: var(--yellow);
}

.faq-item i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  background: var(--white);
  font-style: normal;
  transition: transform 240ms ease;
}

.faq-item.is-open i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms ease, opacity 240ms ease;
}

.faq-answer p {
  margin: 0;
  border-top: 2px solid var(--ink);
  padding: 20px;
  font-weight: 800;
  line-height: 2;
}

.faq-item.is-open .faq-answer {
  max-height: 280px;
  opacity: 1;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 40px;
}

.studio-image {
  min-height: 420px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--blue);
}

.info-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 24px;
  box-shadow: 8px 8px 0 var(--blue);
}

.info-card dl {
  margin: 0;
}

.info-card dt,
.info-card dd {
  margin: 0;
  border-bottom: 2px solid var(--ink);
  padding: 20px 0;
  font-weight: 900;
}

.info-card dl {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.info-card dt {
  color: var(--red);
}

.map-button {
  margin-top: 24px;
  background: var(--yellow);
  padding: 14px 20px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  text-align: center;
}

.final-cta::before {
  left: -42px;
  top: 40px;
  width: 140px;
  height: 140px;
  background: var(--red);
}

.final-cta::after {
  right: -20px;
  bottom: 0;
  width: 180px;
  height: 90px;
  border-radius: 90px 90px 0 0;
  background: var(--yellow);
}

.final-cta p {
  font-weight: 900;
}

.final-cta a {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  background: var(--yellow);
  padding: 16px 30px;
  font-size: 18px;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.72);
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 24px;
  background: var(--white);
  font-weight: 800;
}

.footer-brand {
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  border: 2px solid var(--ink);
  padding: 8px 14px;
  font-weight: 900;
}

.footer-links a:last-child {
  background: var(--red);
  color: var(--white);
}

.simple-page {
  max-width: 960px;
  margin: 120px auto;
  padding: 0 24px;
}

@keyframes hero-float {
  0%, 100% {
    transform: translate3d(-10px, 8px, 0) rotate(-0.25deg);
  }
  35% {
    transform: translate3d(9px, -8px, 0) rotate(0.25deg);
  }
  70% {
    transform: translate3d(-5px, 4px, 0) rotate(-0.1deg);
  }
}

@keyframes marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

@keyframes marquee-right {
  from {
    transform: translate3d(-33.333333%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 768px) {
  .hero-shade {
    background: linear-gradient(90deg, rgba(255,250,242,0.92) 0%, rgba(255,250,242,0.68) 25%, rgba(255,250,242,0.08) 54%, rgba(255,250,242,0) 74%);
  }

  .hero-content {
    justify-content: center;
  }

  .hero-image img {
    object-position: 64% center;
  }

  .concept h2 span,
  .concept-title span {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .section-grid,
  .menu-grid,
  .flow-dock,
  .faq-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .flow-item {
    min-height: 124px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .flow-item:last-child {
    border-bottom: 0;
  }

  .info-card dl {
    grid-template-columns: 1fr;
  }

  .info-card dt {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .info-card dd {
    padding-top: 0;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 10px 16px;
  }

  .nav-cta {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-content,
  .section-inner,
  .section-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .concept-card,
  .menu-card,
  .movie-card,
  .info-card {
    padding: 22px;
  }

  .gallery-photo img {
    height: 230px;
  }

  .gallery-w-0,
  .gallery-w-1,
  .gallery-w-2 {
    width: 250px;
  }

  .price {
    font-size: 42px;
  }
}

/* 2026-06 responsive polish */
body {
  font-size: 16px;
  line-height: 1.75;
}

body::before,
body::after {
  content: none !important;
  display: none !important;
}

.site-nav {
  position: static !important;
  transform: none !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  inset: auto !important;
  overflow: visible !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  padding: 14px clamp(16px, 5vw, 64px);
  background: transparent !important;
}

.brand {
  flex: 0 0 auto;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0;
  text-transform: none;
}

.nav-links {
  margin-left: auto;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: clamp(14px, 1.1vw, 16px);
}

.nav-cta {
  flex: 0 0 auto;
  margin-left: auto;
  justify-content: center;
  text-align: center;
  white-space: normal;
  padding: 11px 18px;
  font-size: clamp(14px, 1.1vw, 16px);
  background: var(--red);
  color: var(--white);
}

.bubbles,
.bg-shapes,
.bubble,
.shape,
.news-bubble {
  display: none !important;
}

.hero::before,
.hero::after,
.hero-content::before,
.hero-content::after {
  content: none !important;
  display: none !important;
}

.site-nav::before,
.site-nav::after,
.site-header::before,
.site-header::after,
main .hero *::before,
main .hero *::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.hero {
  isolation: isolate;
  background: var(--white) !important;
}

.hero-image {
  z-index: 0 !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.hero-image img {
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.hero-shade {
  z-index: 1 !important;
  background: linear-gradient(180deg, rgba(255,250,242,0) 0%, rgba(255,250,242,0.14) 45%, rgba(255,250,242,0.86) 100%) !important;
  mix-blend-mode: normal !important;
}

.hero-content {
  z-index: 2 !important;
}

.hero-content {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.hero-copy {
  font-size: clamp(17px, 1.65vw, 23px);
}

.hero ul {
  font-size: clamp(15px, 1.2vw, 18px);
}

.eyebrow {
  font-size: clamp(15px, 1.1vw, 17px);
}

.lead,
.concept-body,
.menu-body,
.movie-card p,
.flow-item span,
.faq-answer p,
.info-card dd,
.final-cta p,
.footer p {
  font-size: clamp(16px, 1.25vw, 18px);
}

.concept-card {
  max-width: 720px;
}

.concept-title {
  font-size: clamp(42px, 4vw, 60px);
}

.menu-title-row p,
.tax,
.badge,
.credit,
.footer-copy {
  font-size: clamp(14px, 1.05vw, 16px);
}

.card-cta,
.map-button,
.final-cta a,
.footer-links a {
  font-size: clamp(15px, 1.1vw, 17px);
}

.flow-item {
  min-height: 154px;
}

.flow-item p {
  font-size: 22px;
}

.flow-item h3 {
  margin-top: 12px;
  font-size: clamp(19px, 1.4vw, 22px);
}

.faq-item button {
  min-height: 72px;
  font-size: clamp(17px, 1.25vw, 20px);
}

.access-grid {
  align-items: stretch;
}

.info-card dl {
  gap: 0;
}

.footer {
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.footer-main,
.footer-copy,
.footer-links {
  min-width: 0;
}

.footer-brand {
  font-size: clamp(22px, 2vw, 30px);
}

.footer-sub {
  margin: 6px 0 0;
}

@media (min-width: 901px) {
  .menu-grid {
    align-items: stretch;
  }

  .menu-card {
    min-height: 100%;
  }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 14px;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    padding: 10px 16px !important;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .section h2 {
    font-size: clamp(44px, 11.2vw, 64px);
  }

  .flow-box {
    margin-top: 26px;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    align-items: start;
    min-height: auto;
    padding: 18px;
  }

  .flow-item p {
    grid-row: 1 / span 2;
    font-size: 20px;
  }

  .flow-item h3 {
    margin: 0;
    font-size: 20px;
  }

  .flow-item span {
    margin-top: 6px;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 10px 14px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-cta {
    display: none !important;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 92svh;
    padding-top: 78px;
    padding-bottom: 34px;
  }

  .hero-image img {
    object-position: 62% center;
    transform: scale(1.02);
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.75;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero ul {
    gap: 6px;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner,
  .section-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .concept-card,
  .menu-card,
  .movie-card,
  .info-card {
    padding: 20px;
  }

  .concept-title {
    font-size: 30px;
  }

  .menu-title-row {
    gap: 12px;
  }

  .menu-dot {
    width: 38px;
    height: 38px;
  }

  .menu-title-row h3 {
    font-size: 22px;
  }

  .price {
    margin-top: 20px;
    font-size: 40px;
  }

  .faq-grid {
    gap: 24px;
  }

  .faq-item button {
    min-height: 66px;
    padding: 18px;
  }

  .faq-answer p {
    padding: 18px;
  }

  .studio-image {
    min-height: 260px;
  }

  .info-card dt,
  .info-card dd {
    font-size: 15px;
  }

  .footer {
    align-items: stretch;
    gap: 18px;
  }

  .footer-copy span {
    display: none;
  }

  .footer-copy a {
    display: flex;
    margin-top: 6px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links a {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* Tailwind resetが後ろでh2をinheritへ戻すため、フォント種類は維持してサイズだけ固定 */
main h2 {
  font-size: clamp(56px, 6.4vw, 96px) !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
}

main .concept-title {
  font-size: clamp(42px, 4vw, 60px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.concept::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  main h2 {
    font-size: clamp(44px, 11.2vw, 64px) !important;
  }
}

@media (max-width: 640px) {
  main h2 {
    font-size: clamp(40px, 10.4vw, 58px) !important;
  }

  main .concept-title {
    font-size: 32px !important;
  }
}

/* 角のあるフォントへ戻す。丸ゴシックは参照デザインより甘く見えるため使わない */
:root {
  --libars-ui-font: Arial, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --libars-latin-font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --libars-h2-size-pc: clamp(56px, 6.4vw, 96px);
  --libars-h2-size-tablet: clamp(44px, 11.2vw, 64px);
  --libars-h2-size-sp: clamp(40px, 10.4vw, 58px);
  --libars-hero-title-size-pc: clamp(64px, 5.8vw, 96px);
  --libars-hero-title-size-sp: clamp(32px, 9.5vw, 38px);
  --libars-concept-title-size-pc: clamp(42px, 4vw, 60px);
  --libars-concept-title-size-sp: 32px;
  --libars-body-size-pc: clamp(16px, 1.25vw, 18px);
  --libars-body-size-sp: 15px;
  --libars-card-title-size-pc: 24px;
  --libars-card-title-size-sp: 22px;
  --libars-price-size-pc: 48px;
  --libars-price-size-sp: 40px;
  --libars-nav-size-pc: 14px;
  --libars-nav-size-sp: 18px;
}

body,
button,
input,
textarea,
select,
.brand,
.nav-links a,
.nav-cta,
.hero-copy,
.eyebrow,
.lead,
.concept-body,
.menu-card,
.movie-card,
.flow-box,
.faq-grid,
.access,
.final-cta,
.footer {
  font-family: var(--libars-ui-font) !important;
}

main h1,
main h2,
main h3,
main h4,
.concept-title,
.menu-title-row h3,
.flow-item strong,
.faq-item button,
.info-card dt,
.info-card dd {
  font-family: var(--libars-ui-font) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.hero h1,
.price,
.hero ul,
.menu-title-row p,
.badge,
.footer-brand {
  font-family: var(--libars-latin-font) !important;
  font-weight: 900 !important;
}

/* WP編集の文字サイズを現在のLPへ反映。画面幅別に最適化する */
.nav-links {
  font-size: var(--libars-nav-size-pc) !important;
}

.hero h1 {
  font-size: var(--libars-hero-title-size-pc) !important;
}

main h2 {
  font-size: var(--libars-h2-size-pc) !important;
}

main .concept-title {
  font-size: var(--libars-concept-title-size-pc) !important;
}

.hero-copy,
.lead,
.concept-body,
.menu-card,
.movie-card p,
.flow-item span,
.faq-answer p,
.info-card dd,
.final-cta p,
.footer {
  font-size: var(--libars-body-size-pc) !important;
}

.menu-title-row h3 {
  font-size: var(--libars-card-title-size-pc) !important;
}

.price {
  font-size: var(--libars-price-size-pc) !important;
}

@media (max-width: 900px) {
  main h2 {
    font-size: var(--libars-h2-size-tablet) !important;
  }
}

@media (max-width: 640px) {
  .nav-links {
    font-size: var(--libars-nav-size-sp) !important;
  }

  .hero h1 {
    font-size: var(--libars-hero-title-size-sp) !important;
  }

  main h2 {
    font-size: var(--libars-h2-size-sp) !important;
  }

  main .concept-title {
    font-size: var(--libars-concept-title-size-sp) !important;
  }

  .hero-copy,
  .lead,
  .concept-body,
  .menu-card,
  .movie-card p,
  .flow-item span,
  .faq-answer p,
  .info-card dd,
  .final-cta p,
  .footer {
    font-size: var(--libars-body-size-sp) !important;
  }

  .menu-title-row h3 {
    font-size: var(--libars-card-title-size-sp) !important;
  }

  .price {
    font-size: var(--libars-price-size-sp) !important;
  }
}

/* Hero: 画像は維持し、文字と枠を初期案のファッションポップへ戻す */
.hero {
  min-height: calc(100svh - 74px) !important;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255,250,242,0.98) 0%, rgba(255,250,242,0.86) 30%, rgba(255,250,242,0.24) 58%, rgba(255,250,242,0.02) 82%),
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,250,242,0.72) 100%) !important;
}

.hero-content {
  justify-content: center !important;
  align-items: flex-start !important;
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: calc(100svh - 74px) !important;
  padding: clamp(96px, 10vw, 148px) clamp(20px, 5vw, 76px) 70px clamp(22px, 14vw, 230px) !important;
}

.hero-category-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  max-width: min(100%, 760px);
  margin: 0 0 26px;
  padding: 8px 14px 7px;
  border: 2px solid var(--ink);
  background: var(--red);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--white);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero h1 {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0;
  font-family: var(--libars-ui-font) !important;
  font-size: var(--libars-hero-title-size-pc) !important;
  font-weight: 900 !important;
  line-height: 1.12;
  letter-spacing: 0 !important;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.hero-body {
  max-width: 560px;
  margin-top: 26px;
  color: var(--ink);
  font-family: var(--libars-ui-font) !important;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 900;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--blue);
  color: var(--ink);
  font-family: var(--libars-ui-font) !important;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero-action:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--blue);
}

.hero-action-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--red);
}

.hero-action-dark:hover {
  box-shadow: 7px 7px 0 var(--red);
}

.hero-action-light {
  background: var(--white);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: clamp(28px, 5vh, 52px);
  padding: 8px 22px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-family: var(--libars-ui-font) !important;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-image img {
    object-position: 66% center;
    transform: scale(1.06);
  }
}

@media (max-width: 900px) {
  .hero-content {
    width: 100%;
    padding-left: clamp(22px, 8vw, 72px) !important;
    padding-right: clamp(18px, 6vw, 48px) !important;
  }

  .hero-category-bar {
    max-width: 620px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-body {
    max-width: 500px;
    font-size: clamp(17px, 2.6vw, 22px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - 60px) !important;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255,250,242,0.02) 0%, rgba(255,250,242,0.18) 32%, rgba(255,250,242,0.96) 78%, rgba(255,250,242,1) 100%),
      linear-gradient(90deg, rgba(255,250,242,0.56) 0%, rgba(255,250,242,0.12) 64%, rgba(255,250,242,0) 100%) !important;
  }

  .hero-content {
    justify-content: flex-end !important;
    min-height: calc(100svh - 60px) !important;
    padding: 86px 18px 26px !important;
  }

  .hero-image img {
    object-position: 64% top;
    transform: scale(1.02);
  }

  .hero-category-bar {
    display: flex;
    box-sizing: border-box;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    gap: 0 5px;
    margin-bottom: 16px;
    padding: 7px 10px 6px;
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: var(--libars-hero-title-size-sp) !important;
    line-height: 1.18;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-body {
    max-width: 94vw;
    margin-top: 16px;
    font-size: clamp(14px, 4vw, 16px) !important;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-action {
    min-height: 44px;
    padding: 10px 16px;
    box-shadow: 4px 4px 0 var(--blue);
    font-size: 14px;
  }

  .hero-action-dark {
    box-shadow: 4px 4px 0 var(--red);
  }

  .hero-scroll {
    min-height: 36px;
    margin-top: 18px;
    padding: 7px 16px;
    font-size: 13px;
  }
}

/* 見出し改行の調整。助詞だけの孤立を防ぐ */
.concept h2,
.concept-title,
.reasons h2,
.movie h2 {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-break: strict;
}

.concept h2 {
  max-width: 620px;
  font-size: clamp(58px, 4.7vw, 82px) !important;
}

.concept-title {
  max-width: 100%;
  font-size: clamp(40px, 3.6vw, 56px) !important;
}

.reasons h2 {
  max-width: 1160px;
  font-size: clamp(68px, 7vw, 112px) !important;
  line-height: 1.06 !important;
}

.reasons .lead {
  max-width: 760px;
}

.movie h2 {
  max-width: 720px;
  font-size: clamp(56px, 5.2vw, 84px) !important;
  line-height: 1.12 !important;
}

.movie .lead {
  max-width: 760px;
}

.movie-video-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}

@media (max-width: 900px) {
  .concept h2,
  .movie h2 {
    max-width: 100%;
    font-size: clamp(46px, 9.4vw, 68px) !important;
  }

  .reasons h2 {
    max-width: 100%;
    font-size: clamp(48px, 10.5vw, 74px) !important;
  }
}

@media (max-width: 640px) {
  .concept h2,
  .movie h2 {
    font-size: clamp(38px, 10.5vw, 50px) !important;
  }

  .concept-title {
    font-size: clamp(30px, 8.5vw, 38px) !important;
  }

  .reasons h2 {
    font-size: clamp(38px, 10vw, 52px) !important;
  }
}

/* Header / Hero final polish */
.site-header {
  border-bottom: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-nav {
  min-height: 58px;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  background: transparent !important;
  background-color: transparent !important;
}

.brand {
  display: inline-flex !important;
  align-items: baseline;
  gap: 7px;
  min-width: max-content;
  color: #3b3835;
  text-decoration: none;
  text-transform: none !important;
  line-height: 1;
}

.brand-main {
  color: #3b3835;
  font-family: var(--libars-ui-font) !important;
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-sub {
  color: #8b8580;
  font-family: var(--libars-ui-font) !important;
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.hero-shade {
  background: linear-gradient(90deg,
    rgba(255,250,242,0.98) 0%,
    rgba(255,250,242,0.86) 27%,
    rgba(255,250,242,0.44) 48%,
    rgba(255,250,242,0.12) 66%,
    rgba(255,250,242,0) 82%
  ) !important;
}

.hero-content {
  min-height: calc(100svh - 66px) !important;
  padding-top: clamp(88px, 9vw, 132px) !important;
  padding-bottom: clamp(42px, 5vw, 72px) !important;
}

.hero h1 {
  max-width: min(860px, 72vw);
}

.hero-body {
  max-width: 520px;
}

@media (min-width: 768px) {
  .hero-image img {
    object-position: 69% center !important;
    transform: scale(1.04) !important;
  }
}

@media (max-width: 900px) {
  .site-nav {
    min-height: 54px;
  }

  .brand-main {
    font-size: 24px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .hero-content {
    min-height: calc(100svh - 54px) !important;
    padding-top: 68px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: transparent !important;
  }

  .site-nav {
    min-height: 52px;
    padding: 8px 16px !important;
  }

  .brand {
    gap: 6px;
  }

  .brand-main {
    font-size: 22px;
    letter-spacing: -0.03em;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: calc(100svh - 52px) !important;
  }

  .hero-shade {
    background:
      linear-gradient(90deg,
        rgba(255,250,242,0.94) 0%,
        rgba(255,250,242,0.76) 35%,
        rgba(255,250,242,0.22) 66%,
        rgba(255,250,242,0) 100%
      ),
      radial-gradient(ellipse at 24% 84%,
        rgba(255,250,242,0.96) 0%,
        rgba(255,250,242,0.86) 34%,
        rgba(255,250,242,0.35) 66%,
        rgba(255,250,242,0) 100%
      ) !important;
  }

  .hero-content {
    justify-content: flex-end !important;
    min-height: calc(100svh - 52px) !important;
    padding: 68px 18px 22px !important;
  }

  .hero-image img {
    object-position: 66% top !important;
    transform: scale(1.01) !important;
  }

  .hero-category-bar {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 7px 8px 6px;
    font-size: 9px;
    line-height: 1.3;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: var(--libars-hero-title-size-sp) !important;
    line-height: 1.18 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .hero-body {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(13px, 3.55vw, 15px) !important;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    width: min(250px, 100%);
    max-width: 100%;
    gap: 9px;
    margin-top: 16px;
  }

  .hero-action {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 6px;
    font-size: 12.5px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    box-shadow: 4px 4px 0 var(--blue);
  }

  .hero-action-dark {
    box-shadow: 4px 4px 0 var(--red);
  }

  .hero-scroll {
    min-height: 34px;
    margin-top: 14px;
    padding: 7px 15px;
    font-size: 13px;
  }
}

@media (max-width: 370px) {
  .brand-main {
    font-size: 20px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 29px !important;
  }

  .hero-body {
    font-size: 13px !important;
  }

  .hero-action {
    font-size: 11.5px;
    padding-inline: 4px;
  }
}

/* ===== 2026-07 additions: mobile nav / estimate CTA / news ===== */

/* --- a) 見積導線ボタン --- */
.nav-est {
  display: inline-flex;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--yellow);
  padding: 10px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.hero-action-est {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--blue);
}

.hero-action-est:hover {
  box-shadow: 7px 7px 0 var(--blue);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.final-cta a.cta-estimate {
  background: var(--ink);
  color: var(--paper);
}

/* --- b) モバイルナビ（ハンバーガー＋ドロワー） --- */
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    z-index: 60;
    flex-direction: column;
    gap: 0;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
    font-size: 16px;
  }

  .nav-links a {
    padding: 12px 14px;
    font-weight: 900;
  }

  body.nav-open .nav-links {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 10px;
  }

  .brand,
  .nav-est {
    flex: 0 0 auto;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .nav-est {
    padding: 8px 10px;
    font-size: 12.5px;
  }
}

/* --- c) news ページ様式 --- */
:root {
  --color-bg: var(--paper);
  --color-bg-warm: #fff3cf;
  --color-text: var(--ink);
  --color-text-sub: #555;
  --color-text-mute: #888;
  --color-accent-warm: var(--red);
  --color-accent-warm-dark: #d63a26;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 8px;
}

.handwriting {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-accent-warm {
  color: var(--red);
}

.section-heading {
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
}

.section-subtitle {
  color: #555;
  font-size: 14px;
}

.btn-secondary {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 900;
}

.news-archive .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 4px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.news-archive .page-numbers.current {
  background: var(--yellow);
}

.news-single .entry-title {
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
}

.news-single .entry-meta {
  color: #888;
  font-size: 13px;
}

.news-single .entry-thumbnail img {
  border: 2px solid var(--ink);
  border-radius: 12px;
}

.news-content h2 {
  margin-top: 40px;
  border-left: 5px solid var(--red);
  padding-left: 14px;
  font-weight: 900;
}

.news-content h3 {
  margin-top: 28px;
  font-weight: 900;
}

.news-content p {
  color: var(--ink);
  line-height: 1.9;
}

.news-content a {
  color: var(--red);
  text-decoration: underline;
}

.news-content blockquote {
  margin: 24px 0;
  border-radius: 10px;
  background: #fff3cf;
  padding: 18px 22px;
  color: #555;
}

.news-content img {
  border-radius: 10px;
}

.news-content ul,
.news-content ol {
  padding-left: 22px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .news-single .entry-title {
    font-size: 24px;
  }

  .section-heading {
    font-size: 26px;
  }

  .news-content blockquote {
    padding: 14px 16px;
  }
}

.simple-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

/* --- d) 遊び心の微調整 --- */
.menu-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.menu-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.card-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.marquee-track:hover {
  animation-play-state: paused;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
