@charset "utf-8";

/* =========================
   01. Base
========================= */
:root {
  --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  --font-serif:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  --color-bg: #f5f4f2;
  --color-white: #fff;
  --color-text: #202020;
  --color-muted: #666;
  --color-border: rgba(0, 0, 0, .08);

  --color-red: #b8122b;
  --color-red-dark: #941126;
  --color-beige: #c8ab82;
  --color-beige-light: #eee7dc;
  --color-dark: #282828;

  --color-accent: #8a6a2f;
  --color-gold: #8a6a2f;

  --fz-xs: clamp(1.1rem, 2.7vw, 1.3rem);
  --fz-s: clamp(1.2rem, 3vw, 1.4rem);
  --fz-m: clamp(1.4rem, 3.6vw, 1.6rem);
  --fz-l: clamp(1.8rem, 5vw, 2.4rem);
  --fz-xl: clamp(2.4rem, 7vw, 3.6rem);
  --fz-xxl: clamp(3rem, 9vw, 4.6rem);

  --lh-base: 1.8;
  --lh-heading: 1.45;

  --section-y: clamp(64px, 16vw, 112px);
  --section-x: clamp(20px, 6vw, 36px);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-card: 0 18px 45px rgba(0, 0, 0, .08);

  --occupation-main: #6fa64b;
  --occupation-main-dark: #4f7f35;
  --occupation-main-soft: #f1f8e9;
  --occupation-accent: #e09a3b;
  --occupation-border: rgba(111, 166, 75, .22);
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  font-size: var(--fz-m);
  line-height: var(--lh-base);
  color: var(--color-muted);
  letter-spacing: .04em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  line-height: var(--lh-heading);
  letter-spacing: .05em;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  font-size: var(--fz-xxl);
}

h2 {
  font-size: var(--fz-xl);
}

h3 {
  font-size: var(--fz-l);
}



/* =========================
   02. Header / Top Menu
========================= */
.site-header {
  background: var(--color-bg);
}

#top-menu {
  height: 60px;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: -3px;
  width: 100%;
  font-family: var(--font-sans);
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact,
#top-menu .top-menu-pc {
  text-decoration: none;
  float: left;
  width: 66px;
  height: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-right: none;
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact {
  transform: translateY(3px);
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

#top-menu .top-menu-tel:focus,
#top-menu .top-menu-contact:focus,
#top-menu .top-menu-tel:focus-visible,
#top-menu .top-menu-contact:focus-visible {
  outline: none;
  box-shadow: none;
}

#top-menu .top-menu-tel img,
#top-menu .top-menu-contact img,
#top-menu .top-menu-pc img {
  display: block;
  width: 45%;
}

#top-menu .top-menu-tel span,
#top-menu .top-menu-contact span,
#top-menu .top-menu-pc span {
  line-height: 1;
  margin-top: 6px;
  font-size: var(--fz-xs);
  color: var(--color-text);
}

#top-menu .menu-btn {
  float: right;
  width: 56px;
  height: 60px;
  position: relative;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: none;
  padding: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-text);
}

#top-menu .menu-btn .menu-btn-inner,
#top-menu .menu-btn .menu-btn-inner span {
  display: inline-block;
  box-sizing: border-box;
}

#top-menu .menu-btn .menu-btn-inner {
  width: 25px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
}

#top-menu .menu-btn .menu-btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition:
    transform .3s ease,
    opacity .3s ease;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(1) {
  top: 0;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(2) {
  top: 10px;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(3) {
  bottom: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(1),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(2),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(2) {
  opacity: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(3),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

#top-menu .menu-btn > span {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: block;
  line-height: 1;
  width: 100%;
  text-align: center;
  font-size: var(--fz-xs);
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn > span {
  color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn-inner span {
  background-color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel img,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact img {
  filter: brightness(0) invert(1);
}

#top-menu .menu-btn[aria-expanded="true"] {
  color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span {
  background-color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] > span {
  color: #fff;
}

/* =========================
   SP Menu
========================= */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: none;
  overflow-y: auto;
  padding:
    clamp(70px, 18vw, 92px)
    var(--section-x)
    calc(clamp(82px, 22vw, 112px) + env(safe-area-inset-bottom));
  background:
    linear-gradient(
      180deg,
      rgba(18, 16, 14, .82) 0%,
      rgba(33, 28, 23, .78) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sp-menu.active {
  display: block;
}

.sp-menu__panel {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0;
}

.sp-menu__label {
  margin:
    0
    0
    clamp(34px, 9vw, 48px);
  color: #ea5532;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .24em;
  text-align: center;
}

.sp-menu__links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-menu__links--main {
  gap: clamp(24px, 6.8vw, 34px);
}

.sp-menu__links--sub {
  gap: clamp(22px, 6.2vw, 30px);
  margin-top: clamp(46px, 12vw, 62px);
  padding-top: 0;
}

.sp-menu__links li {
  margin: 0;
  padding: 0;
}

.sp-menu__links a {
  display: block;
  color: rgba(255, 255, 255, .94);
  text-align: center;
  text-decoration: none;
}

.sp-menu__main-text {
  display: block;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.72rem, 4.85vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
}

.sp-menu__sub-text {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.16rem, 3.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .16em;
}

.sp-menu__links--sub .sp-menu__main-text {
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.46rem, 4.15vw, 1.68rem);
  font-weight: 500;
  letter-spacing: .1em;
}

.sp-menu__links--sub .sp-menu__sub-text {
  color: rgba(255, 255, 255, .54);
  font-size: clamp(1.04rem, 3vw, 1.2rem);
}

.sp-menu__links a:active {
  opacity: .62;
}


/* =========================
   Occupation Hero
========================= */

.occupation-page {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f5f4f2 0%,
      #ffffff 46%,
      #f7fbf0 100%
    );
}

.occupation-hero {
  position: relative;
  min-height: clamp(520px, 136vw, 660px);
  overflow: hidden;
  background: #eaf4e4;
}

.occupation-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.occupation-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.occupation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(245, 244, 242, .88) 0%,
      rgba(245, 244, 242, .76) 30%,
      rgba(245, 244, 242, .30) 56%,
      rgba(245, 244, 242, .72) 78%,
      rgba(245, 244, 242, .96) 100%
    );
  pointer-events: none;
}

.occupation-hero__content {
  position: relative;
  z-index: 2;
  width: min(88%, 680px);
  margin: 0 auto;
  padding:
    clamp(92px, 24vw, 124px)
    0
    0;
}

.occupation-hero__label {
  display: inline-flex;
  align-items: center;
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  padding:
    clamp(6px, 1.8vw, 8px)
    clamp(13px, 4vw, 17px);
  color: var(--occupation-main-dark);
  background: rgba(255, 255, 255, .76);
  border:
    1px
    solid
    rgba(111, 166, 75, .28);
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.occupation-hero h1 {
  color: #243020;
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .04em;
}

.occupation-hero__lead {
  position: absolute;
  right: 6%;
  bottom: clamp(34px, 9vw, 56px);
  left: 6%;
  z-index: 3;
  width: min(88%, 680px);
  margin: 0 auto;
  color: #37402f;
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: .04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .72);
}

/* =========================
   Breadcrumb
========================= */
.breadcrumb {
  width: min(88%, 720px);
  margin: 0 auto;
  padding:
    clamp(12px, 3vw, 16px)
    0;
  font-size: clamp(1.15rem, 3.2vw, 1.3rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  color: #69635b;
  line-height: 1.6;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: rgba(95, 90, 82, .62);
}

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



/* =========================
   お仕事選択
========================= */

.occupation-select {
  padding:
    clamp(44px, 11vw, 68px)
    0
    clamp(64px, 15vw, 96px);
  background:
    linear-gradient(
      180deg,
      #f5f4f2 0%,
      #ffffff 48%,
      #f7fbf0 100%
    );
}

.occupation-select__inner {
  width: min(90%, 720px);
  margin: 0 auto;
}

.occupation-heading {
  margin-bottom: clamp(38px, 10vw, 56px);
  text-align: center;
}

.occupation-heading__en {
  display: inline-block;
  margin-bottom: clamp(8px, 2.5vw, 12px);
  color: #9a742c;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: .18em;
}

.occupation-heading h2 {
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1.45;
  letter-spacing: .05em;
}

.occupation-heading p {
  width: min(100%, 34em);
  margin:
    0
    auto
    clamp(34px, 9vw, 52px);
  color: var(--color-text);
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  line-height: 1.9;
  letter-spacing: .04em;
  text-align: left;
}

.occupation-select__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 3.4vw, 16px);
}

.occupation-select__button {
  position: relative;
  display: flex;
  min-height: clamp(118px, 31vw, 142px);
  padding:
    clamp(18px, 5vw, 24px)
    clamp(13px, 3.8vw, 17px)
    clamp(15px, 4.2vw, 20px);
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(5px, 1.6vw, 7px);
  color: var(--color-text);
  text-decoration: none;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf1 100%
    );
  border:
    1px
    solid
    rgba(150, 111, 43, .24);
  border-radius: clamp(16px, 4.5vw, 22px);
  box-shadow:
    0 12px 24px rgba(72, 48, 18, .08),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  overflow: hidden;
}

.occupation-select__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--occupation-button-line);
}

.occupation-select__button::after {
  content: "";
  position: absolute;
  right: clamp(13px, 3.8vw, 17px);
  bottom: clamp(17px, 4.8vw, 23px);
  width: .62em;
  height: .62em;
  border-top:
    2px
    solid
    rgba(143, 105, 39, .72);
  border-right:
    2px
    solid
    rgba(143, 105, 39, .72);
  transform: rotate(45deg);
}

.occupation-select__tag {
  position: absolute;
  top: clamp(14px, 4vw, 18px);
  left: clamp(13px, 3.8vw, 17px);
  z-index: 2;
  display: inline-flex;
  min-width: 3.8em;
  align-items: center;
  justify-content: center;
  padding:
    .34em
    .62em;
  color: var(--occupation-tag-text);
  background: var(--occupation-tag-bg);
  border:
    1px
    solid
    var(--occupation-tag-border);
  border-radius: 999px;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
}

.occupation-select__main {
  position: relative;
  z-index: 2;
  display: block;
  padding-right: 1.1em;
  font-size: clamp(1.58rem, 4.3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .04em;
}

.occupation-select__sub {
  position: relative;
  z-index: 2;
  display: block;
  padding-right: 1.1em;
  color: var(--color-muted);
  font-size: clamp(1.12rem, 3.1vw, 1.28rem);
  line-height: 1.5;
  letter-spacing: .03em;
}

/* 職種ボタン 色分け */

.occupation-select__button:nth-child(1) {
  --occupation-button-line:
    linear-gradient(90deg, #d6b45c 0%, #88a85f 100%);
  --occupation-tag-text: #67501f;
  --occupation-tag-bg: rgba(214, 180, 92, .22);
  --occupation-tag-border: rgba(166, 125, 44, .24);
}

.occupation-select__button:nth-child(2) {
  --occupation-button-line:
    linear-gradient(90deg, #b59a58 0%, #6f9f7a 100%);
  --occupation-tag-text: #476b53;
  --occupation-tag-bg: rgba(111, 159, 122, .18);
  --occupation-tag-border: rgba(111, 159, 122, .28);
}

.occupation-select__button:nth-child(3) {
  --occupation-button-line:
    linear-gradient(90deg, #c6a14b 0%, #8b7b52 100%);
  --occupation-tag-text: #6a5420;
  --occupation-tag-bg: rgba(198, 161, 75, .18);
  --occupation-tag-border: rgba(198, 161, 75, .28);
}

.occupation-select__button:nth-child(4) {
  --occupation-button-line:
    linear-gradient(90deg, #8fb7a5 0%, #5d8f7d 100%);
  --occupation-tag-text: #3f6b5c;
  --occupation-tag-bg: rgba(143, 183, 165, .2);
  --occupation-tag-border: rgba(93, 143, 125, .28);
}

.occupation-select__button:nth-child(5) {
  --occupation-button-line:
    linear-gradient(90deg, #c09a5a 0%, #8f6c43 100%);
  --occupation-tag-text: #6f4f25;
  --occupation-tag-bg: rgba(192, 154, 90, .2);
  --occupation-tag-border: rgba(143, 108, 67, .28);
}

.occupation-select__button:nth-child(6) {
  --occupation-button-line:
    linear-gradient(90deg, #6f9fb5 0%, #3f718f 100%);
  --occupation-tag-text: #315d73;
  --occupation-tag-bg: rgba(111, 159, 181, .18);
  --occupation-tag-border: rgba(63, 113, 143, .28);
}

.occupation-select__button:nth-child(7) {
  --occupation-button-line:
    linear-gradient(90deg, #b56d5b 0%, #8f4b3f 100%);
  --occupation-tag-text: #7a3f34;
  --occupation-tag-bg: rgba(181, 109, 91, .18);
  --occupation-tag-border: rgba(143, 75, 63, .28);
}

.occupation-select__button:nth-child(8) {
  --occupation-button-line:
    linear-gradient(90deg, #5f7897 0%, #344d6b 100%);
  --occupation-tag-text: #344d6b;
  --occupation-tag-bg: rgba(95, 120, 151, .16);
  --occupation-tag-border: rgba(52, 77, 107, .25);
}

.occupation-select__button:nth-child(9) {
  --occupation-button-line:
    linear-gradient(90deg, #5f7657 0%, #344d35 100%);
  --occupation-tag-text: #3f5a3c;
  --occupation-tag-bg: rgba(95, 118, 87, .18);
  --occupation-tag-border: rgba(52, 77, 53, .26);
}

/* 掲載にないお仕事 */

.occupation-other {
  margin-top: clamp(30px, 8vw, 46px);
  padding:
    clamp(22px, 6vw, 32px)
    clamp(18px, 5vw, 28px);
  background:
    linear-gradient(
      180deg,
      #2b3324 0%,
      #171c13 100%
    );
  border-radius: clamp(18px, 5vw, 26px);
  box-shadow:
    0 18px 34px rgba(40, 48, 28, .18);
}

.occupation-other__body {
  margin-bottom: clamp(20px, 5.5vw, 28px);
  color: #ffffff;
}

.occupation-other__label {
  display: inline-block;
  margin-bottom: clamp(8px, 2.5vw, 12px);
  padding:
    .42em
    .9em;
  color: #293020;
  background: #e6c36a;
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .05em;
}

.occupation-other h3 {
  margin:
    0
    0
    clamp(12px, 3.5vw, 16px);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4.5vw, 2rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .04em;
}

.occupation-other p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .04em;
}

.occupation-contact {
  display: grid;
  gap: clamp(28px, 8vw, 40px);
}

.occupation-contact__button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding:
    clamp(14px, 3.8vw, 18px)
    clamp(14px, 4vw, 18px);
  border-radius: 999px;
  font-size: clamp(1.45rem, 4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .05em;
  text-align: center;
  text-decoration: none;
}

.occupation-contact__button--line {
  color: #ffffff;
  background: #06c755;
}

.occupation-contact__button--tel {
  color: #293020;
  background: #ffffff;
}

.occupation-contact__button--form {
  color: #ffffff;
  background: transparent;
  border:
    1px
    solid
    rgba(255, 255, 255, .55);
}

.occupation-other .occupation-contact__note {
  margin:
    clamp(28px, 8vw, 40px)
    0
    0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1.2rem, 3.3vw, 1.35rem);
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: center;
}



/* =========================
   14. Footer
========================= */
.site-footer {
  padding:
    48px
    var(--section-x)
    36px;
  color: var(--color-white);
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
  text-align: center;
}

.site-footer__sns ul {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__sns li {
  list-style: none;
}

.site-footer__sns a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.site-footer__sns img {
  display: block;
  width: 26px;
  height: auto;
}

.site-footer__nav ul {
  display: grid;
  gap: 10px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__nav li {
  list-style: none;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .82);
  font-size: var(--fz-s);
  line-height: 1.7;
  text-decoration: none;
}

.site-footer__copy {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   Utility
========================= */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-beige);
  outline-offset: 3px;
}

#top-menu .menu-btn:focus,
#top-menu .menu-btn:focus-visible {
  outline: none;
}

/* =========================
   Tap Motion
========================= */
.job-card > a,
.consult-contact__button {
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
}

.job-card > a:active,
.consult-contact__button:active {
  transform: scale(.985);
  opacity: .9;
}