
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;1,400&family=Crimson+Text:ital,wght@0,400;1,400&family=Shippori+Mincho:wght@400;500&display=swap");

/* YEBISU BEER HALL TOKYO 専用。他ページへ影響させない */
.ybht {
  --ybht-bg: #461a01;
  --ybht-text: #f1f1f1;
  --ybht-gold: #d9ac46;
  --ybht-btn: #d9ac46;
  --ybht-btn-grad: linear-gradient(178deg, #D9AC46 0.95%, #F1F1F1 190.83%);
  --ybht-btn-line: #461a01;
  --ybht-cut: 10px;
  --ybht-cut-path: polygon(
    var(--ybht-cut) 0,
    100% 0,
    100% calc(100% - var(--ybht-cut)),
    calc(100% - var(--ybht-cut)) 100%,
    0 100%,
    0 var(--ybht-cut)
  );
  --ybht-dark: #2a1608;
  --ybht-light: #f1f1f1;
  --ybht-max: 1100px;
  --ybht-gutter: calc((100vw - var(--ybht-max)) / 2);
  --ybht-wide: 1200px;
  --ybht-grad: linear-gradient(180deg, #d9ac46 0%, #f1f1f1 100%);
  --ybht-rule: rgba(241, 241, 241, 0.18);
  --ybht-serif: "Crimson Text", "Times New Roman", serif;
  --ybht-pro: "Crimson Pro", "Times New Roman", serif;
  --ybht-jp: "Shippori Mincho", "游明朝", "Yu Mincho", serif;
  box-sizing: border-box;
  background: var(--ybht-bg);
  color: var(--ybht-text);
  font-family: var(--ybht-jp);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ybht *,
.ybht *::before,
.ybht *::after {
  box-sizing: inherit;
}

.ybht img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.ybht a.ybht-reserve,
.ybht a.ybht-pill,
.ybht a.ybht-pin {
  color: var(--ybht-bg);
}

.ybht a.ybht-igcard {
  color: var(--ybht-bg);
}

.ybht a.ybht-panel__ig {
  color: var(--ybht-gold);
}

.ybht button {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

html:has(.ybht),
body:has(.ybht) {
  margin: 0;
  min-width: 0;
  background: #461a01;
}

html:has(.ybht) #header,
body:has(.ybht) #header {
  display: none;
}

@media screen and (max-width: 940px) {
  .mainArea {
      padding-top: 0;
  }
}


.ybht a:hover {
  opacity: 1;
}

.ybht-wrap {
  width: 100%;
  max-width: var(--ybht-max);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1100px) {
  .ybht {
    --ybht-gutter: 5%;
  }

  .ybht-wrap {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

/* ========== header ========== */
.ybht-head {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: transparent;
}

.ybht-head.is-stuck {
  position: fixed;
  top: 0;
  bottom: auto;
  background: rgba(70, 26, 1, 0.72);
}

.ybht-head__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-height: 72px;
  position: relative;
  background: rgba(70, 26, 1, 0.72);
}

.ybht-brand {
  display: none;
  align-items: center;
}

.ybht-brand img {
  display: block;
  width: 92px;
  height: auto;
  mix-blend-mode: screen;
}

.ybht-gnav__list {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ybht-gnav a {
  position: relative;
  font-family: var(--ybht-pro);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ybht-text);
  transition: color 0.45s ease;
}

.ybht-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ybht-btn-grad);
  color: var(--ybht-bg);
  font-family: var(--ybht-serif);
  font-size: 18px;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px var(--ybht-btn-line);
  transition: filter 0.25s, color 0.25s;
}

.ybht-reserve img {
  width: 18px;
  height: auto;
}

.ybht-reserve--hero img,
.ybht-head .ybht-reserve img {
  filter: brightness(0);
  opacity: 0.75;
}


.ybht-head .ybht-reserve {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ybht-reserve--pill {
  position: relative;
  width: min(320px, 80%);
  min-height: 52px;
  border-radius: 999px;
  box-shadow: none;
}

.ybht-reserve--hero,
.ybht-head .ybht-reserve {
  border-radius: 0;
  box-shadow: none;
  clip-path: var(--ybht-cut-path);
}

.ybht-reserve--hero {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 200;
  min-height: 44px;
  padding: 0 20px 0 18px;
}

.ybht-reserve--mv {
  position: absolute;
  left: 50%;
  bottom: 96px;
  z-index: 6;
  min-width: 240px;
  min-height: 48px;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: none;
}

.ybht-reserve--mv::before,
.ybht-reserve--pill::before,
.ybht-igcard::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--ybht-btn-line);
  border-radius: inherit;
  pointer-events: none;
}

.ybht-igcard::before {
  inset: 10px;
  z-index: 2;
}

.ybht-head .ybht-reserve {
  display: none;
}

.ybht-head.is-stuck .ybht-reserve {
  display: none;
}

.ybht button.ybht-burger {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: var(--ybht-btn-grad);
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  clip-path: var(--ybht-cut-path);
}

.ybht-burger span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--ybht-bg);
  border-radius: 1px;
}

.ybht-burger span:nth-child(1) { top: 18px; }
.ybht-burger span:nth-child(2) { top: 25px; }
.ybht-burger span:nth-child(3) { top: 32px; }

/* ========== SP panel ========== */
.ybht-panel {
  display: none;
}

/* ========== hero ========== */
.ybht-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a0d04;
}

.ybht-hero__bg img {
  display: block;
  width: 100%;
  height: min(100vh, 900px);
  object-fit: cover;
  object-position: center center;
}

.ybht-hero__logo {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  margin: 0;
  width: min(200px, 18vw);
  transform: translateX(-50%);
}

.ybht-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== concept ========== */
.ybht-concept {
  position: relative;
  padding: 140px 0 40px;
  overflow: hidden;
  text-align: center;
}

.ybht-concept__mark {
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--ybht-serif);
  font-size: clamp(64px, 12vw, 100px);
  letter-spacing: 0.04em;
  background: var(--ybht-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.18;
  pointer-events: none;
  white-space: nowrap;
}

.ybht-concept__catch {
  position: relative;
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
}

.ybht-concept__lead {
  position: relative;
  margin: 0 auto -40px;
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: 0.12em;
  z-index: 1;
}

.ybht-concept__photo {
  position: relative;
  margin: 0 auto;
  max-width: 720px;
}

.ybht-concept__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  z-index: 1;
}

.ybht-concept__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, var(--ybht-bg));
}

/* ========== topics ========== */
.ybht-topics {
  padding: 40px 0 100px;
}

.ybht-topics .ybht-wrap {
  width: min(875px, calc(100% - 48px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.ybht-enhead {
  margin: 0 0 28px;
  font-family: var(--ybht-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ybht-enhead--dark {
  color: var(--ybht-dark);
}

.ybht-topics__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ybht-rule);
}

.ybht-topics__list li {
  border-bottom: 1px solid var(--ybht-rule);
}

.ybht-topics__list a {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 16px;
  align-items: center;
  gap: 20px;
  padding: 18px 16px;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: color 0.45s ease;
}

.ybht-topics__list time {
  font-family: var(--ybht-serif);
  letter-spacing: 0.04em;
  transform: translateY(-2px);
}

.ybht-topics__list span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ybht-topics__list i {
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--ybht-rule);
  border-right: 1px solid var(--ybht-rule);
  transform: rotate(45deg);
  justify-self: end;
}

/* ========== menu / about ========== */
.ybht-menu,
.ybht-about {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ybht-bg);
  color: var(--ybht-dark);
}

.ybht-about {
  margin-top: 80px;
}

.ybht-menu__photo,
.ybht-about__photo {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 0;
  min-height: 480px;
}

.ybht-carousel {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  background: var(--ybht-bg);
}

.ybht-carousel img {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateZ(0) scale(1.04);
  backface-visibility: hidden;
  transition: opacity 1s ease;
}

.ybht-carousel img.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ybht-carousel img {
    transition: none;
    transform: none;
  }
}

.ybht-menu__photo img,
.ybht-about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.ybht-menu__body,
.ybht-about__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 80px var(--ybht-gutter);
  background: var(--ybht-light);
}

.ybht-menu__body .ybht-enhead,
.ybht-about__body .ybht-enhead,
.ybht-menu__copy,
.ybht-about__copy,
.ybht-menu__body .ybht-pill,
.ybht-about__body .ybht-pill {
  margin-right: auto;
  text-align: left;
  align-self: flex-start;
}

.ybht-menu__body .ybht-enhead,
.ybht-about__body .ybht-enhead {
  font-size: 28px;
}

.ybht-menu__copy,
.ybht-about__copy {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 36px;
  padding-right: 0.2em;
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ybht-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: center;
  gap: 20px;
  min-width: 220px;
  min-height: 44px;
  padding: 0 22px 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--ybht-btn-grad);
  color: var(--ybht-bg);
  font-family: var(--ybht-serif);
  font-size: 18px;
  letter-spacing: 0.06em;
  box-shadow: none;
  transition: filter 0.25s, color 0.25s;
}

.ybht-pill::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--ybht-btn-line);
  border-radius: inherit;
  pointer-events: none;
}

.ybht-pill::after {
  content: "";
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--ybht-bg);
}

.ybht-pill--soon {
  pointer-events: none;
  cursor: default;
  justify-content: center;
  padding: 0 28px;
  background: #8f8f8f;
}

.ybht-pill--soon::after {
  content: none;
}

/* ========== information ========== */
.ybht-info {
  padding: 90px 0 0;
}

.ybht-info .ybht-enhead {
  margin-bottom: 24px;
}

.ybht-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-bottom: 56px;
}

.ybht-dl {
  margin: 0;
}

.ybht-dl__row {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  column-gap: 16px;
  row-gap: 24px;
  align-items: start;
  padding: 0 0 24px;
}

.ybht-dl__row:last-child {
  padding-bottom: 0;
}

.ybht-dl__row:not(:last-child)::after {
  content: "";
  grid-column: 1 / -1;
  width: 80px;
  height: 1px;
  background: var(--ybht-gold);
}

.ybht-dl dt {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ybht-gold);
}

.ybht-dl dd {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.ybht-info__hours-en {
  margin: 0 0 40px;
  font-family: var(--ybht-serif);
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.ybht-info__hours-en span {
  display: block;
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--ybht-gold);
}

.ybht-info__logo {
  margin: 0;
  text-align: right;
}

.ybht-info__logo img {
  width: 120px;
  height: auto;
}

.ybht-map {
  width: 80%;
  height: 360px;
  margin-left: auto;
  margin-right: auto;
  background: #ddd;
}

.ybht-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ybht-topics[hidden],
.ybht-map[hidden],
.ybht-info__pinwrap[hidden] {
  display: none;
}

.ybht-info__pinwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 28px 0 16px;
}

.ybht-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ybht-btn-grad);
  color: var(--ybht-bg);
  box-shadow: inset 0 0 0 1px var(--ybht-btn-line);
  transition: filter 0.25s, color 0.25s;
}

.ybht-pin--review {
  width: auto;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--ybht-jp);
  font-size: 14px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}


/* ========== instagram ========== */
.ybht-sns {
  background: var(--ybht-light);
  padding: 48px 0;
}

.ybht-sns__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ybht-fnav {
  display: flex;
  gap: 48px;
}

.ybht-fnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ybht-fnav a {
  position: relative;
  display: block;
  padding: 6px 0 6px 16px;
  color: var(--ybht-dark);
  font-family: var(--ybht-pro);
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: color 0.45s ease;
}

.ybht-jpshift {
  display: inline-block;
  transform: translateY(2px);
}

.ybht-igcard {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  width: min(300px, 100%);
  min-height: 168px;
  padding: 28px 32px;
  overflow: hidden;
  background: var(--ybht-btn-grad);
  color: var(--ybht-bg);
  border-radius: 4px;
}

.ybht-igcard > * {
  position: relative;
  z-index: 1;
}

.ybht-igcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #c99a38;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.ybht-igcard__icon {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.ybht-igcard__label {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.ybht-igcard .arrow {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 1px;
  margin-top: 19.8px;
  border-radius: 9999px;
  background-color: #000000;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  margin-bottom: 8px;
}

.ybht-igcard .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

.ybht a.ybht-igglyph {
  color: var(--ybht-gold);
}

.ybht-igglyph {
  display: inline-flex;
  flex: 0 0 auto;
  align-self: flex-end;
  width: 36px;
}

.ybht-sns__brand {
  display: block;
  flex: 0 0 auto;
  align-self: flex-end;
  width: 120px;
}

.ybht-sns__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.ybht-iglogo {
  display: block;
  width: min(300px, 100%);
}

.ybht-iglogo img,
.ybht-panel__ig img {
  display: block;
  width: 100%;
  height: auto;
}

.ybht-panel__ig img {
  width: 36px;
}


/* ========== SP ========== */
@media screen and (max-width: 768px) {
  .ybht-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: transparent;
  }

  .ybht-head.is-stuck,
  .ybht.is-menu-open .ybht-head,
  .ybht-head__inner {
    background: transparent;
  }

  .ybht-head__inner {
    width: calc(100% - 32px);
    min-height: 72px;
    justify-content: space-between;
  }

  .ybht-head .ybht-brand {
    display: none;
  }

  .ybht.is-menu-open .ybht-panel .ybht-brand {
    display: flex;
  }

  .ybht-gnav,
  .ybht-head .ybht-reserve {
    display: none !important;
  }

  .ybht-head .ybht-burger {
    display: none;
  }

  .ybht button.ybht-hero__burger {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 400;
    width: 52px;
    height: 52px;
    border-radius: 0;
    background: var(--ybht-btn-grad);
    clip-path: var(--ybht-cut-path);
  }

  .ybht.is-menu-open .ybht-hero__burger {
    visibility: hidden;
  }

  .ybht-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 500;
    padding: 16px 16px 40px 28px;
    background: var(--ybht-bg);
  }

  .ybht-panel[hidden] {
    display: none;
  }

  .ybht-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 52px;
    margin-bottom: 28px;
  }

  .ybht-panel .ybht-brand {
    display: flex;
  }

  .ybht-panel button.ybht-burger {
    display: block;
    background: var(--ybht-btn-grad);
    border-radius: 0;
    clip-path: var(--ybht-cut-path);
  }

  .ybht-panel__main,
  .ybht-panel__ext {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .ybht-panel__main {
    margin-bottom: 10px;
  }

  .ybht-panel__main a,
  .ybht-panel__ext a {
    display: block;
    padding: 0;
    font-family: var(--ybht-pro);
    font-size: 22px;
    color: var(--ybht-text);
  }

  .ybht-panel__ig {
    display: inline-flex;
    margin-top: 28px;
    color: var(--ybht-gold);
  }

  .ybht-panel .ybht-reserve {
    margin: auto auto 8px;
  }

  .ybht-hero {
    padding-top: 0;
  }

  .ybht-hero__bg img {
    height: 100vw;
    min-height: 500px;
    max-height: 640px;
    object-position: center top;
  }

  .ybht-hero__logo {
    width: min(140px, 36vw);
  }

  .ybht-reserve--hero {
    display: none;
  }

  .ybht-reserve--mv {
    display: inline-flex;
    bottom: 40px;
  }

  .ybht-hero {
    background: transparent;
  }

  .ybht-concept {
    padding: 100px 0 24px;
  }

  .ybht-concept__catch {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.9;
  }

  .ybht-concept__lead {
    font-size: 13px;
  }

  .ybht-topics {
    padding: 48px 0 64px;
  }

  .ybht-topics .ybht-wrap {
    width: min(390px, calc(100% - 40px));
  }

  .ybht-topics__list a {
    grid-template-columns: 108px 1fr 12px;
    gap: 10px;
    padding: 16px 16px;
    font-size: 12px;
  }

  .ybht-topics__list span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    white-space: normal;
  }

  .ybht-about {
    flex-direction: column;
    margin-top: 48px;
  }

  .ybht-menu__photo,
  .ybht-about__photo,
  .ybht-menu__body,
  .ybht-about__body {
    width: 100%;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    transform: none;
    margin-left: 0;
    flex: none;
  }

  .ybht-menu__photo,
  .ybht-about__photo {
    z-index: 3;
  }

  .ybht-menu__body,
  .ybht-about__body {
    z-index: 1;
    margin-top: -40px;
    padding: 64px var(--ybht-gutter) 56px;
  }

  .ybht-menu__photo img,
  .ybht-about__photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .ybht-carousel {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .ybht-carousel img {
    height: calc(100% + 4px);
    aspect-ratio: auto;
  }

  .ybht-menu__body::before,
  .ybht-menu__photo::after,
  .ybht-about__body::before,
  .ybht-about__photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid var(--ybht-gold);
    pointer-events: none;
  }

  .ybht-menu__body::before,
  .ybht-about__body::before {
    top: -20px;
  }

  .ybht-menu__photo::after,
  .ybht-about__photo::after {
    right: auto;
    width: 12%;
    bottom: -20px;
  }

  .ybht-menu__copy br,
  .ybht-about__copy br {
    display: none;
  }

  .ybht-menu {
    background: var(--ybht-bg);
  }

  .ybht-menu__photo,
  .ybht-about__photo {
    z-index: 3;
    width: 88%;
    min-height: 0;
    align-self: flex-start;
    margin: 0;
  }

  .ybht-menu__body,
  .ybht-about__body {
    z-index: 1;
    width: 88%;
    min-height: 420px;
    margin-top: -40px;
    padding: 72px 40px 80px;
    align-self: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .ybht-menu__photo::after,
  .ybht-about__photo::after {
    width: calc(100% * 12 / 88);
  }

  .ybht-menu__copy,
  .ybht-about__copy {
    align-self: stretch;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    letter-spacing: 0.04em;
    padding-right: 0.3em;
  }

  .ybht-menu__body .ybht-enhead,
  .ybht-menu__body .ybht-pill,
  .ybht-about__body .ybht-enhead,
  .ybht-about__body .ybht-pill {
    margin-right: auto;
    text-align: left;
    align-self: flex-start;
  }

  .ybht-pill {
    min-width: 220px;
  }

  .ybht-info {
    padding-top: 64px;
  }

  .ybht-info__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .ybht-dl dt,
  .ybht-dl dd,
  .ybht-info__hours-en,
  .ybht-info__hours-en span {
    font-size: 16px;
  }

  .ybht-dl__row {
    grid-template-columns: 1fr;
    column-gap: 8px;
    row-gap: 8px;
    padding-bottom: 24px;
  }

  .ybht-dl__row:not(:last-child)::after {
    margin-top: 16px;
  }

  .ybht-info__hours-en::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin-bottom: 24px;
    background: var(--ybht-gold);
  }

  .ybht-info__logo {
    text-align: center;
  }

  .ybht-map {
    width: 100%;
    height: 220px;
  }

  .ybht-sns__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .ybht-fnav {
    justify-content: space-between;
    flex-direction: column;
    gap: 24px;
  }

  .ybht-fnav a:active,
  .ybht-topics__list a:active,
  .ybht-panel__ext a:active {
    color: var(--ybht-gold);
  }

  .ybht-panel__main a:active {
    color: var(--ybht-text);
  }

  .ybht a.ybht-pill:active,
  .ybht a.ybht-reserve:active,
  .ybht a.ybht-pin:active,
  .ybht a.ybht-igcard:active {
    color: var(--ybht-dark);
  }

  .ybht-igcard {
    width: 100%;
  }
}

.ybht-menu__photo img {
  object-position: left 70%;
}

.ybht-carousel img {
  object-position: center;
}

@media screen and (min-width: 769px) {
  .ybht-gnav a::before,
  .ybht-fnav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 18px;
    background: var(--ybht-gold);
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
  }

  .ybht-gnav a::before {
    left: -12px;
  }

  .ybht-gnav a:hover::before,
  .ybht-fnav a:hover::before {
    opacity: 1;
  }

  .ybht-gnav a:hover,
  .ybht-topics__list a:hover {
    color: color-mix(in srgb, var(--ybht-text) 60%, var(--ybht-gold) 40%);
  }

  .ybht-fnav a:hover {
    color: color-mix(in srgb, var(--ybht-dark) 55%, var(--ybht-gold) 45%);
  }

  .ybht a.ybht-reserve:hover,
  .ybht a.ybht-pill:hover,
  .ybht a.ybht-pin:hover {
    filter: brightness(0.96);
  }

  .ybht a.ybht-igcard:hover::after {
    opacity: 1;
  }

  .ybht-hero__burger {
    display: none !important;
  }

  .ybht-menu,
  .ybht-about {
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .ybht-menu__photo,
  .ybht-about__photo,
  .ybht-menu__body,
  .ybht-about__body {
    height: 480px;
    min-height: 480px;
  }

  .ybht-menu__photo,
  .ybht-about__body {
    z-index: 3;
    width: 50%;
    flex: 0 0 50%;
  }

  .ybht-about__body {
    order: 1;
    margin-top: 0;
    padding-left: var(--ybht-gutter);
    padding-right: 40px;
    align-self: stretch;
    transform: none;
  }

  .ybht-menu__body,
  .ybht-about__photo {
    z-index: 1;
    width: 55%;
    flex: 0 0 55%;
    margin-left: -5%;
    transform: translateY(40px);
  }

  .ybht-about__photo {
    order: 2;
    align-self: stretch;
  }

  .ybht-menu__body {
    padding-left: calc(5% + 72px);
    padding-right: var(--ybht-gutter);
  }

  .ybht-menu__body::before,
  .ybht-menu__photo::after,
  .ybht-about__photo::before,
  .ybht-about__body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid var(--ybht-gold);
    pointer-events: none;
  }

  .ybht-menu__body::before,
  .ybht-about__photo::before {
    top: -20px;
  }

  .ybht-menu__photo::after,
  .ybht-about__body::after {
    right: auto;
    width: 90%;
    bottom: -20px;
  }

  .ybht-menu__photo img,
  .ybht-about__photo img,
  .ybht-carousel {
    height: 100%;
    min-height: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .ybht-gnav__list {
    gap: 24px;
  }

  .ybht-gnav a {
    font-size: 18px;
  }
}
