@charset "UTF-8";

:root {
  --color-text: #1d1d1d;
  --color-line: rgba(26, 26, 26, 0.28);
  --color-bg: #efede8;
  --color-grid: rgba(255, 255, 255, 0.74);
  --grid-size: 23px;

  --left-column-width: 32vw;
  --right-column-width: 68vw;

  --mv-image-bleed: 5.208333vw;
  --mv-image-actual-width: calc(var(--right-column-width) + var(--mv-image-bleed));
  --mv-image-left: var(--left-column-width);

  --header-height: clamp(7.6rem, 5.208333vw, 10rem);

  --left-gutter: clamp(5rem, 6.25vw, 12rem);

  --logo-top: clamp(2.4rem, 1.666667vw, 3.2rem);
  --logo-width: 12rem;
  --logo-height: 10.9rem;
  --nav-sticky-gap: 5rem;

  --copy-top: clamp(18rem, 15vw, 28.8rem);
  --nav-top: clamp(40rem, 29vw, 55.7rem);
  --nav-sticky-top: calc(var(--logo-top) + var(--logo-height) + var(--nav-sticky-gap));
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: var(--color-bg);
}

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

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

.site {
  min-height: 100vh;
  overflow-x: clip;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(var(--color-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  background-position: left top;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: var(--header-height);
}

.site-header__inner {
  position: relative;
  height: 100%;
}

.site-logo {
  position: fixed;
  top: var(--logo-top);
  left: var(--left-gutter);
  z-index: 45;
  margin: 0;
  width: var(--logo-width);
}

.site-logo img {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.menu-button {
  position: absolute;
  top: 3.2rem;
  right: clamp(2.4rem, 4vw, 6rem);
  z-index: 60;
  display: none;
  width: 5.6rem;
  height: 5.6rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
}

.menu-button__line {
  position: absolute;
  left: 1rem;
  display: block;
  width: 3.6rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.menu-button__line:nth-child(1) {
  top: 1.9rem;
}

.menu-button__line:nth-child(2) {
  top: 2.8rem;
}

.menu-button__line:nth-child(3) {
  top: 3.7rem;
}

body.is-menu-open .menu-button__line:nth-child(1) {
  top: 2.8rem;
  transform: rotate(24deg);
}

body.is-menu-open .menu-button__line:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-button__line:nth-child(3) {
  top: 2.8rem;
  transform: rotate(-24deg);
}

.main-visual {
  position: relative;
  min-height: 72rem;
  height: 100vh;
  overflow: hidden;
}

.main-visual__image {
  position: absolute;
  top: 0;
  left: var(--mv-image-left);
  z-index: 1;
  width: var(--mv-image-actual-width);
  height: calc(100% - var(--header-height));
  overflow: hidden;
  background-image: url("../images/top-main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.main-copy {
  position: absolute;
  top: var(--copy-top);
  left: 0;
  z-index: 10;
  width: 100%;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

body.is-main-copy-hidden .main-copy {
  opacity: 0;
  visibility: hidden;
}

.main-copy__text {
  margin: 0;
  padding-left: var(--left-gutter);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.07;
}

.main-copy__line {
  display: block;
  white-space: nowrap;
}

.main-copy__line--jp {
  font-size: clamp(5.4rem, 5.833333vw, 11.2rem);
  font-weight: 550;
  letter-spacing: 0.03em;
}

.main-copy__line--en {
  margin-top: 1.1rem;
  font-family: Georgia, "Times New Roman", "Yu Mincho", YuMincho, serif;
  font-size: clamp(3rem, 3.75vw, 7.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.main-copy--base {
  color: var(--color-text);
}

.main-copy--base .main-copy__line--en {
  color: #666666;
}

.main-copy--invert {
  z-index: 11;
  color: #fff;
  clip-path: inset(-1.2rem 0 -1.2rem var(--mv-image-left));
}

.main-visual__statement {
  position: absolute;
  top: calc(clamp(3.2rem, 4vw, 7.6rem) - 20px);
  right: calc(clamp(4rem, 5.5vw, 10rem) - 20px);
  z-index: 12;
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 1.15vw, 2.2rem);
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.12em;
  text-align: left;
  writing-mode: horizontal-tb;
  text-shadow: 0 0.2rem 1.8rem rgba(0, 0, 0, 0.18);
}

.global-nav {
  position: absolute;
  top: var(--nav-top);
  left: var(--left-gutter);
  z-index: 20;
  width: min(24rem, calc(var(--left-column-width) - var(--left-gutter) - 2rem));
  min-width: 18rem;
}

.global-nav.is-sticky {
  position: fixed;
  top: var(--nav-sticky-top);
  left: var(--left-gutter);
  z-index: 35;
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.global-nav__item {
  border-bottom: 1px solid var(--color-line);
}

.global-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.8rem;
  padding: 0.6rem 2.4rem 0.6rem 0;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  transition: opacity 0.24s ease;
}

.global-nav a:hover {
  opacity: 0.7;
}


.right-column-frame {
  margin-left: var(--left-column-width);
  width: var(--right-column-width);
}

.page-content {
  position: relative;
  z-index: 2;
  padding: clamp(8rem, 8vw, 15rem) 0 clamp(12rem, 11vw, 20rem);
}

.content-section__inner {
  padding-right: clamp(4rem, 5.5vw, 10rem);
}

.section-heading {
  margin-bottom: clamp(3rem, 3.8vw, 7rem);
}

.section-heading__title {
  margin: 0;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(2.4rem, 3.2vw, 4rem); 
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.news-item {
  border-bottom: 1px solid var(--color-line);
}

.news-item__row {
  display: grid;
  grid-template-columns: 12rem 11rem minmax(0, 1fr);
  gap: clamp(1.6rem, 2vw, 3.2rem);
  align-items: start;
  padding: 1.8rem 0;
}

.news-item__date,
.news-item__category,
.news-item__title {
  align-self: start;
}

.news-item__date {
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.news-item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.6rem;
  padding: 0.35rem 0.8rem;
  background: var(--category-bg);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.24s ease;
}

.news-item__category:hover {
  opacity: 0.7;
}

.news-item__category--10 {
  --category-bg: #6f8f72;
}

.news-item__category--3 {
  --category-bg: #a77c52;
}

.news-item__category--8 {
  --category-bg: #557f9d;
}

.news-item__title {
  min-width: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: opacity 0.24s ease;
}

.news-item__title:hover {
  opacity: 0.7;
}

.content-section + .content-section {
  margin-top: clamp(8rem, 9vw, 16rem);
}

.section-body {
  width: 100%;
  font-size: clamp(1.45rem, 0.98vw, 1.8rem);
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.section-body p {
  margin: 0;
}

.section-body p + p {
  margin-top: 1.2em;
}

.visual-section-heading {
  position: relative;
  min-height: 32rem;
  aspect-ratio: 1320 / 572;
  margin-bottom: clamp(3.6rem, 4.2vw, 8rem);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.visual-section-heading--oem {
  background-image: url("../images/jc_oem_dtop.jpg");
}

.visual-section-heading--ags {
  background-image: url("../images/jc_co_dtop.jpg");
}

.visual-section-heading__body {
  position: absolute;
  left: clamp(2.8rem, 4vw, 7.2rem);
  right: clamp(2.8rem, 4vw, 7.2rem);
  bottom: clamp(2.8rem, 3.2vw, 5.6rem);
  color: #fff;
}

.visual-section-heading__title {
  margin: 0;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(2.8rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.visual-section-heading__lead {
  margin: 1.2em 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.service-section__body {
  max-width: none;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(24rem, 34%) minmax(0, 1fr);
  gap: clamp(3rem, 4.2vw, 7.8rem);
  align-items: start;
}

.message-layout__photo {
  margin: 0;
}

.message-layout__photo img {
  width: 100%;
  height: auto;
}

.message-layout__signature {
  margin-top: 2em !important;
  font-weight: 700;
  text-align: right;
}

.company-profile {
  margin: 0;
  border-top: 1px solid var(--color-line);
  font-size: clamp(1.45rem, 0.98vw, 1.8rem);
  letter-spacing: 0.08em;
}

.company-profile__row {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  border-bottom: 1px solid var(--color-line);
}

.company-profile dt,
.company-profile dd {
  margin: 0;
  padding: 1.8rem 0;
}

.company-profile dt {
  font-weight: 600;
}

.company-profile dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

.company-profile a {
  transition: opacity 0.24s ease;
}

.company-profile a:hover {
  opacity: 0.7;
}

.company-map {
  margin-top: clamp(4rem, 5vw, 8rem);
  width: 100%;
  overflow: hidden;
}

.company-map iframe {
  display: block;
  width: 100%;
  height: clamp(30rem, 25vw, 40rem);
}

.contact-lead {
  max-width: none;
  margin-bottom: clamp(3.6rem, 4vw, 6rem);
  font-size: clamp(1.45rem, 0.98vw, 1.8rem);
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.contact-lead p {
  margin: 0;
}

.contact-form {
  border-top: 1px solid var(--color-line);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 5rem);
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--color-line);
}

.contact-form__row--textarea {
  align-items: start;
}

.contact-form__label {
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.6rem;
  padding: 0.2rem 0.6rem;
  background: #777;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(26, 26, 26, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  font: inherit;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.contact-form__field textarea {
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: 2px solid rgba(26, 26, 26, 0.25);
  outline-offset: 2px;
}

.contact-form__submit {
  margin-top: clamp(3rem, 3.6vw, 6rem);
  text-align: center;
}

.contact-form__submit button {
  min-width: 22rem;
  padding: 1.4rem 3.6rem;
  border: 1px solid var(--color-text);
  border-radius: 0;
  background: var(--color-text);
  color: #fff;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: opacity 0.24s ease;
}

.contact-form__submit button:hover {
  opacity: 0.7;
}



.contact-form__submit {
  margin-top: clamp(3rem, 3.6vw, 6rem);
  text-align: center;
}

.contact-form__submit input[type="submit"],
.contact-form__submit .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22rem;
  padding: 1.4rem 3.6rem;
  border: 1px solid var(--color-text);
  border-radius: 0;
  background: var(--color-text);
  color: #fff;
  font: inherit;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-align: center;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: opacity 0.24s ease;
}

.contact-form__submit input[type="submit"]:hover,
.contact-form__submit .wpcf7-submit:hover {
  opacity: 0.7;
}

.contact-form__submit input[type="submit"]:disabled,
.contact-form__submit .wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}



.contact-tel {
  margin-top: clamp(4rem, 4.5vw, 7rem);
  padding: 2.4rem;
  border: 1px solid var(--color-line);
  text-align: center;
  font-size: clamp(1.4rem, 0.95vw, 1.7rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.contact-tel p {
  margin: 0;
}

.contact-tel p + p {
  margin-top: 0.4rem;
}

.contact-tel a {
  font-size: 1.25em;
  font-weight: 700;
}

.sp-only {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --left-gutter: clamp(3rem, 6.25vw, 7.4rem);
  }

  .global-nav {
    width: min(20rem, calc(var(--left-column-width) - var(--left-gutter) - 2rem));
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 7.2rem;
    --logo-top: 2rem;
    --logo-width: 9rem;
    --logo-height: 8.175rem;
    --left-column-width: 0px;
    --right-column-width: 100vw;
    --mv-image-bleed: 0px;
    --mv-image-actual-width: 100vw;
    --mv-image-left: 0px;
    --left-gutter: 2.4rem;
    --copy-top: 17.5rem;
  }

  html {
    font-size: 62.5%;
  }

  .site-logo {
    position: absolute;
    top: var(--logo-top);
    left: var(--left-gutter);
    width: var(--logo-width);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.55s ease, visibility 0.55s ease;
  }

  body.is-main-copy-hidden .site-logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .menu-button {
    position: fixed;
    display: block;
    top: 1.3rem;
    right: 1.6rem;
  }

  .menu-button__line {
    height: 3px;
  }

  .main-visual {
    min-height: 64rem;
    height: 100svh;
  }

  .main-visual__image {
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100% - 9rem);
    opacity: 1;
    filter: none;
    background-image: url("../images/jc_top_Mobile.jpg");
    background-position: center top;
    background-size: cover;
  }

  .main-visual__image::after {
    display: none;
  }

  .main-copy__line--jp {
    font-size: clamp(4.5rem, 15vw, 6.4rem);
  }

  .main-copy__line--en {
    width: min-content;
    max-width: calc(100vw - 4.8rem);
    font-size: clamp(2.8rem, 9.5vw, 4.5rem);
    white-space: normal;
  }

  .main-copy--base {
    color: #fff;
  }

  .main-copy--base .main-copy__line--en {
    color: #fff;
  }

  .main-copy--invert {
    display: none;
  }

  .main-visual__statement {
    top: auto;
    bottom: 10rem;
    left: var(--left-gutter);
    right: var(--left-gutter);
    color: #fff;
    font-weight: 700;
    z-index: 12;
  }

  .global-nav {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    z-index: 50;
    display: grid;
    align-content: start;
    width: min(34rem, 86vw);
    min-width: 0;
    height: 100svh;
    padding: 9.6rem 4rem 5rem;
    background: rgba(246, 246, 244, 0.97);
    box-shadow: -2rem 0 4rem rgba(0, 0, 0, 0.08);
    transform: translateX(105%);
    transition: transform 0.36s ease;
  }

  body.is-menu-open .global-nav {
    transform: translateX(0);
  }

  .global-nav__list {
    border-top-color: rgba(26, 26, 26, 0.35);
  }

  .global-nav__item {
    border-bottom-color: rgba(26, 26, 26, 0.35);
  }

  .global-nav a {
    min-height: 5.4rem;
    font-size: 1.5rem;
  }


  .right-column-frame {
    margin-left: 0;
    width: 100%;
  }

  .page-content {
    padding: 7rem 0 10rem;
  }

  .content-section__inner {
    padding: 0 2.4rem;
  }

  .section-heading {
    margin-bottom: 3.2rem;
  }

  .section-heading__title {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .news-item__row {
    grid-template-columns: auto auto 1fr;
    grid-template-areas:
      "date category ."
      "title title title";
    column-gap: 1.2rem;
    row-gap: 0.8rem;
    align-items: start;
    padding: 1.5rem 0;
  }

  .news-item__date {
    grid-area: date;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .news-item__category {
    grid-area: category;
    min-width: 8.8rem;
    font-size: 1.1rem;
  }

  .news-item__title {
    grid-area: title;
    font-size: 1.3rem;
    line-height: 1.55;
  }

  .content-section + .content-section {
    margin-top: 8rem;
  }

  .section-body {
    font-size: 1.45rem;
    line-height: 2.05;
    letter-spacing: 0.06em;
  }

  .visual-section-heading {
    min-height: 0;
    aspect-ratio: 1077 / 672;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
    margin-bottom: 3.2rem;
  }

  .visual-section-heading--oem {
    background-image: url("../images/jc_oem_Mobile.jpg");
  }

  .visual-section-heading--ags {
    background-image: url("../images/jc_co_Mobile.jpg");
  }

  .visual-section-heading__body {
    left: 2.4rem;
    right: 2.4rem;
    bottom: 2.4rem;
  }

  .visual-section-heading__title {
    font-size: clamp(2.6rem, 8.5vw, 4rem);
    line-height: 1.15;
  }

  .visual-section-heading__lead {
    display: none;
  }

  .message-layout {
    display: block;
  }

  .message-layout__photo {
    width: min(72vw, 28rem);
    margin: 0 0 3rem;
  }

  .message-layout__signature {
    text-align: right;
  }

  .company-profile__row {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }

  .company-profile dt,
  .company-profile dd {
    padding: 0;
  }

  .company-profile dt {
    margin-bottom: 0.4rem;
    font-size: 1.3rem;
  }

  .company-map iframe {
    height: 32rem;
  }

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

  .contact-lead {
    margin-bottom: 3.2rem;
    font-size: 1.45rem;
    line-height: 2.05;
    letter-spacing: 0.06em;
  }

  .contact-form__row {
    display: block;
    padding: 1.8rem 0;
  }

  .contact-form__label {
    display: block;
    margin-bottom: 0.8rem;
  }

  .contact-form__field {
    display: block;
    width: 100%;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    padding: 1.2rem 1.3rem;
    font-size: 1.6rem;
  }

  .contact-form__submit {
    margin-top: 3.2rem;
  }

  .contact-form__submit button {
    width: 100%;
    min-width: 0;
  }



  .contact-form__submit {
    margin-top: 3.2rem;
  }

  .contact-form__submit input[type="submit"],
  .contact-form__submit .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }



  .contact-tel {
    margin-top: 3.6rem;
    padding: 2rem 1.6rem;
    font-size: 1.35rem;
  }

  .sp-only {
    display: block;
  }

  .site-header {
    z-index: 90;
    pointer-events: none;
  }

  .site-logo,
  .menu-button {
    pointer-events: auto;
  }

  .global-nav {
    z-index: 80;
  }

  .menu-button {
    z-index: 100;
  }

}



.pickup-links {
  padding: 0;
}

.pickup-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pickup-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  background: #f3f3f3;
}

.pickup-card__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pickup-card:hover .pickup-card__image {
  transform: scale(1.04);
}

.pickup-card__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  max-width: 260px;
  padding: 22px 18px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
  box-sizing: border-box;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.pickup-card__sub {
  margin: 0 0 6px;
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  color: #555;
}

.pickup-card__eyebrow {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #4a4a4a;
}

.pickup-card__eyebrow--shop {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}

.pickup-card__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 991px) {
  .pickup-links__grid {
    grid-template-columns: 1fr;
  }

  .pickup-card {
    min-height: 260px;
  }

  .pickup-card__image {
    min-height: 260px;
  }

  .pickup-card__overlay {
    width: 68%;
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .pickup-card {
    min-height: 220px;
  }

  .pickup-card__image {
    min-height: 220px;
  }

  .pickup-card__overlay {
    width: 76%;
    padding: 18px 14px;
  }

  .pickup-card__eyebrow {
    font-size: 1.5rem;
  }

  .pickup-card__eyebrow--shop {
    font-size: 1.8rem;
  }

  .pickup-card__text {
    font-size: 0.72rem;
    line-height: 1.7;
  }
}





.footer {
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer {
  padding: 32px;
  color: var(--muted);
  font-size: 1.2rem;
}

