:root {
  --bg: #ffffff;
  --bg-soft: #f7f3ee;
  --bg-card: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --text: #111111;
  --text-soft: rgba(17, 17, 17, 0.82);
  --text-faint: rgba(17, 17, 17, 0.66);
  --button-dark: #111111;
  --button-light: #ffffff;
  --font-display: "Ramaraja", serif;
  --font-ui: "Montserrat", sans-serif;
  --font-title: "Anton", sans-serif;
  --font-jp: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Osaka, "MS PGothic", Avenir, Arial, Helvetica, sans-serif;
  --font-en: Avenir, Arial, Helvetica, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu_open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

#wrap {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: #000;
}

.hero_slider,
.hero_slide {
  position: absolute;
  inset: 0;
}

.hero_slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease, transform 7.5s ease;
}

.hero_slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(32, 32, 32, 0.12), rgba(32, 32, 32, 0.32)),
    rgba(64, 64, 64, 0.14);
}

.hero_slide.active {
  opacity: 1;
  transform: scale(1);
}

.menu_toggle {
  position: absolute;
  top: 12px;
  right: 28px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.menu_toggle:hover {
  opacity: 0.72;
}

.menu_toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
}

.overlay_nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 84px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.overlay_nav.open {
  opacity: 1;
  pointer-events: auto;
}

.overlay_nav a {
  font-family: var(--font-ui);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #fff;
  text-align: center;
}

.overlay_close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.menu_instagram {
  margin-top: 12px;
}

.menu_instagram img {
  width: 40px;
  height: 40px;
}

.hero_content {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(176px, 24.5vh, 244px) 24px 116px;
  text-align: center;
}

.hero_logo {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.76;
}

.hero_logo_top,
.hero_logo_bottom {
  display: block;
  font-size: clamp(3.3rem, 7.6vw, 6.5rem);
  letter-spacing: inherit;
}

.hero_logo_top {
  letter-spacing: 0.037em;
}

.hero_logo_bottom {
  letter-spacing: 0.046em;
  margin-top: 0.02em;
}

.hero_subtitle {
  margin: 8px 0 0;
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.slider_controls {
  position: absolute;
  left: 50%;
  top: 66%;
  z-index: 12;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 116px;
}

.slider_arrow {
  width: 220px;
  height: 220px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 248, 236, 0.92);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.slider_arrow:hover {
  transform: translateY(-2px);
  opacity: 0.76;
  color: #fff;
}

.slider_arrow:active {
  transform: translateY(0) scale(0.96);
}

.slider_arrow_mark {
  font-family: var(--font-ui);
  font-size: 9.6rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -0.08em;
}

.slider_track {
  min-width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.slider_dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.slider_dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.26);
  cursor: pointer;
  padding: 0;
  transition: background 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.slider_dot:hover {
  background: rgba(255, 248, 236, 0.72);
  transform: scale(1.18);
}

.slider_dot.active {
  background: #fff8ec;
  transform: scale(1.45);
  box-shadow: 0 0 14px rgba(255, 248, 236, 0.22);
}

main {
  background: var(--bg);
}

main > section {
  --section-bg: #ffffff;
  --section-text: #111111;
  --section-text-soft: rgba(17, 17, 17, 0.82);
  --section-text-faint: rgba(17, 17, 17, 0.66);
  --section-line: rgba(17, 17, 17, 0.12);
  --section-button-hover-bg: #111111;
  --section-button-hover-text: #ffffff;
  background: var(--section-bg);
}

main > section:nth-of-type(even) {
  --section-bg: #111111;
  --section-text: #ffffff;
  --section-text-soft: rgba(255, 255, 255, 0.82);
  --section-text-faint: rgba(255, 255, 255, 0.68);
  --section-line: rgba(255, 255, 255, 0.18);
  --section-button-hover-bg: #ffffff;
  --section-button-hover-text: #111111;
}

#pancakes,
#coffee,
#about,
#location {
  --section-bg: #ffffff;
  --section-text: #111111;
  --section-text-soft: rgba(17, 17, 17, 0.82);
  --section-text-faint: rgba(17, 17, 17, 0.66);
  --section-line: rgba(17, 17, 17, 0.12);
  --section-button-hover-bg: #111111;
  --section-button-hover-text: #ffffff;
}

.section_inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.section_inner.narrow {
  width: min(760px, calc(100% - 40px));
}

.content_section,
.calendar_section,
.location_section {
  padding: 0 0 72px;
}

.location_section {
  padding-bottom: 18px;
}

.section_media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.calendar_embed,
.location_layout {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.section_media img {
  width: 100%;
  height: auto;
}

.dual_media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dual_media img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.illustration_media {
  padding: 28px;
  display: flex;
  justify-content: center;
}

.illustration_media img {
  width: min(420px, 100%);
}

.section_copy {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 0;
  text-align: center;
}

.coffee_secondary_media {
  margin-top: 30px;
}

.coffee_secondary_media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hours_section {
  padding: 48px 0 28px;
}

.hours_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  margin-bottom: 18px;
  text-align: center;
}

.hours_title::before,
.hours_title::after {
  content: "";
  width: 132px;
  height: 7px;
  background: var(--section-text);
}

.hours_block {
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.hours_block::after {
  content: "";
  width: min(360px, 100%);
  height: 8px;
  margin-top: 22px;
  background: var(--section-text);
}

.hours_time,
.hours_detail {
  margin: 0;
  color: var(--section-text);
  line-height: 1.2;
}

.hours_time,
.hours_detail {
  font-family: var(--font-title);
  font-size: 1.14rem;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.hours_detail {
  color: var(--section-text-faint);
}

.section_title {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--section-text);
}

#about .section_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

#about .section_title::before,
#about .section_title::after {
  content: "";
  flex: 1 1 96px;
  max-width: 150px;
  height: 7px;
  background: var(--section-text);
}

#about .section_copy::after {
  content: "";
  display: block;
  width: min(360px, 100%);
  height: 7px;
  margin: 34px auto 0;
  background: var(--section-text);
}

.display_title {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--section-text);
}

.jp,
.en {
  margin: 0;
  text-align: center;
}

.jp {
  font-family: var(--font-jp);
  font-size: 0.98rem;
  line-height: 2.05;
  color: var(--section-text-soft);
}

.en {
  margin-top: 24px;
  font-family: var(--font-en);
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--section-text-faint);
}

.more_wrap {
  margin: 30px 0 0;
}

.takeout_panel {
  margin-top: 38px;
  padding: 30px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.takeout_panel img {
  width: min(380px, 100%);
  height: auto;
  margin: 0 auto 18px;
}

.takeout_title {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--section-text);
}

.more_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  border: 2px solid var(--section-text);
  color: var(--section-text);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  transition: background 0.25s ease, color 0.25s ease;
}

.more_button:hover {
  background: var(--section-button-hover-bg);
  color: var(--section-button-hover-text);
}

.calendar_section {
  padding-top: 12px;
}

.calendar_embed {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #000;
  background: #000;
  padding: 0;
}

.calendar_embed iframe {
  width: 100%;
  min-height: 680px;
  border: 0;
  display: block;
  background: #000;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.72) contrast(0.96) brightness(0.9);
}

.location_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 26px;
  align-items: stretch;
  padding: 30px;
  background: #000;
}

.location_map {
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
}

.location_map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.06);
}

.location_copy {
  border: 0;
  border-radius: 0;
  padding: 42px 28px;
  background: transparent;
  text-align: center;
}

.location_copy p {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.9;
  color: #fff;
}

.location_copy_jp p {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Osaka, "MS PGothic", Avenir, Arial, Helvetica, sans-serif;
}

.location_copy_jp p:first-child {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

.location_copy_en p {
  font-family: var(--font-ui);
}

.location_copy a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.location_gap {
  margin-top: 28px;
}

.page_actions {
  width: 100%;
  min-height: 92px;
  padding: 4px 20px 12px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 0;
  background: var(--bg);
}

.page_top_link,
.footer_instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  background: #fff;
  color: var(--text);
}

.page_top_link {
  min-width: 172px;
  min-height: 38px;
  padding: 0 14px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.footer_instagram {
  width: 52px;
  min-height: 52px;
}

.footer_instagram img {
  width: 34px;
  height: 34px;
}

.footer_nav {
  padding: 26px 20px 38px;
  background: #000;
  border-top: 0;
}

.footer_nav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
}

.footer_nav a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #fff;
}

.footer_nav_instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer_nav_instagram img {
  width: 24px;
  height: 24px;
}

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

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

  .location_map {
    min-height: 420px;
  }
}

@media (max-width: 740px) {
  .menu_toggle,
  .overlay_close {
    width: 56px;
    height: 56px;
  }

  .menu_toggle {
    top: 10px;
    right: 12px;
  }

  .overlay_close {
    top: 18px;
    right: 18px;
  }

  .overlay_nav {
    gap: 18px;
  }

  .overlay_nav a {
    font-size: 1.16rem;
    letter-spacing: 0.2em;
  }

  .hero_content {
    padding: clamp(148px, 22vh, 184px) 20px 100px;
  }

  .hero_logo_top,
  .hero_logo_bottom {
    font-size: clamp(2.6rem, 14.5vw, 4.4rem);
  }

  .hero_subtitle {
    font-size: 0.84rem;
    letter-spacing: 0;
  }

  .slider_controls {
    top: 69%;
    gap: 58px;
  }

  .slider_arrow {
    width: 140px;
    height: 140px;
  }

  .slider_arrow_mark {
    font-size: 6.8rem;
  }

  .slider_track {
    min-width: auto;
    padding: 0;
  }

  .slider_dot {
    width: 10px;
    height: 10px;
  }

  .hours_section {
    padding: 42px 0 44px;
  }

  .content_section,
  .calendar_section,
  .location_section {
    padding-bottom: 58px;
  }

  .calendar_embed,
  .location_layout,
  .hours_section .section_inner {
    width: calc(100% - 24px);
  }

  .section_media {
    width: 100%;
    border-radius: 0;
  }

  .dual_media img {
    min-height: 240px;
  }

  .illustration_media {
    padding: 22px;
  }

  .section_copy {
    width: calc(100% - 32px);
    padding-top: 34px;
  }

  .coffee_secondary_media img {
    min-height: 240px;
  }

  .takeout_panel {
    margin-top: 30px;
    padding: 24px 0 0;
  }

  .jp,
  .en,
  .location_copy p {
    font-size: 0.9rem;
  }

  .calendar_embed {
    padding: 0;
    border-radius: 0;
  }

  .calendar_embed iframe {
    min-height: 520px;
  }


  .location_map,
  .location_copy {
    border-radius: 0;
  }

  .location_copy {
    padding: 34px 20px;
  }

  .location_layout {
    padding: 18px;
  }

  .page_actions {
    flex-direction: column;
    min-height: 92px;
    padding: 4px 16px 12px;
    justify-content: center;
    align-content: center;
    gap: 0;
  }

  .page_top_link {
    width: auto;
  }
}
