/* ========================================
   がいずば - GUYZUBA Style
   Light theme / Main color: #ce0000
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #ce0000;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #a00000;
}

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc-only {
  display: none;
}

@media (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.4rem;
  color: #ce0000;
  letter-spacing: 0.1em;
}

.logo-sub {
  font-size: 0.6rem;
  color: #999;
  letter-spacing: 0.3em;
  font-weight: 400;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ce0000;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.nav.open {
  right: 0;
}

.nav ul {
  list-style: none;
}

.nav ul li {
  border-bottom: 1px solid #f0f0f0;
}

.nav ul li a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  color: #555;
  letter-spacing: 0.05em;
}

.nav ul li a:hover {
  color: #ce0000;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .nav ul {
    display: flex;
    gap: 24px;
  }

  .nav ul li {
    border: none;
  }

  .nav ul li a {
    padding: 0;
    font-size: 0.85rem;
  }
}

/* ========================================
   Hero Slideshow
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f5f5f5;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.0);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 8s cubic-bezier(0.25, 0, 0.15, 1) forwards;
}

.hero-slide.fade-out {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-logo {
  width: clamp(140px, 28vw, 220px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-catch {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.hero-sub {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: #fff;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  background: #ce0000;
  display: inline-block;
  padding: 4px 20px;
  border-radius: 4px;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto;
}

.hero-desc p {
  font-size: clamp(1rem, 2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.hero-note {
  margin-top: 12px;
  color: #ffcccc !important;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.8vw, 0.85rem) !important;
}

.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.hero-dot.active {
  background: #ce0000;
  border-color: #ce0000;
}

.hero-dot:hover {
  border-color: #fff;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 80px 0;
  background: #fff;
}

.section-alt {
  background: #faf5f5;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.8rem;
  color: #ce0000;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.section-title span {
  display: block;
  font-size: 1rem;
  color: #666;
  margin-top: 6px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/* ========================================
   News
   ======================================== */
.news-list {
  list-style: none;
  max-width: 750px;
  margin: 0 auto;
}

.news-list li {
  border-bottom: 1px solid #f0f0f0;
}

.news-list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  padding: 16px 0;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 6px;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
}

.news-list li a:hover {
  background: #faf5f5;
}

.news-list li a::after {
  content: "";
  display: none;
}

.news-list time {
  font-size: 0.8rem;
  color: #999;
  min-width: 90px;
}

.news-tag {
  font-size: 0.7rem;
  background: #ce0000;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.news-list p {
  width: 100%;
  font-size: 0.9rem;
  color: #444;
}

@media (min-width: 768px) {
  .news-list p {
    width: auto;
    flex: 1;
  }
}

/* ========================================
   News Detail Page
   ======================================== */
.news-detail-page {
  padding-top: 64px;
  min-height: 100vh;
}

.news-detail {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #ce0000;
  margin-bottom: 32px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.news-detail-back:hover {
  opacity: 0.7;
}

.news-detail-back::before {
  content: "\2190";
  font-size: 1.1rem;
}

.news-detail-header {
  margin-bottom: 32px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-detail-meta time {
  font-size: 0.85rem;
  color: #999;
}

.news-detail-meta .news-tag {
  font-size: 0.7rem;
}

.news-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

.news-detail-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #faf5f5;
}

.news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-body strong {
  color: #ce0000;
}

.news-detail-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  text-align: center;
}

.news-detail-footer a {
  display: inline-block;
  background: #ce0000;
  color: #fff;
  padding: 12px 40px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s;
}

.news-detail-footer a:hover {
  background: #a00000;
  color: #fff;
}

/* ========================================
   Message
   ======================================== */
.message-box {
  max-width: 740px;
  margin: 0 auto;
}

.message-heading {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  padding: 16px 20px;
  border-radius: 8px;
  background: #ce0000;
}

.message-text p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 2;
}

.message-highlight {
  color: #ce0000 !important;
  font-weight: 700;
  font-size: 1.05rem !important;
  text-align: center;
  padding: 12px 0;
}

.message-sign {
  text-align: right;
  color: #ce0000;
  font-weight: 600;
  margin-top: 16px;
  font-size: 1rem;
}

/* ========================================
   Hours
   ======================================== */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hours-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hours-card-special {
  border-color: #ce0000;
  background: #fff5f5;
}

.hours-card h3 {
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 400;
}

.hours-time {
  font-size: 1.3rem;
  color: #ce0000;
  font-weight: 600;
  margin-bottom: 8px;
}

.hours-note {
  font-size: 0.8rem;
  color: #999;
}

/* ========================================
   Price
   ======================================== */
.price-content {
  max-width: 700px;
  margin: 0 auto;
}

.price-block {
  margin-bottom: 40px;
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-block-title {
  font-size: 1rem;
  color: #ce0000;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ce0000;
  font-weight: 600;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #444;
}

.price-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.price-table td:last-child {
  text-align: right;
  color: #ce0000;
  font-weight: 600;
  white-space: nowrap;
}

.price-notes {
  margin-top: 16px;
}

.price-notes p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.8;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-items span {
  font-size: 0.85rem;
  color: #555;
  background: #fff5f5;
  border: 1px solid #f0dada;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ========================================
   Staff
   ======================================== */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.staff-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(206, 0, 0, 0.1);
}

.staff-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #faf0f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-info {
  padding: 20px;
}

.staff-info h3 {
  font-size: 1.1rem;
  color: #ce0000;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.staff-text {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
}

/* ========================================
   Access
   ======================================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.access-info dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px 16px;
}

.access-info dt {
  font-size: 0.85rem;
  color: #ce0000;
  font-weight: 600;
}

.access-info dd {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

.access-info dd a {
  font-size: 1.1rem;
  font-weight: 600;
}

.access-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.access-map iframe {
  display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #ce0000;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer-logo span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  margin-left: 8px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
