@charset "UTF-8";

/* ==========================================================================
   株式会社 彩都 - Modern Corporate Style
   Theme: Organic Fluid & Artisan (Inspired by brewgood.jp)
   ========================================================================== */

:root {
  /* Colors - Earthy & Modern */
  --color-bg-body: #ffffff;
  /* Pure White for Fluid Background */
  --color-text-main: #333333;
  --color-text-sub: #666666;
  --color-primary: #1a1a1a;
  /* Deep Navy */
  --color-accent: #c0a26e;
  /* Muted Gold */
  --color-accent-rgb: 192, 162, 110;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-border: rgba(0, 0, 0, 0.08);

  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 40px;
  --sp-lg: 80px;
  --sp-xl: 120px;
  --sp-xxl: 200px;

  /* Typography */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: transparent;
  line-height: 1.9;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Typography Utils */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

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

.serif {
  font-family: var(--font-serif);
}

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

.mb-sm {
  margin-bottom: var(--sp-sm);
}

.mb-md {
  margin-bottom: var(--sp-md);
}

.mb-lg {
  margin-bottom: var(--sp-lg);
}

.mt-md {
  margin-top: var(--sp-md);
}

.pt-sm {
  padding-top: var(--sp-sm);
}

.pt-md {
  padding-top: var(--sp-md);
}

.pt-lg {
  padding-top: var(--sp-lg);
}

.pb-sm {
  padding-bottom: var(--sp-sm);
}

.pb-md {
  padding-bottom: var(--sp-md);
}

.pb-lg {
  padding-bottom: var(--sp-lg);
}

/* Line Break Utility */
.u-sp-br {
  display: none;
}

.u-pc-br {
  display: block;
}

@media (max-width: 900px) {
  .u-sp-br {
    display: block;
  }

  .u-pc-br {
    display: none;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.section-sub--light {
  color: var(--color-white);
  opacity: 0.8;
}

.u-delay-1 { transition-delay: 0.1s; }
.u-delay-2 { transition-delay: 0.2s; }
.u-delay-3 { transition-delay: 0.3s; }
.u-delay-4 { transition-delay: 0.4s; }
.u-delay-5 { transition-delay: 0.5s; }

.u-gap-10 { gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 36px;
  border-radius: 50px;
  /* Pill shape */
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(192, 162, 110, 0.2);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 162, 110, 0.3);
}

.btn-outline {
  border: 1px solid var(--color-text-main);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-text-main);
  color: var(--color-white);
}

.btn-text {
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0 0 4px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

@media screen and (max-width: 900px) {
  .btn {
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 0.9rem;
    letter-spacing: 0.06rem;
  }
  .btn-lg {
    width: 80%;
    min-width: 250px;
  }
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: var(--sp-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: var(--sp-sm);
  display: inline-block;
  /* Ensure centered properly */
}

.section-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 8px;
  text-align: center;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-main);
}

.site-header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.mobile-menu-trigger {
  display: none;
}

@media screen and (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }
  .site-header .container {
    width: 100%;
  }
  .logo a {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-swiper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-swiper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide-01 {
  background-image: url(/assets/images/hero/hero01.jpg);
}
.hero-slide-02 {
  background-image: url(/assets/images/hero/hero02.jpg);
}
.hero-slide-03 {
  background-image: url(/assets/images/hero/hero03.jpg);
}
.hero-slide-04 {
  background-image: url(/assets/images/hero/hero04.jpg);
}

/* Overlay for text readability */
.hero-slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .hero-slide-bg,
.swiper-slide-prev .hero-slide-bg,
.swiper-slide-duplicate-active .hero-slide-bg,
.swiper-slide-duplicate-prev .hero-slide-bg {
  animation: zoomUp 8s linear forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  width: 100%;
  max-width: 900px;
  padding: 0;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-family: var(--font-sans);
  opacity: 0.9;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  z-index: 5;
  color: var(--color-white);
  opacity: 0.8;
}

.scroll-indicator span {
  display: block;
  margin-bottom: 12px;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: var(--color-white);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==========================================================================
   Section Backgrounds
   ========================================================================== */
.message-section {
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

.recruit-section {
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
}

.news-section {
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Message Section
   ========================================================================== */
.message-section {
  padding: var(--sp-xl) 0;
}

.message-lead {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.message-body {
  font-size: 1.1rem;
  line-height: 2.4;
  text-align: center;
  color: var(--color-text-sub);
}

.message-body p{
  margin-bottom: 20px !important;
}

/* ==========================================================================
   Brands Section
   ========================================================================== */
.brands-section {
  background-color: #1a1a1a;
  color: var(--color-white);
}

.brands-section .section-sub {
  color: var(--color-accent);
}

.brands-section .section-title {
  color: var(--color-white);
}

.brand-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}

.brand-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.brand-card:nth-child(even) {
  direction: rtl;
}

.brand-card:nth-child(even) > * {
  direction: ltr;
}

.brand-card:hover {
  transform: none;
}

.brand-img {
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}

.brand-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-card:hover .brand-img::after {
  opacity: 1;
}

.brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-card:hover .brand-img img {
  transform: scale(1.08);
}

.brand-info {
  padding: 40px 0;
}

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: none;
  padding-bottom: 0;
}

.brand-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 3px;
  font-weight: 500;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.brand-concept {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 2;
}

.brand-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  font-size: 0.9rem;
  margin-bottom: 36px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.brand-detail dt {
  color: var(--color-accent);
  font-weight: 600;
}

.brand-detail dd {
  color: rgba(255, 255, 255, 0.8);
}

.brand-reserve {
  grid-column: 1 / -1;
  margin-top: 16px;
  margin-bottom: 0;
  padding: 40px 0;
  text-align: center;
}

.brand-reserve .btn {
  width: 60%;
  padding: 40px 36px;
  border-radius: 5px;
  border: 1px solid var(--color-accent);
  margin: 0 auto;
}

.brand-reserve .btn:hover {
  background: transparent;
  color: var(--color-accent);
}

.brand-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.brand-links .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.brand-links .btn-outline:hover {
  background: var(--color-white);
  color: #1a1a1a;
}

.link-instagram {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.link-instagram i {
  margin-right: 6px;
}

.link-instagram:hover {
  color: var(--color-white);
  border-bottom-color: currentColor;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 11px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Recruit Section
   ========================================================================== */
.recruit-section {
  padding: var(--sp-xl) 0;
}

.recruit-section .content-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--color-white);
  padding: 80px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.recruit-img {
  flex: 1;
  position: relative;
}

.recruit-img::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  z-index: 0;
  border-radius: var(--border-radius);
}

.recruit-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--border-radius);
}

.recruit-content {
  flex: 1;
}

.recruit-content .section-sub {
  text-align: left;
  margin-bottom: 16px;
}

.recruit-title {
  font-size: 2.2rem;
  margin-bottom: 24px;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.recruit-lead {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  color: var(--color-accent);
  margin-bottom: 28px;
  line-height: 1.8;
}

.recruit-text {
  color: var(--color-text-sub);
  line-height: 2;
}

.recruit-note {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  margin-top: 16px;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
  padding: var(--sp-xl) 0;
}

.news-section .section-header {
  margin-bottom: var(--sp-md);
}
.news-list {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background: #f9f9f9;
}

.news-date {
  font-family: var(--font-sans);
  color: var(--color-text-sub);
  font-size: 0.85rem;
  width: 110px;
  flex-shrink: 0;
  font-weight: 500;
}

.news-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 24px;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.news-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--color-accent);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: var(--sp-lg);
}

.page-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  transition: all 0.3s ease;
  font-weight: 500;
}

.page-num.current,
.page-num:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ==========================================================================
   News Detail Page
   ========================================================================== */
.news-detail-section {
  margin-top: var(--header-height);
  padding-top: var(--sp-lg);
}

.news-detail-section .container {
  max-width: 800px;
}

.news-detail-header .news-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 5px !important;
}

/* The news-tag on the detail page doesn't need the layout styles from the list view */
.news-detail-header .news-tag {
  margin-right: 0;
  min-width: auto;
  text-align: initial;
  flex-shrink: initial;
}

.news-detail-header .news-title {
  font-size: 2.0rem;
  line-height: 1.4;
}

.news-detail-body {
  line-height: 2;
  color: var(--color-text-main);
}

.news-detail-body p {
  line-height: 1.8;
  margin-bottom: 20px !important;
}

.news-detail-footer {
  margin-top: 80px !important;
  padding-top: 80px !important;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

@media screen and (max-width: 900px) {
  .news-detail-header {
    margin-bottom: 20px !important;
  }
  .news-detail-header .news-title {
    font-size: 1.6rem !important;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  .news-detail-footer {
    margin-top: 40px !important;
    padding-top: 40px !important;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #202020;
  color: #e0e0e0;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo {
  color: var(--color-white);
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav ul li {
  list-style: none;
}

.footer-nav a {
  color: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: inline-block;
}

@media screen and (max-width: 900px) {
  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-nav ul {
    flex-flow: row wrap;
    align-items: center;
  }
}

/* ==========================================================================
   Animation Utils
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
        /* opacity 0.8s ease-out, */ transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  :root {
    --sp-lg: 40px;
    --sp-xl: 60px;
    --sp-xxl: 80px;
  }

  .hero-text-vertical {
    writing-mode: horizontal-tb;
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    padding-top: 100px;
    flex-direction: column-reverse;
    /* Put subtext below title on mobile */
  }

  .hero-title {
    font-size: 2rem;
    /* Smaller font on mobile */
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-copy {
    font-size: 2.5rem;
    gap: 0;
  }

  .hero-copy span {
    display: block;
    /* Stack blocks */
    margin-bottom: 10px;
  }

  .hero-sub {
    border-top: none;
    border-bottom: 1px solid currentColor;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .recruit-section .content-wrapper {
    flex-direction: column;
    padding: 30px;
    gap: 40px;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
  }

  .site-nav.is-active {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .site-nav a {
    font-size: 1.5rem;
    color: var(--color-white);
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
  }

  .site-nav a:hover {
    color: var(--color-accent);
  }

  .mobile-menu-trigger {
    display: block;
    width: 30px;
    height: 15px;
    position: fixed;
    top: 33px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
  }

  .mobile-menu-trigger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #ffffff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .mobile-menu-trigger.is-active span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-trigger.is-active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.scrolled .mobile-menu-trigger span {
    background: var(--color-primary);
  }

  .mobile-menu-trigger.is-active span,
  .site-header.is-active .mobile-menu-trigger span {
    background: var(--color-white) !important;
  }

  .mobile-menu-trigger span:first-child {
    top: 0;
  }

  .mobile-menu-trigger span:last-child {
    bottom: 0;
  }



  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    margin-bottom: 0 !important;
  }

  /* Brand Section Mobile */
  .brand-grid {
    gap: 40px;
    margin-top: 40px;
  }

  .brand-card {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .brand-card:nth-child(even) {
    direction: ltr;
  }

  .brand-card:last-child .brand-links {
    margin-bottom: 0;
  }
  .brand-info {
    padding-top: 25px !important;
  }
  .brand-header {
    margin-bottom: 20px;
  }
  .brand-cat {
    margin-bottom: 0;
  }
  .brand-concept {
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .brand-img {
    height: 280px;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-info {
    padding: 20px 0;
  }

  .brand-detail {
    padding: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 8px;
  }

  .brand-detail dt {
    margin-top: 4px;
    color: var(--color-accent);
  }

  .brand-detail dt:first-child {
    margin-top: 0;
  }

  .brand-detail dd {
    margin-bottom: 4px;
  }

  .recruit-img::before {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0.5;
  }

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

  .recruit-content .section-sub {
    text-align: center;
    margin-bottom: 16px;
  }

  .recruit-title {
    word-break: break-all;
    font-size: 1.6rem;
  }

  .news-section .section-header {
    margin-bottom: 20px;
  }
  .news-list {
    margin: 20px auto;
  }

  .news-item {
    flex-wrap: wrap;
    padding: 20px;
  }

  .news-date {
    width: auto;
    margin-right: 12px;
    margin-bottom: 4px;
  }

  .news-tag {
    margin-bottom: 4px;
  }

  .news-link {
    width: 100%;
    margin-top: 8px;
    display: block;
  }

  .message-lead {
    font-size: 1.4rem;
  }

  .message-body {
    font-size: 1rem;
    line-height: 2;
  }

  .message-body p{
    margin-bottom: 15px !important;
  }
  
  .recruit-page .message-body p{
    text-align: justify;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 120px;
  }

  .copyright {
    margin-top: 0;
  }

  .scroll-indicator {
    bottom: 120px;
  }
}

@media (max-width: 900px) {
  .hero-slide-01 {
    background-image: url(/assets/images/hero/hero01-sp.jpg) !important;
  }
  .hero-slide-02 {
    background-image: url(/assets/images/hero/hero02-sp.jpg) !important;
  }
  .hero-slide-03 {
    background-image: url(/assets/images/hero/hero03-sp.jpg) !important;
  }
  .hero-slide-04 {
    background-image: url(/assets/images/hero/hero04-sp.jpg) !important;
  }
}

/* ==========================================================================
   Shop Page Styles
   ========================================================================== */

/* Shop Page Body */
.shop-page {
  background-color: var(--color-bg-body);
}

/* Shop Page Header - Dark text for readability */
.shop-page .site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-main);
}

.shop-page .link-instagram {
  color: #000;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Shop Hero Section */
.shop-hero-logo {
  position: relative;
  z-index: 2;
  width: 60vw;
  max-width: 500px;
}
.shop-hero-logo.is-wide {
  max-width: 800px;
}

.shop-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.shop-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.shop-hero--news {
  height: 40vh;
  min-height: 300px;
}

.recruit-entry-page .shop-hero,
.recruit-thanks-page .shop-hero {
  height: 30vh;
  min-height: 200px;
}

.shop-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shop-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.shop-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.shop-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.shop-sub {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

/* Shop Concept Section */
.shop-concept {
  background-color: var(--color-white);
}

.shop-concept .shop-name {
  color: var(--color-text-main);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.shop-concept .shop-sub {
  color: var(--color-text-sub);
  font-weight: 500;
}

.shop-logo {
  display: flex;
  justify-content: center;
}

.concept-text {
  font-size: 1.1rem;
  line-height: 2.2;
  color: var(--color-text-sub);
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .concept-text {
    line-height: 2;
  }
}

/* Shop Concept Tags override */
.shop-concept .brand-tags {
  justify-content: center;
  margin-top: 24px;
}

.shop-concept .tag {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text-sub);
  border: 1px solid var(--color-border);
}

/* Shop Menu Section */
.shop-menu {
  background-color: #f8f8f8;
}

.menu-recommended {
  margin-bottom: var(--sp-lg);
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 20px;
}

.menu-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.menu-desc {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  margin-bottom: 12px;
}

.menu-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.menu-categories {
  margin-top: var(--sp-md);
}

.menu-cat {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
}

.cat-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-note {
  font-size: 0.85rem;
  color: var(--color-text-sub);
}

.mt-sm {
  margin-top: var(--sp-sm);
}

/* Shop Interior Section */
.shop-interior {
  background-color: var(--color-white);
}

.interior-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

/* Shop Access Section */
.shop-access {
  background-color: #f8f8f8;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.access-map {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-frame {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  outline: none;
}

.access-info {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius);
}

.info-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 24px;

}

.info-list dt {
  font-weight: 600;
  color: var(--color-primary);
}

.info-list dd {
  color: var(--color-text-sub);
}


#requirements{
  background: #f5f5f5;
}
/* New styles for requirements-list */
#requirements .requirements-list {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

#requirements .requirements-list dt,
#requirements .requirements-list dd{
  display: block;

}

#requirements .requirements-list dt {
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

#requirements .requirements-list dd {
  padding-bottom: 40px;
  line-height: 1.6;
}

#requirements .requirements-list ul {
  margin: 10px 0;
  list-style: none
}

#requirements .requirements-list li {
  margin-bottom: 0;
  line-height: 1.4;
  margin-bottom: 6px;
  display: flex;
  flex-flow: row nowrap;
  justify-self: flex-start;
  align-items: flex-start;
}

#requirements .requirements-list li::before {
  content: "・";
  display: inline-block;
  margin-right: 5px;
}

#requirements .requirements-list li:last-child {
  margin-bottom: 0;
}

#requirements .requirements-list dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

#requirements .requirements-list dd strong{
  display: block;
  margin: 15px 0 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

#requirements .requirements-list dd a{
  color: var(--color-accent);
  text-decoration: underline;
}

/* ==========================================================================
   Entry Form Styles
   ========================================================================== */
.entry-section {
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  background: #fff; /* Match #requirements background */
}

.entry-form {
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: clamp(30px, 6vw, 60px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  margin-bottom: var(--sp-md);
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--sp-xs);
  color: var(--color-primary);
}

.form-required {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 1.05rem;
  color: var(--color-text-main);
  background-color: #fcfcfc;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.2); /* Assuming --color-accent-rgb exists or define it */
}

/* Fallback for --color-accent-rgb if not defined */
@supports not (box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.2)) {
  .form-input:focus {
    box-shadow: 0 0 0 3px rgba(192, 162, 110, 0.2);
  }
}

.form-fieldset {
  border: none;
  padding: 0;
  margin-bottom: var(--sp-md);
}

.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.form-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text-main);
}

.form-option input[type="radio"] {
  margin-right: 8px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  outline: none;
  position: relative;
  transition: all 0.2s ease;
}

.form-option input[type="radio"]:checked {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.form-option input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-actions {
  text-align: center;
  margin-top: var(--sp-lg);
}

.form-alert {
  padding: 15px 20px;
  margin-bottom: var(--sp-md);
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}

.form-alert-success {
  background-color: #e6ffe6;
  color: #1a7a1a;
  border: 1px solid #a0e0a0;
}

.form-alert-error {
  background-color: #ffe6e6;
  color: #a32b2b;
  border: 1px solid #e0a0a0;
}

.form-honeypot {
  position: absolute;
  left: -9999px; /* Move off-screen */
  top: -9999px;
  opacity: 0;
  pointer-events: none; /* Prevent interaction */
}

.form-input.is-invalid {
  border-color: #e0a0a0;
  background-color: #fff5f5;
}

.form-fieldset.is-invalid .form-options {
  border: 1px solid #e0a0a0;
  background-color: #fff5f5;
  border-radius: var(--border-radius);
  padding: 12px 16px;
}

.form-fieldset.is-invalid .form-option input {
  border-color: #e0a0a0;
}



.form-alert p { margin: 0; }


.form-error {
  margin-top: 8px;
  color: #a32b2b;
  font-size: 0.85rem;
}

/* 送信ボタンのローディング */
.submit-button {
  position: relative;
  gap: var(--sp-xs);
}

.submit-button.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(var(--color-white-rgb), 0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.submit-button.is-loading .submit-spinner {
  display: inline-block;
}

 @keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .entry-form {
    padding: 24px;
  }
  .form-row {
    margin-bottom: var(--sp-md);
  }
  .form-label {
    font-size: 0.95rem;
  }
  .form-input {
    padding: 12px 15px;
    font-size: 1rem;
  }
  .form-options {
    flex-direction: column;
    gap: 8px;
  }
  .form-option {
    font-size: 0.95rem;
  }
  .form-actions {
    margin-top: var(--sp-md);
  }
  .form-alert {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  .form-required {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

/* Fixed CTA (Mobile Only) */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.btn-reserve {
  display: block;
  width: 100%;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Instagram Slider Layout */
.instagram-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  align-items: flex-start;
}

.instagram-header {
  text-align: left;
}

/* Shop Page Responsive */
@media (max-width: 900px) {
  .shop-hero {
    height: 50vh;
    min-height: 300px;
  }

  .recruit-entry-page .shop-hero,
  .recruit-thanks-page .shop-hero {
    height: 25vh;
    min-height: 150px;
  }

  .shop-name {
    font-size: 2rem !important;
  }

  .shop-sub {
    font-size: 1rem;
  }

  /* Ensure mobile menu trigger is always primary color on shop pages */
  .shop-page .site-header .mobile-menu-trigger span {
    background: var(--color-primary);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-info {
    padding: 30px;
  }

  .fixed-cta {
    display: block;
  }

  .menu-card img {
    height: 180px;
  }

  .interior-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .instagram-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .instagram-header {
    text-align: center;
    margin-bottom: 0;
  }

  .info-list {
    display: block;
  }

  .info-list dt {
    margin-bottom: 4px;
  }

  .info-list dd {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
  }

  .info-list dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  /* Responsive styles for requirements-list */
  #requirements .requirements-list {
    display: block;
    padding: 24px; /* Adjust padding for mobile */
    margin-bottom: 40px;
  }

  #requirements .requirements-list dt {
    font-size: 1.3rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  #requirements .requirements-list dd {
    padding-bottom: 40px;
  }

  #requirements .requirements-list dd:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  #requirements .requirements-list dd strong{
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Swiper Slider Customization
   ========================================================================== */
.shop-gallery-slider {
  padding-top: 0;
  padding-bottom: 0 !important;
}

.gallery-swiper {
  padding: 0;
  width: 100%;
}

.gallery-swiper .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.gallery-swiper .swiper-slide-active {
  opacity: 1;
}

.gallery-swiper .gallery-slide {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

.gallery-swiper .swiper-slide-active .gallery-slide {
  transform: scale(1);
}

.gallery-swiper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.gallery-swiper .menu-caption {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-text-main);
}

/* Navigation Buttons - Force override with !important if needed */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--color-white) !important;
  background: rgba(192, 162, 110, 0.9) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
  top: 45% !important;
}

@media screen and (max-width: 900px) {
  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next {
    top: 38% !important;
  }
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 18px;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: var(--color-accent) !important;
  transform: scale(1.1);
}

/* Pagination Dots */
.gallery-swiper .swiper-pagination {
  position: static;
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc !important;
  opacity: 0.5 !important;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
  opacity: 1 !important;
  width: 20px;
  border-radius: 4px;
}

/* Shop Floating Reserve */
.shop-floating-reserve {
  padding: 40px 0 80px;
  background-color: var(--color-white);
}

@media (max-width: 900px) {
  .shop-floating-reserve {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    margin: 0;
  }

  .shop-floating-reserve .container {
    width: 100%;
    padding: 0;
  }

  .shop-floating-reserve .btn {
    width: 100%;
    max-width: none;
    box-shadow: 0 4px 15px rgba(192, 162, 110, 0.4);
  }
}

/* ==========================================================================
   Recruit Floating Banner (TOP Only)
   ========================================================================== */
.recruit-floating-banner {
  position: fixed;
  bottom: 40px;
  right: 40px;
  max-width: 460px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 998;
  display: block;
  transition: transform 0.3s ease-out;
}

.recruit-floating-banner:hover {
  transform: translateY(-5px);
}

.recruit-floating-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .recruit-floating-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}
