:root {
  --primary: #d86d6d;
  --primary-dark: #8a3d3d;
  --accent: #f6ede7;
  --ink: #2a2a2a;
  --muted: #666;
  --soft: #f5f5f5;
  --border: #e5ddd7;
  --shadow: 0 18px 36px rgba(86, 53, 47, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #f0b1a8);
  color: white;
  font-size: 1.25rem;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.top-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.top-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}
.top-nav a:hover,
.top-nav a.active {
  color: var(--primary-dark);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--primary);
  color: white !important;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.carousel-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
  transition: transform 0.8s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(35, 18, 18, 0.28), rgba(35, 18, 18, 0.3));
}
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.carousel-dot.active {
  background: white;
}
.hero-content {
  max-width: 680px;
  padding: 80px 0;
  color: white;
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0 0 18px;
  line-height: 1.3;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-top: 20px;
}
.lead {
  font-size: 1.08rem;
  max-width: 620px;
  opacity: 0.95;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}
.button-secondary {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.45);
  color: white;
}

.section {
  padding: 92px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.section-sub {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 24px 24px 26px;
}
.card-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
}
.card h3 { font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }

.feature-band {
  background: linear-gradient(180deg, var(--accent), #fffaf7);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.stat {
  padding: 28px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2.2rem;
  color: var(--primary-dark);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}
.story-text {
  font-size: 1.04rem;
  color: var(--muted);
}
.story-text p { margin-bottom: 18px; }
.quote-card {
  background: linear-gradient(180deg, #fff, #fff7f4);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote-card h3 {
  color: var(--primary-dark);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.shop-card .card-body { padding-bottom: 20px; }
.shop-meta {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.76rem;
}
.outline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
}

.company-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th, td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
th {
  width: 210px;
  background: #fff7f4;
  color: var(--primary-dark);
  font-weight: 700;
}
.map-box {
  margin-top: 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-box iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-item .card-body {
  padding: 20px 22px 24px;
}
.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--primary), #f5b8aa);
  color: white;
  font-size: 1.8rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.info-panel,
.form-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.info-panel {
  padding: 30px 26px;
}
.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.info-panel li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}
.info-panel .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}
.form-panel {
  padding: 28px 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ink);
}
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus {
  outline: 2px solid rgba(216,109,109,0.18);
  border-color: var(--primary);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group.full {
  grid-column: 1 / -1;
}
.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.small-note {
  color: var(--muted);
  font-size: 0.88rem;
}
.status {
  margin-top: 18px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  display: none;
  font-weight: 600;
}
.status.success { display: block; background: #edf9ef; color: #1d7c4a; border: 1px solid #bfe8c9; }
.status.error { display: block; background: #fff1f1; color: #a33b3b; border: 1px solid #f3c1c1; }

.site-footer {
  background: #2d1d1a;
  color: rgba(255,255,255,0.84);
  padding: 30px 0 46px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 20px;
}
.footer-grid h4 {
  color: white;
  margin-bottom: 14px;
}
.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,0.75);
}
.footer-links {
  display: grid;
  gap: 10px;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 26px;
  padding-top: 18px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

@media (max-width: 980px) {
  .grid-3, .stats, .service-grid, .shop-grid, .contact-wrap, .story-layout, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-layout, .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .mobile-toggle { display: inline-grid; place-items: center; }
  .top-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .top-nav.open { display: flex; }
  .grid-3, .shop-grid, .service-grid, .stats, .form-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 560px; }
  .hero-content { padding: 56px 0; }
  .carousel-controls { bottom: 14px; }
  .carousel-dot { width: 10px; height: 10px; }
  .section { padding: 72px 0; }
  .section-head { display: block; }
}
