/** Shopify CDN: Minification failed

Line 1102:111 Expected "}" to go with "{"

**/
:root {
  --bg: #f5f5f5;
  --text: #1a1a1a;
  --muted: #666666;
  --line: #dddddd;
  --accent: #2f3437;
  --hover-accent: #dd5519;
  --max-width: 1100px;
}

.cafetales-page {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-size: 14px;
}

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

.cafetales-page img {
  display: block;
  width: 100%;
  height: auto;
}

.cafetales-page .main {
  min-height: auto;
}

.cafetales-page .section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px;
}

.cafetales-page .section__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.cafetales-page .section__lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

.cafetales-page .section__title--left,
.cafetales-page .section__lead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.cafetales-page .hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  color: #ffffff;
  overflow: hidden;
}

.cafetales-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.cafetales-page .hero__slides {
  position: absolute;
  inset: 0;
}

.cafetales-page .hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s ease, transform 2s ease;
}

.cafetales-page .hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.cafetales-page .hero__inner {
  position: relative;
  text-align: center;
  padding: 24px;
  z-index: 1;
}

.cafetales-page .hero__title {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.12em;
  color:#ffffff !important;
}

.cafetales-page .hero__title-sub,
.cafetales-page .hero__title-main {
  display: block;
  color: #ffffff !important;
}

.cafetales-page .hero__title-sub {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #ffffff !important;
}

.cafetales-page .hero__title-main {
  font-size: 42px;
  letter-spacing: 0.18em;
  color: #ffffff !important;
}

.cafetales-page .about-video {
  margin-top: 40px;
}

.cafetales-page .about-video__link {
  position: relative;
  display: block;
  width: 100%;
  color: #ffffff;
}

.cafetales-page .about-video__link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 68%;
  background: #000000;
}

.cafetales-page .about-video__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease;
}

.cafetales-page .about-video__link:hover::before,
.cafetales-page .about-video__link:focus-visible::before {
  background: rgba(0, 0, 0, 0.28);
}

.cafetales-page .about-video__play {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.36);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cafetales-page .about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 72px;
}

.cafetales-page .about-block:nth-child(even) .about-block__media {
  order: 2;
}

.cafetales-page .about-block__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cafetales-page .about-block__text {
  color: var(--muted);
}

.cafetales-page .about-block__text p {
  margin: 0 0 12px;
}

.cafetales-page .about-block__text p:last-child {
  margin-bottom: 0;
}

.cafetales-page .menu-list {
  margin-top: 52px;
}

.cafetales-page .menu-section + .menu-section {
  margin-top: 44px;
}

.cafetales-page .menu-section__title {
  margin: 0;
  padding-top: 24px;
  border-top: 2px solid var(--line);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cafetales-page .menu-item {
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line);
}

.cafetales-page .menu-item__body {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: start;
}

.cafetales-page .menu-item__image {
  width: 112px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cafetales-page .menu-item__content {
  min-width: 0;
}

.cafetales-page .menu-item--featured .menu-item__body {
  grid-template-columns: 1fr;
  gap: 18px;
}

.cafetales-page .menu-item--featured .menu-item__image {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.cafetales-page .menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.cafetales-page .menu-item__name,
.cafetales-page .menu-item__price {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.cafetales-page .menu-item__price {
  white-space: nowrap;
  color: var(--muted);
}

.cafetales-page .menu-item__sub,
.cafetales-page .menu-item__desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.cafetales-page .section--product {
  max-width: 1200px;
}

.cafetales-page .product-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.cafetales-page .product-hero__gallery {
  display: grid;
  gap: 24px;
}

.cafetales-page .product-hero__gallery img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ffffff;
}

.cafetales-page .product-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cafetales-page .product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cafetales-page .product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 12px;
}

.cafetales-page .product-hero__text {
  margin-top: 22px;
  color: var(--muted);
}

.cafetales-page .product-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.cafetales-page .product-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.cafetales-page .product-card h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.cafetales-page .product-card p {
  margin: 0;
  color: var(--muted);
}

.cafetales-page .product-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cafetales-page .product-list li + li {
  margin-top: 8px;
}

.cafetales-page .experience {
  display: grid;
  gap: 24px;
}

.cafetales-page .experience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.cafetales-page .experience-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
}

.cafetales-page .experience-list__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0;
}

.cafetales-page .experience-list__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cafetales-page .experience-list__title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.cafetales-page .experience-list__meta {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.cafetales-page .experience-list__text {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.cafetales-page .experience-list__details {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.cafetales-page .experience-list__details li + li {
  margin-top: 8px;
}

.cafetales-page .experience-list__calendar-wrap {
  margin-top: 18px;
}

.cafetales-page .experience-list__calendar-note {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.cafetales-page .experience-list__calendar {
  width: 100%;
  height: 320px;
  border: 0;
  background: #ffffff;
}

.cafetales-page .cta {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cafetales-page .shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 36px;
  margin-top: 54px;
}

.cafetales-page .shop-grid__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cafetales-page .shop-grid__item img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cafetales-page .shop-grid__name {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 400;
}

.cafetales-page .shop-grid__meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cafetales-page .shop-grid__button {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}

.cafetales-page .shop-grid__map {
  width: 100%;
  height: 210px;
  margin-top: 14px;
  border: 0;
}

.cafetales-page .recruit-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.cafetales-page .recruit-hero {
  margin-top: 36px;
}

.cafetales-page .recruit-hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cafetales-page .recruit-section {
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.cafetales-page .recruit-section__content {
  text-align: left;
}

.cafetales-page .recruit-section__eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.cafetales-page .recruit-list__title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.cafetales-page .recruit-list__salary {
  margin: 12px 0 0;
  font-size: 14px;
}

.cafetales-page .recruit-list__text {
  margin: 12px 0 0;
  color: var(--muted);
}

.cafetales-page .staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 22px;
  margin-top: 54px;
}

.cafetales-page .staff-card {
  display: grid;
  gap: 14px;
}

.cafetales-page .staff-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cafetales-page .staff-card__image--yuya {
  object-position: 52% 26%;
}

.cafetales-page .staff-card__image--mari {
  object-position: 56% 28%;
}

.cafetales-page .staff-card__image--shota {
  object-position: 52% 32%;
}

.cafetales-page .staff-card__image--ikuru {
  object-position: 38% 30%;
}

.cafetales-page .staff-card__role {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cafetales-page .staff-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.cafetales-page .staff-card__blank {
  aspect-ratio: 3 / 4;
  background: #ffffff;
  border: 1px solid var(--line);
}

/* Header / drawer / footer — self-contained when theme {% section 'header' %} is omitted */
.cafetales-page .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 80px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.cafetales-page .site-header__inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.cafetales-page .site-header__left {
  display: flex;
  justify-content: flex-start;
}

.cafetales-page .menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.cafetales-page .menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.is-drawer-open .cafetales-page .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.is-drawer-open .cafetales-page .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-drawer-open .cafetales-page .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cafetales-page .site-header__logo {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cafetales-page .site-header__logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.cafetales-page .lang-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-size: 11px;
}

.cafetales-page .site-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.cafetales-page .site-header__shop-link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dd5519;
  color: #ffffff;
  transition: color 0.2s ease;
}

.cafetales-page .site-header__shop-link:hover,
.cafetales-page .site-header__shop-link:focus-visible {
  background: #c54a16;
}

.cafetales-page .site-header__shop-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.cafetales-page .lang-switcher__button {
  border: 0;
  background: transparent;
  padding: 4px 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  transition: color 0.2s ease;
}

.cafetales-page .lang-switcher__button.is-active,
.cafetales-page .lang-switcher__button:hover,
.cafetales-page .lang-switcher__button:focus-visible {
  color: var(--hover-accent);
}

.cafetales-page .site-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.cafetales-page .site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 82vw);
  height: 100vh;
  padding: 96px 28px 32px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(-100%);
  transition: transform 0.24s ease;
  z-index: 45;
}

.cafetales-page .site-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cafetales-page .site-drawer a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.cafetales-page .site-drawer__instagram {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cafetales-page .site-drawer__instagram svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cafetales-page .site-drawer__instagram span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cafetales-page .site-drawer a:hover,
.cafetales-page .site-drawer a:focus-visible {
  color: var(--hover-accent);
}

body.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open .cafetales-page .site-header__overlay {
  opacity: 1;
  visibility: visible;
}

body.is-drawer-open .cafetales-page .site-drawer {
  transform: translateX(0);
}

.cafetales-page .site-footer {
  margin-top: 40px;
  background: var(--accent);
  color: #ffffff;
}

.cafetales-page .site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 24px;
  text-align: center;
}

.cafetales-page .site-footer__name {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.cafetales-page .site-footer__nav {
  margin: 28px 0 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 11px;
  text-transform: uppercase;
}

.cafetales-page .site-footer__nav a {
  transition: color 0.2s ease;
}

.cafetales-page .site-footer__nav a:hover,
.cafetales-page .site-footer__nav a:focus-visible {
  color: var(--hover-accent);
}

.cafetales-page .site-footer__copy {
  display: block;
  margin-top: 28px;
  font-size: 10px;
  opacity: 0.92;
  transition: color 0.2s ease;
}

.cafetales-page .site-footer:hover .site-footer__copy {
  color: var(--hover-accent);
}

@media (max-width: 960px) {
  .cafetales-page .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cafetales-page .section {
    padding: 82px 20px;
  }

  .cafetales-page .hero {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .cafetales-page .hero__slide {
    background-position: center 34%;
  }

  .cafetales-page .hero__slide:nth-child(1) {
    background-position: center 32%;
  }

  .cafetales-page .hero__slide:nth-child(2) {
    background-position: center 26%;
  }

  .cafetales-page .hero__slide:nth-child(3) {
    background-position: center 28%;
  }

  .cafetales-page .hero__slide:nth-child(4) {
    background-position: center 30%;
  }

  .cafetales-page .hero__title {
    letter-spacing: 0.08em;
  }

  .cafetales-page .hero__title-sub {
    font-size: 12px;
  }

  .cafetales-page .hero__title-main {
    font-size: 30px;
  }

  .cafetales-page .about-block,
  .cafetales-page .product-columns,
  .cafetales-page .shop-grid,
  .cafetales-page .recruit-section,
  .cafetales-page .staff-grid {
    grid-template-columns: 1fr;
  }

  .cafetales-page .menu-item__head {
    gap: 12px;
  }

  .cafetales-page .menu-item__body {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .cafetales-page .menu-item__image {
    width: 88px;
  }

  .cafetales-page .menu-item--featured .menu-item__body {
    grid-template-columns: 1fr;
  }

  .cafetales-page .menu-item--featured .menu-item__image {
    width: 100%;
  }

  .cafetales-page .menu-item__name,
  .cafetales-page .menu-item__price {
    font-size: 16px;
  }

  .cafetales-page .recruit-sections {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cafetales-page .recruit-section,
  .cafetales-page .product-card {
    padding: 22px;
  }

  .cafetales-page .product-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cafetales-page .experience-list__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cafetales-page .experience-list__content {
    align-items: center;
    text-align: center;
  }

  .cafetales-page .site-header__inner {
    padding: 0 16px;
  }

  .cafetales-page .lang-switcher {
    gap: 8px;
  }

  .cafetales-page .site-header__actions {
    gap: 10px;
  }

  .cafetales-page .main--home {
    min-height: auto;
  }

  .cafetales-page .main--home + .site-footer {
    margin-top: 0;
  }

  .cafetales-page .site-drawer {
    width: min(320px, 86vw);
    padding: 92px 22px 28px;
  }

  .cafetales-page .site-footer__inner {
    padding-top: 44px;
  }
.cafetales-page .about-video__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}

.cafetales-page .about-video--playing {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.cafetales-page .about-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.cafetales-page .product-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 26px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cafetales-page .product-cta:hover,
.cafetales-page .product-cta:focus-visible {
  background: #333333;
  transform: translateY(-1px);
}

.cafetales-page .product-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .cafetales-page .product-cta {
    margin-top: 22px;
    padding: 12px 22px;
    font-size: 13px;
  }
/* === スクロールでフェードイン === */
.cafetales-page .reveal,
.cafetales-page.reveal {
  opacity: 0 !important;
  transform: translateY(24px) !important;
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
  will-change: opacity, transform;
}

.cafetales-page .reveal.is-visible,
.cafetales-page.reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* === ハンバーガー: メニュー項目の順次フェードイン === */
.cafetales-page .site-drawer__links a {
  opacity: 0 !important;
  transform: translateX(-16px) !important;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.2s ease !important;
}

body.is-drawer-open .cafetales-page .site-drawer__links a {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(1)  { transition-delay: 0.10s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(2)  { transition-delay: 0.16s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(3)  { transition-delay: 0.22s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(4)  { transition-delay: 0.28s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(5)  { transition-delay: 0.34s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(6)  { transition-delay: 0.40s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(7)  { transition-delay: 0.46s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(8)  { transition-delay: 0.52s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(9)  { transition-delay: 0.58s !important; }
body.is-drawer-open .cafetales-page .site-drawer__links a:nth-child(10) { transition-delay: 0.64s !important; }