@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Jost:wght@300;400;500&display=swap");
.pc_none {
  display: none;
}
@media only screen and (max-width: 520px) {
  .pc_none {
    display: inline;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1a1a1a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #1a1a1a;
  color: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: #000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header a {
  text-decoration: none;
}

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: #ffffff;
}
.header-logo a {
  color: inherit;
}

.header-logo-sub {
  font-family: "Shippori Mincho B1", serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.header-logo-main {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.14em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  padding: 7px 11px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 520px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .header-nav.is-open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header-nav a:last-child {
    border-bottom: none;
  }
}

.nav-toggle {
  display: none;
}
@media only screen and (max-width: 520px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7.25px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7.25px) rotate(-45deg);
  }
}

.wave-fixed {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 49;
  pointer-events: none;
  height: 88px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 0 L 0 50 Q 6.25 90 12.5 50 Q 18.75 10 25 50 Q 31.25 90 37.5 50 Q 43.75 10 50 50 Q 56.25 90 62.5 50 Q 68.75 10 75 50 Q 81.25 90 87.5 50 Q 93.75 10 100 50 L 100 0 Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 600px 100%;
}
.wave-fixed svg {
  display: none;
}
@media only screen and (max-width: 520px) {
  .wave-fixed {
    height: 62px;
    background-size: 420px 62px;
  }
}

.img-placeholder {
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaaaaa;
  font-size: 12px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 12px;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: #111111;
  overflow: hidden;
  scroll-margin-top: 52px;
}
@media only screen and (max-width: 520px) {
  .hero {
    height: 600px;
    min-height: unset;
  }
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 12, 0.36) 0%, rgba(15, 14, 12, 0) 26%, rgba(15, 14, 12, 0) 50%, rgba(15, 14, 12, 0.82) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 28px 54px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: clamp(42px, 7.4vw, 80px);
  line-height: 1.12;
  letter-spacing: 0.05em;
  margin: 0;
  color: #ffffff;
}

.section {
  padding: 72px 28px 50px;
  max-width: 1240px;
  margin: 0 auto;
  scroll-margin-top: 52px;
}

.section-label {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.05em;
  margin: 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 44px;
}

.access-section {
  padding: 60px 28px 50px;
  max-width: 1240px;
  margin: 0 auto;
  border-bottom: 1px solid #e6e6e6;
  scroll-margin-top: 52px;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media only screen and (max-width: 860px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.access-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
}
.access-row:first-child {
  padding-top: 0;
}
.access-row:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 860px) {
  .access-grid > div:first-child .access-row:last-child {
    border-bottom: 1px solid #e6e6e6;
  }
}

@media only screen and (max-width: 860px) {
  .access-grid > div:last-child .access-row:first-child {
    padding-top: 22px;
  }
}

.access-label {
  flex: 0 0 96px;
  white-space: nowrap;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888888;
  padding-top: 3px;
}
@media only screen and (max-width: 520px) {
  .access-label {
    flex: 0 0 80px;
  }
}

.access-value {
  font-size: 14.5px;
  line-height: 1.8;
}
.access-value small {
  color: #777777;
  font-size: 13px;
}
.access-value a {
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #cccccc;
}

.transit-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.transit-row:last-child {
  margin-bottom: 0;
}

.transit-line {
  font-size: 12px;
  color: #888888;
  flex-shrink: 0;
}

.transit-time {
  color: #888888;
  font-size: 13px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media only screen and (max-width: 860px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 520px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
}
.news-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 18px 19px 21px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}

.news-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a1a;
  display: inline-block;
}

.news-card-date {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #888888;
}

.news-card-text {
  font-size: 14px;
  line-height: 1.85;
  color: #333333;
  margin: 0;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.news-note {
  font-size: 13px;
  color: #888888;
  margin: 0;
}

.news-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1a1a1a;
  border: 1px solid #dddddd;
  background: #ffffff;
  padding: 11px 18px;
  border-radius: 999px;
  flex-shrink: 0;
}
.news-link span {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-num {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  margin: 22px 0 8px;
}

.about-item-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.about-item-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #444444;
  margin: 0;
}

.wave-divider {
  max-width: 1240px;
  margin: 64px auto 0;
  padding: 0 28px;
}
.wave-divider svg {
  width: 100%;
  height: 22px;
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
@media (max-width: 768px) {
  .menu-img {
    height: auto;
    aspect-ratio: 1/1;
  }
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.menu-item-name {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 17px;
  margin: 0;
}

.menu-item-price {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #777777;
}

.menu-item-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #777777;
  margin: 6px 0 0;
}

.menu-note {
  font-size: 13px;
  color: #888888;
  margin: 26px 0 0;
  text-align: right;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 860px) {
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 520px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.archive-card {
  display: flex;
  flex-direction: column;
}

.archive-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 9px;
}

.archive-tag {
  font-family: "Jost", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  border: 1px solid #dddddd;
  border-radius: 999px;
  padding: 4px 11px;
}

.archive-date {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: #888888;
  letter-spacing: 0.04em;
}

.archive-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0;
}

.site-footer {
  background: #1a1a1a;
  color: #bbbbbb;
  padding: 54px 28px 40px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 14px;
}

.footer-logo-sub {
  font-family: "Shippori Mincho B1", serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.footer-logo-main {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.footer-address {
  font-size: 13px;
  line-height: 1.9;
  color: #888888;
  margin: 0;
}

.footer-sns {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sns-icon {
  text-decoration: none;
  color: #bbbbbb;
  width: 40px;
  height: 40px;
  border: 1px solid #444444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  color: #555555;
  letter-spacing: 0.08em;
}

.fixed-sns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.fixed-sns a {
  text-decoration: none;
  color: #1a1a1a;
  width: 44px;
  height: 44px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 520px) {
  .fixed-sns {
    bottom: 16px;
    right: 12px;
    gap: 6px;
  }
  .fixed-sns a {
    width: 34px;
    height: 34px;
  }
  .fixed-sns a svg {
    width: 14px;
    height: 14px;
  }
}

/*# sourceMappingURL=naminami.css.map */
