:root {
  --color-ink: #2f2723;
  --color-muted: #74645c;
  --color-cream: #fbf6ef;
  --color-blush: #f3ded7;
  --color-rose: #9b5f55;
  --color-deep: #4e3831;
  --color-gold: #b49361;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(78, 56, 49, 0.14);
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  position: relative;
  background-color: var(--color-cream);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at top left, rgba(243, 222, 215, 0.65), transparent 34rem),
    linear-gradient(rgba(251, 246, 239, 0.72), rgba(251, 246, 239, 0.72)),
    url("../images/background.jpg") center / cover no-repeat;
  pointer-events: none;
}

@media (min-width: 861px) {
  body {
    background-image:
      radial-gradient(circle at top left, rgba(243, 222, 215, 0.65), transparent 34rem),
      linear-gradient(rgba(251, 246, 239, 0.72), rgba(251, 246, 239, 0.72)),
      url("../images/background.jpg");
    background-position: top left, center, center;
    background-size: auto, auto, cover;
    background-repeat: no-repeat;
    background-attachment: scroll, scroll, fixed;
  }

  body::before {
    display: none;
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 246, 239, 0.88);
  border-bottom: 1px solid rgba(78, 56, 49, 0.08);
  backdrop-filter: blur(18px);
}

.news-ticker {
  display: block;
  overflow: hidden;
  width: 100%;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-rose), var(--color-deep));
}

.news-ticker-header {
  border-bottom: 1px solid rgba(78, 56, 49, 0.12);
}

.news-ticker-hero {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  border-radius: 999px;
}

.news-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 10px 0;
  will-change: transform;
  -webkit-animation: news-ticker-scroll 18s linear infinite;
  animation: news-ticker-scroll 18s linear infinite;
}

.news-ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
}

.news-ticker-text {
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.news-ticker-label {
  margin-right: 0.75em;
  color: #f2d5c8;
  font-weight: 700;
}

.news-ticker-text::before {
  content: none;
}

@-webkit-keyframes news-ticker-scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes news-ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker-track {
    -webkit-animation-duration: 48s;
    animation-duration: 48s;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 2px solid rgba(78, 56, 49, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(78, 56, 49, 0.12);
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.2;
}

.brand-sub {
  color: var(--color-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-muted);
  font-weight: 500;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  color: var(--color-deep);
  font: inherit;
  background: transparent;
  border: 1px solid rgba(78, 56, 49, 0.22);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
  width: var(--container);
  min-height: calc(100vh - 82px);
  padding: 80px 0;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 1.35;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-deep);
  box-shadow: 0 14px 30px rgba(78, 56, 49, 0.22);
}

.button-secondary {
  color: var(--color-deep);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 56, 49, 0.14);
}

.button-light {
  color: var(--color-deep);
  background: var(--color-white);
}

.button-outline-light {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.button-line {
  color: var(--color-white);
  background: #06c755;
  box-shadow: 0 14px 30px rgba(6, 199, 85, 0.22);
}

.line-add-button {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.line-add-button:hover,
.line-add-button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.line-add-button img {
  display: block;
  width: 180px;
  height: auto;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-shop-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.visual-card {
  position: absolute;
  display: grid;
  place-items: end start;
  color: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 30%, rgba(47, 39, 35, 0.68)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 15rem),
    linear-gradient(135deg, #d7b7a9, #87635a 55%, #4e3831);
}

.visual-card span {
  position: relative;
  padding: 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
}

.visual-card-main {
  inset: 0 40px 34px 0;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 220px 220px 36px 36px;
  box-shadow: none;
}

.visual-card-main::before {
  display: none;
}

.visual-card-small {
  right: 0;
  bottom: 0;
  width: 36%;
  height: 144px;
  border: 5px solid var(--color-cream);
  border-radius: 32px;
  place-items: center;
}

.visual-card-small::before {
  display: none;
}

.hero-small-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.section {
  width: var(--container);
  padding: 88px 0;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  color: var(--color-muted);
}

.section-heading-center {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.interior-grid,
.exterior-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 1201px) {

  .interior-grid,
  .exterior-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.interior-card,
.exterior-card {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 56, 49, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(78, 56, 49, 0.08);
}

.interior-card img,
.exterior-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.item-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 56, 49, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(78, 56, 49, 0.08);
}

.item-image {
  position: relative;
  min-height: 300px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.46), transparent 10rem),
    linear-gradient(135deg, #dcc3b6, #996f65);
  background-position: center;
  background-size: cover;
}

.item-image-fashion,
.item-image-goods,
.item-image-life {
  background-image:
    linear-gradient(180deg, transparent 58%, rgba(47, 39, 35, 0.2)),
    var(--item-photo);
}

.item-image-fashion {
  --item-photo: url("../images/商品1.JPG");
}

.item-image-goods {
  --item-photo: url("../images/商品2.JPG");
}

.item-image-life {
  --item-photo: url("../images/商品3.JPG");
}

.item-body {
  padding: 26px;
}

.item-body p,
.message-panel p,
.access-detail,
.note {
  color: var(--color-muted);
}

.shop-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.info-panel,
.message-panel {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 56, 49, 0.08);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(78, 56, 49, 0.08);
}

.info-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.info-panel-body {
  min-width: 0;
}

.message-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgba(78, 56, 49, 0.1), rgba(78, 56, 49, 0.78)),
    linear-gradient(135deg, #9b5f55, #4e3831);
}

.message-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.info-logo {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(78, 56, 49, 0.14);
  object-fit: cover;
}

.shop-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.shop-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(78, 56, 49, 0.1);
}

.shop-list dt {
  color: var(--color-rose);
  font-weight: 700;
}

.shop-list dd {
  margin: 0;
}

.business-note {
  display: block;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.access-detail,
.map-placeholder {
  min-height: 300px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(78, 56, 49, 0.08);
  border-radius: 28px;
}

.address {
  color: var(--color-ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.map-placeholder {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--color-muted);
  background:
    linear-gradient(45deg, rgba(78, 56, 49, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(78, 56, 49, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(78, 56, 49, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(78, 56, 49, 0.06) 75%),
    rgba(255, 255, 255, 0.78);
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
  background-size: 28px 28px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: var(--container);
  padding: clamp(36px, 6vw, 64px);
  margin: 72px auto;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--color-rose), var(--color-deep));
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}

.contact p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.contact .eyebrow {
  color: #f2d5c8;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  padding: 36px 0;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--color-rose);
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(78, 56, 49, 0.12);
  }

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

  .site-nav a {
    padding: 12px 10px;
  }

  .hero,
  .intro-grid,
  .item-grid,
  .shop-info,
  .info-panel,
  .access-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 36px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr min(38%, 190px);
    align-items: end;
    gap: 16px;
    min-height: auto;
    margin-top: 12px;
  }

  .visual-card,
  .visual-card-main,
  .visual-card-small {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .visual-card-main {
    grid-column: 1 / -1;
    max-width: min(100%, 400px);
    justify-self: center;
  }

  .hero-shop-image {
    width: min(88vw, 380px);
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: 0 auto;
  }

  .visual-card-small {
    grid-column: 2;
    max-width: 190px;
    align-self: end;
    justify-self: end;
    margin-right: 0;
  }

  .hero-small-image {
    width: 100%;
    height: auto;
    border: 6px solid var(--color-cream);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(78, 56, 49, 0.12);
  }

  .item-grid {
    gap: 18px;
  }

  .contact {
    display: grid;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

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

  .hero-shop-image {
    width: min(92vw, 340px);
  }

  .visual-card-small {
    max-width: 160px;
  }

  .section {
    padding: 60px 0;
  }

  .shop-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Keep interior/exterior galleries single-column on <=1200px */
@media (max-width: 1200px) {
  .interior-grid,
  .exterior-grid {
    grid-template-columns: 1fr !important;
  }
}