@charset "UTF-8";

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px;
  background: var(--bg);
  overflow: hidden;
}

.hero-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg,
      rgba(170, 190, 202, 0.22) 0px, rgba(170, 190, 202, 0.22) 20px,
      transparent 20px, transparent 23px,
      rgba(170, 190, 202, 0.18) 23px, rgba(170, 190, 202, 0.18) 25px,
      transparent 25px, transparent 33px);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 6px;
}

.hero-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-accent {
  width: 40px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 24px;
  opacity: 0.6;
}

.hero-dates {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-date-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--navy);
}

.hero-date-dow {
  font-size: 22px;
}

.hero-date-time {
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.08em;
}

.hero-venue {
  font-size: 18px;
  color: var(--teal-mid);
  letter-spacing: 0.06em;
  padding-top: 18px;
  border-top: 0.5px solid var(--border);
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: var(--bg3);
}

/* Hero Slider */
#hero-slider {
  height: 100%;
}

#hero-slider .slick-list,
#hero-slider .slick-track {
  height: 100%;
}

#hero-slider .slide-item {
  height: 100%;
}

#hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-slider .slick-dots {
  bottom: 16px;
}

#hero-slider .slick-dots li button:before {
  color: #fff;
  opacity: 0.5;
  font-size: 8px;
}

#hero-slider .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 48px 20px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-right {
    min-height: 260px;
  }
}

/* ============================================================
   NEWS Section
   ============================================================ */
.news-section {
  background: var(--bg);
  padding: 48px 0 40px;
}

.news-catch {
  text-align: center;
  margin-bottom: 32px;
}

.news-catch-text {
  font-size: 20px;
  color: var(--text);
  line-height: 2;
  letter-spacing: 0.06em;
  padding: 30px 0 80px;
}

.news-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 16px;
}

.news-box {
  max-height: 160px;
  overflow-y: auto;
  border: 0.5px solid var(--border);
  background: #fff;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 14px 20px;
  border-bottom: 0.5px solid var(--border-light);
  align-items: flex-start;
}

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

.news-date {
  font-size: 13px;
  color: var(--teal-mid);
  letter-spacing: 0.08em;
  white-space: nowrap;
  min-width: 80px;
}

.news-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .news-item {
    flex-direction: column;
    gap: 4px;
  }
  .news-date {
    min-width: auto;
  }
}

/* ============================================================
   DRESSCODE Section
   ============================================================ */
.dresscode-section {
  background: var(--bg2);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.dresscode-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0px, transparent 26px, rgba(150, 191, 203, 0.23) 26px, rgb(209 245 255 / 23%) 28px);
  pointer-events: none;
}

.dresscode-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

.dc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  background: var(--teal);
  color: #fffffe;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.dc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
}

.dc-heading-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 20px;
}

.dc-divider {
  width: 40px;
  height: 0.5px;
  background: var(--teal);
  margin-bottom: 24px;
  opacity: 0.6;
}

.dc-body {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 20px;
}

.dc-award {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  border-top: 0.5px solid var(--border);
  padding-top: 16px;
}

.dc-star {
  color: var(--teal);
  font-size: 14px;
  padding-top: 3px;
  flex-shrink: 0;
}

.dc-award span:last-child {
  color: var(--teal);
}

@media (max-width: 600px) {
  .dresscode-inner {
    padding: 0 10px;
  }
}

/* ============================================================
   MENU Section
   ============================================================ */
.menu-section {
  padding: 72px 0;
  background: var(--bg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.menu-card {
  background: var(--bg);
  padding: 32px 28px;
}

.menu-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
}

.menu-photo-contain {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 20px;
}

.menu-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 8px;
}

.menu-name {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.6;
}

.menu-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text);
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 0 24px;
  }

  .menu-card:last-child .menu-photo {
    grid-column: 1;
    grid-row: 1 / 4;
    margin-bottom: 0;
  }

  .menu-card:last-child .menu-num,
  .menu-card:last-child .menu-name,
  .menu-card:last-child .menu-desc {
    grid-column: 2;
  }

  .menu-card {
    padding: 20px 16px;
  }
}

/* ============================================================
   GROOMING SEMINAR Section
   ============================================================ */
.seminar-section {
  padding: 72px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.seminar-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg,
      rgba(170, 190, 202, 0.22) 0px, rgba(170, 190, 202, 0.22) 20px,
      transparent 20px, transparent 23px,
      rgba(170, 190, 202, 0.18) 23px, rgba(170, 190, 202, 0.18) 25px,
      transparent 25px, transparent 33px);
}

.seminar-section .inner {
  position: relative;
  z-index: 1;
}

.seminar-lead {
  font-size: 16px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 40px;
}

.seminar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 56px;
}

.seminar-card {
  background: rgba(245, 243, 239, 0.92);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
}

.seminar-photo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid var(--border);
}

.seminar-info {
  flex: 1;
}

.seminar-date {
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 700;
  color: #7e979f;

}

.seminar-name {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
}

.seminar-title {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 14px;
}

.seminar-btn {
  display: inline-block;
  padding: 9px 20px;
  border: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #f7f5f2;
  cursor: pointer;
  background: var(--navy);
  transition: opacity 0.2s;
  font-family: 'Shippori Mincho', serif;
  text-decoration: none;
}

.seminar-btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .seminar-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 730px) {
  .seminar-card {
    padding: 20px 16px;
  }
}

/* ============================================================
   MANUFACTURER SEMINAR Section
   ============================================================ */
.mfr-section {
  padding: 72px 0;
  background: var(--bg);
}

.mfr-note {
  font-size: 14px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 36px;
}

.mfr-note-warn {
  color: var(--terra);
  font-weight: 700;
}

.mfr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.mfr-card {
  background: var(--bg);
  padding: 32px 28px;
}

.mfr-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.mfr-tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.mfr-date {
  font-size: 14px;
  color: var(--teal-mid);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.mfr-company {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
}

.mfr-title {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.mfr-btn {
  display: inline-block;
  padding: 9px 20px;
  border: 0.5px solid var(--navy);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--navy);
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  font-family: 'Shippori Mincho', serif;
  text-decoration: none;
}

.mfr-btn:hover {
  background: var(--navy);
  color: #f7f5f2;
}

.mfr-btn-disabled {
  display: inline-block;
  padding: 9px 20px;
  border: 0.5px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--border);
  font-family: 'Shippori Mincho', serif;
}

@media (max-width: 600px) {
  .mfr-grid {
    grid-template-columns: 1fr;
  }
  .mfr-card {
    padding: 20px 16px;
  }
}

/* ============================================================
   BRAND LIST Section
   ============================================================ */
.brand-section {
  padding: 72px 0;
  background: var(--bg2);
}

.brand-note {
  font-size: 14px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 32px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.brand-item {
  background: var(--bg);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand-item:hover {
  opacity: 0.8;
}

.brand-logo {
  width: 80px;
  object-fit: contain;
}

.brand-name {
  font-size: 11px;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  word-break: break-word;
}

.brand-cat {
  font-size: 10px;
  color: var(--teal-mid);
  text-align: center;
  word-break: break-word;
}

@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-item {
    padding: 12px 4px;
  }
}