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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
}

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

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section--gray {
  background: #f7f7f7;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #0a0a0a;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  max-width: 560px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ebebeb;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #0a0a0a;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #444;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: #000;
  border-bottom-color: #000;
}

.header-tel {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0a0a0a;
  white-space: nowrap;
}

/* mobile-nav は使用しない（全ページから削除済み） */
.mobile-nav {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 2px solid currentColor;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-white {
  color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  background: #fff;
  color: #000;
}

.btn-black {
  color: #fff;
  background: #000;
  border-color: #000;
}

.btn-black:hover {
  background: transparent;
  color: #000;
}

.btn-outline {
  color: #000;
  border-color: #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/hero-01.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 68px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.9;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 48px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

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

/* ===== ABOUT / INTRO ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.1);
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

/* About US スライドショー */
.about-slideshow {
  aspect-ratio: 4/5;
}
.about-slideshow .about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.about-slideshow .about-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  aspect-ratio: 1;
  background: #f0f0f0;
  z-index: -1;
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

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

.stat-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.05em;
}

/* ===== NEWS SECTION (HOME) ===== */
.news-section {
  padding: 56px 0;
  background: #fafafa;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.news-section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0a0a0a;
}

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

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
}

.news-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.news-date {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  min-width: 80px;
}

.news-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  flex: 1;
}

.news-link {
  margin-left: auto;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  flex-shrink: 0;
}

.news-link:hover {
  color: #0a0a0a;
}

/* ===== NEWS ARTICLE PAGE ===== */
.news-article {
  padding: 48px 0;
}

.news-article + .news-divider + .news-article {
  padding-top: 48px;
}

.news-article-header {
  margin-bottom: 28px;
}

.news-article-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #888;
  background: #f0f0f0;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.news-article-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: #0a0a0a;
}

.news-article-body {
  font-size: 15px;
  line-height: 2;
  color: #333;
  max-width: 720px;
}

.news-article-body p {
  margin-bottom: 18px;
}

.news-holiday-date {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  padding: 12px 24px;
  background: #f7f7f7;
  border-left: 3px solid #0a0a0a;
  margin: 4px 0 20px;
}

.news-inline-link {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 0;
}

/* ===== ABOUT STATS NOTE ===== */
.about-stats-note {
  margin-top: 12px;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.1em;
}

/* ===== SERVICES GRID (HOME) ===== */
.services-overview {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #e8e8e8;
}

.service-cell {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid #e8e8e8;
  transition: background 0.2s;
}

.service-cell:last-child {
  border-right: none;
}

.service-cell:hover {
  background: #f7f7f7;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.service-cell h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #0a0a0a;
}

.service-cell p {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.cta-band .section-title {
  color: #fff;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 64px;
  border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0a0a0a;
}

/* ===== SERVICE CARDS (service.html) ===== */
.service-cards {
  margin-top: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e8e8e8;
}

.service-card:nth-child(even) .service-card-img {
  order: 2;
}

.service-card:nth-child(even) .service-card-body {
  order: 1;
}

.service-card-img {
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.service-num {
  font-size: 60px;
  font-weight: 900;
  color: #f0f0f0;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.service-card-body h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #0a0a0a;
}

.service-en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 24px;
}

.service-card-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #d0d0d0;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.04em;
}

/* ===== PRICE (price.html) ===== */
.price-intro {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}

.price-intro p {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
}

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

.price-block-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0a0a0a;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-block-title .price-block-en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
}

.price-subblock-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid #0a0a0a;
  line-height: 1.4;
}

.price-subblock-note {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-left: 8px;
}

.price-subblock-label {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
}

.service-price-guide {
  font-size: 14px;
  color: #444;
  background: #f7f7f7;
  border-left: 3px solid #d0d0d0;
  padding: 10px 14px;
  margin-bottom: 14px;
  line-height: 1.9;
}

.price-guide-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.price-table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead th {
  background: #0a0a0a;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #ebebeb;
  color: #333;
  vertical-align: top;
  line-height: 1.7;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: #fafafa;
}

.price-note-box {
  background: #f7f7f7;
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 13px;
  color: #777;
  line-height: 1.8;
}

.price-note-box p + p {
  margin-top: 4px;
}

.price-cta-box {
  background: #0a0a0a;
  color: #fff;
  padding: 64px;
  text-align: center;
  margin-top: 80px;
}

.price-cta-box h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.price-cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ===== GALLERY (gallery.html) ===== */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 48px 0 0;
}

.filter-btn {
  padding: 8px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: none;
  border: 1px solid #d0d0d0;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-overlay-type {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 10px;
}

/* ===== ACCESS (access.html) ===== */
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.info-dl {
  list-style: none;
}

.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
  align-items: start;
}

.info-dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  padding-top: 3px;
}

.info-dd {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.phone-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #0a0a0a;
  margin: 8px 0 4px;
  line-height: 1;
}

.closed-note {
  font-size: 13px;
  color: #e55;
  font-weight: 700;
  margin-top: 4px;
}

.map-wrap {
  width: 100%;
  background: #f0f0f0;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-open-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}
.map-open-btn:hover { color: #111; text-decoration: underline; }

.calendar-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.calendar-wrap iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}

@media (max-width: 640px) {
  .calendar-wrap iframe {
    height: 350px;
  }
}

.line-cta {
  margin-top: 40px;
  background: #06C755;
  padding: 36px 40px;
  text-align: center;
  color: #fff;
}

.line-cta h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.line-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-line {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #06C755;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.btn-line:hover {
  opacity: 0.85;
}

.visit-note {
  background: #f7f7f7;
  padding: 32px 40px;
  margin-top: 80px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.visit-note-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.visit-note h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.visit-note p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 72px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 0;
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: #fff;
}

.footer-tel {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  display: block;
  margin: 8px 0 4px;
}

.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
}

.footer-sub-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-sub-nav a:hover {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-top: 1px solid #e8e8e8;
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.faq-q {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
}

.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-a {
  color: #444;
  font-size: 15px;
  line-height: 1.85;
  padding-left: 40px;
  position: relative;
}

.faq-a::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  background: #888;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Legal / Cancel */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 16px 20px;
  border: 1px solid #e8e8e8;
  text-align: left;
  line-height: 1.7;
  vertical-align: top;
}

.legal-table th {
  width: 200px;
  background: #f7f7f7;
  font-weight: 700;
  white-space: nowrap;
}

.calendar-note {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .legal-table th {
    width: auto;
    display: block;
    border-bottom: none;
  }
  .legal-table td {
    display: block;
  }
  .legal-table tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
  }
  .legal-table th,
  .legal-table td {
    border: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .main-nav,
  .header-tel {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    z-index: 199;
    padding: 16px 0;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0 32px;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.04em;
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap {
    order: -1;
  }

  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-overview .service-cell:nth-child(5) {
    grid-column: span 2;
  }

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

  .service-card:nth-child(even) .service-card-img {
    order: unset;
  }

  .service-card:nth-child(even) .service-card-body {
    order: unset;
  }

  .service-card-body {
    padding: 40px 32px;
  }

  .service-num {
    font-size: 56px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .services-overview {
    grid-template-columns: 1fr;
  }

  .services-overview .service-cell {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }

  .services-overview .service-cell:nth-child(5) {
    grid-column: auto;
  }

  .service-card-body {
    padding: 32px 20px;
  }

  .price-cta-box {
    padding: 40px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 24px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .visit-note {
    padding: 24px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== SUB METHOD (service.html 染めるプリント) ===== */
.sub-method + .sub-method {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}

.sub-method-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

/* ===== MAP LINK (access.html) ===== */
.map-wrap--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  min-height: 240px;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  aspect-ratio: unset;
}

.map-wrap--link p {
  font-size: 14px;
  color: #888;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 80px 0;
  border-top: 1px solid #e8e8e8;
}

.contact-form-section .section-title {
  margin-bottom: 8px;
}

.contact-form-section .section-subtitle {
  margin-bottom: 48px;
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: #333;
}

.required {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #e44;
  border: 1px solid #e44;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  font-family: inherit;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.form-group textarea {
  resize: vertical;
  line-height: 1.7;
}

.form-note {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  line-height: 1.6;
}

.form-submit-wrap {
  margin-top: 8px;
}

/* ===== MAP AREA ===== */
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.map-open-btn:hover {
  opacity: 0.65;
}

/* ===== RESERVATION BUTTON ===== */
.reservation-area {
  margin-top: 32px;
  padding: 28px 32px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
}

.reservation-area h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a0a0a;
}

.reservation-area p {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== ORDER STEPS ===== */
.order-steps {
  margin-top: 64px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 52px;
  font-weight: 900;
  color: #e8e8e8;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0a0a0a;
  letter-spacing: 0.02em;
}

.step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

.step-content ul {
  margin-top: 12px;
  padding-left: 20px;
  color: #555;
  font-size: 14px;
  line-height: 2;
}

.notice-box {
  background: #fffaf0;
  border-left: 3px solid #f5a623;
  padding: 20px 24px;
  margin: 16px 0;
}

.notice-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.notice-box strong {
  color: #c07000;
}

.notice-box--policy {
  background: #fff3cd;
  border-left: 4px solid #e6a800;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-top: 24px;
  display: flex;
  gap: 0;
}

.notice-box--policy p {
  font-size: 14px;
  color: #4a3200;
  line-height: 1.8;
  margin: 0;
}

.notice-box--policy strong {
  color: #7a5000;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e8e8;
  margin: 72px 0 0;
}

.policy-card {
  background: #fff;
  padding: 40px 32px;
  text-align: center;
}

.policy-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.policy-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0a0a0a;
}

.policy-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.9;
}

.delivery-info {
  background: #0a0a0a;
  color: #fff;
  padding: 40px 48px;
  margin: 64px 0 0;
  display: flex;
  align-items: center;
  gap: 48px;
}

.delivery-info-main {
  flex: 1;
}

.delivery-info-main h3 {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.delivery-info-main p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.delivery-days {
  text-align: center;
  flex-shrink: 0;
}

.delivery-days .num {
  display: block;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
}

.delivery-days .unit {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 32px 0;
  }

  .step-num {
    font-size: 36px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .delivery-info {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }

  .contact-form-section {
    padding: 56px 0;
  }
}

/* ===== CATALOG ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.catalog-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-card-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 20px;
}

.catalog-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.catalog-card-header h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: #0a0a0a;
}

.catalog-brand-en {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}

.catalog-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  flex: 1;
  margin: 0;
}

.catalog-btn {
  align-self: flex-start;
  font-size: 13px;
  padding: 12px 24px;
}

.catalog-external {
  font-size: 11px;
  color: #999;
}

.catalog-more {
  background: #f5f5f5;
  border-left: 3px solid #0a0a0a;
  padding: 28px 32px;
  margin-top: 56px;
  border-radius: 0 4px 4px 0;
}

.catalog-more p {
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin: 0;
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalog-card {
    padding: 28px 24px;
  }
}

/* ===== STAT DESC ===== */
.stat-desc {
  display: block;
  font-size: 10px;
  color: #bbb;
  margin-top: 6px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ===== ACCESS HERO (店舗・工房イメージ) ===== */
.access-hero {
  margin: 0 0 48px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.access-hero img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 40%;
}
.access-hero figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 24px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
@media (max-width: 768px) {
  .access-hero { margin-bottom: 32px; }
  .access-hero img { height: 220px; }
  .access-hero figcaption { font-size: 13px; padding: 32px 16px 16px; }
}

/* ===== ブランドロゴ（ウェア本体ページ） ===== */
.catalog-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 48px;
  margin: 14px 0 10px;
}
.catalog-logo img {
  max-height: 100%;
  max-width: 46%;
  width: auto;
  object-fit: contain;
}
