@charset "UTF-8";
:root {
  --color-bg: #F5EFE9;
  --color-text: #14141E;
  --color-dark: #212121;
  --color-white: #fff;
  --color-accent: #2563EB;
  --color-accent-light: #EFF1FB;
  --color-muted: #E2D8CE;
  --header-h: 0px;
  --transition: 0.3s ease;
}
@media (min-width: 768px) { :root { --header-h: 76px; } }
@media (max-width: 767px) { :root { --header-h: 60px; } }

#wrapper {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

@media (max-width: 767px) { .u-pc { display: none !important; } }
@media (min-width: 768px) { .u-sp { display: none !important; } }

.l-wrap--pc { width: 100%; }
@media (min-width: 1101px) {
  .l-wrap--pc {
    max-width: calc(100% - 120px);
    margin-inline: 60px;
    border-left: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .l-wrap--pc {
    max-width: calc(100% - 60px);
    margin-inline: 30px;
    border-left: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
  }
}

/* ========================================
   Header
======================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-text);
}
@media (min-width: 1101px) {
  .l-header {
    max-width: calc(100% - 120px);
    margin-inline: 60px;
    border-left: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .l-header {
    max-width: calc(100% - 60px);
    margin-inline: 30px;
    border-left: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
  }
}
@media (max-width: 767px) { .l-header { height: var(--header-h); } }

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) { .l-header__inner { padding: 15px 30px; } }
@media (max-width: 767px) { .l-header__inner { padding: 8px 12px; } }

@media (min-width: 768px) { .l-header__left { width: 20%; max-width: 300px; } }
@media (max-width: 767px) { .l-header__left { width: 100%; max-width: 160px; } }
.l-header__right { width: fit-content; }

.l-header__right__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1101px) { .l-header__right__nav { width: 100%; gap: 39px; } }
@media (max-width: 1100px) { .l-header__right__nav { display: none; } }

.l-header__right__nav ul { display: flex; flex-wrap: wrap; }
@media (min-width: 1401px) { .l-header__right__nav ul { gap: 36px; } }
@media (min-width: 1101px) and (max-width: 1400px) { .l-header__right__nav ul { gap: 10px 18px; } }
.l-header__right__nav ul a { color: var(--color-text); font-size: 1rem; white-space: nowrap; }
.l-header__right__nav ul a:hover { color: var(--color-accent); }

.l-header__right__hamburger { margin-top: 4px; }
@media (min-width: 1101px) { .l-header__right__hamburger { display: none; } }
@media (max-width: 1100px) { .l-header__right__hamburger { display: block; } }

.l-header__right__hamburger button {
  position: relative;
  width: 56px;
  height: 36px;
  background-color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 9999px;
  z-index: 102;
  transition: background-color var(--transition);
}
.l-header__right__hamburger button span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--color-white);
  transition: all var(--transition);
}
.l-header__right__hamburger button span:nth-child(1) { top: 14px; }
.l-header__right__hamburger button span:nth-child(2) { top: 20px; }
.l-header__right__hamburger button.is-active span:nth-child(1) {
  top: 17px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__right__hamburger button.is-active span:nth-child(2) {
  top: 17px;
  transform: translateX(-50%) rotate(-45deg);
}

/* SP Navigation */
.l-spNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-bg);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--color-text);
}
.l-spNav.is-open { transform: translateX(0); }

.l-spNav__header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px;
  background-color: var(--color-bg);
  z-index: 1;
}
.l-spNav__close {
  position: relative;
  width: 56px;
  height: 36px;
  background-color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 9999px;
}
.l-spNav__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--color-white);
}
.l-spNav__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.l-spNav__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.l-spNav__inner { padding: 0 24px 40px; }
.l-spNav__list li { border-bottom: 1px solid rgba(20, 20, 30, 0.15); }
.l-spNav__list li:first-child { border-top: 1px solid rgba(20, 20, 30, 0.15); }
.l-spNav__list li a {
  display: block;
  padding: 20px 0;
  color: var(--color-text);
  font-size: 1.1428571429rem;
  font-weight: 500;
}
.l-spNav__list li a:hover { color: var(--color-accent); }

.l-spNav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(20, 20, 30, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.l-spNav__overlay.is-open { opacity: 1; visibility: visible; }

body.is-menuOpen { overflow: hidden; }

/* ========================================
   Heading Components
======================================== */
.c-h {
  display: flex;
  flex-direction: row-reverse;
  width: fit-content;
}
@media (min-width: 768px) { .c-h { gap: 10px; } }
@media (max-width: 767px) { .c-h { gap: 5px; } }

.c-h__en {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 400;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) { .c-h__en { font-size: 1.125rem; line-height: 1.2; letter-spacing: 0.05em; } }
@media (max-width: 767px) { .c-h__en { font-size: 1rem; } }

.c-h__jp {
  font-family: "Noto Serif SC", serif;
  font-weight: 400;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) { .c-h__jp { font-size: 3.5rem; } }
@media (max-width: 767px) { .c-h__jp { font-size: 2.2857142857rem; } }

.c-h03 {
  display: flex;
  width: fit-content;
  flex-direction: column;
}
@media (min-width: 768px) { .c-h03 { gap: 10px; } }
@media (max-width: 767px) { .c-h03 { gap: 5px; } }

.c-h03__en {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 10px;
}
@media (min-width: 768px) { .c-h03__en { font-size: 1.3125rem; letter-spacing: 0.08em; } }
@media (max-width: 767px) { .c-h03__en { font-size: 1.2857142857rem; } }

.c-h03__jp {
  font-family: "Noto Serif SC", serif;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 768px) { .c-h03__jp { font-size: 3.5rem; } }
@media (max-width: 767px) { .c-h03__jp { font-size: 2.2857142857rem; } }

.c-btn03 {
  display: inline-block;
  background-color: var(--color-text);
  color: var(--color-white);
  border-radius: 9999px;
  font-weight: 600;
  border: 1px solid var(--color-text);
  transition: all var(--transition);
}
@media (min-width: 768px) { .c-btn03 { padding: 10px 23px; font-size: 1rem; } }
@media (max-width: 767px) { .c-btn03 { padding: 10px 20px; font-size: 1rem; } }
.c-btn03:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ========================================
   Hero Section
======================================== */
.p-hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-text);
}
@media (max-width: 767px) { .p-hero { min-height: auto; padding: 60px 0 40px; } }

.p-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 1101px) {
  .p-hero__inner { max-width: calc(100% - 120px); margin-inline: 60px; padding: 60px 40px; }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .p-hero__inner { max-width: calc(100% - 60px); margin-inline: 30px; padding: 40px 20px; }
}
@media (max-width: 767px) {
  .p-hero__inner { flex-direction: column-reverse; padding-inline: 20px; text-align: center; gap: 30px; }
}

.p-hero__left { flex: 1; }
@media (min-width: 768px) { .p-hero__left { padding-right: 60px; } }

.p-hero__name__en {
  display: block;
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--color-text);
  opacity: 0.15;
}
@media (min-width: 768px) { .p-hero__name__en { font-size: 5vw; } }
@media (max-width: 767px) { .p-hero__name__en { font-size: 10vw; } }

.p-hero__name__cn {
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  color: var(--color-text);
  margin-top: -0.3em;
}
@media (min-width: 768px) { .p-hero__name__cn { font-size: 6vw; } }
@media (max-width: 767px) { .p-hero__name__cn { font-size: 4rem; } }

.p-hero__title {
  font-family: "Noto Serif SC", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
@media (min-width: 768px) { .p-hero__title { font-size: 1.5rem; margin-top: 10px; } }
@media (max-width: 767px) { .p-hero__title { font-size: 1.25rem; margin-top: 8px; } }

.p-hero__desc {
  color: var(--color-text);
  opacity: 0.7;
  line-height: 1.6;
}
@media (min-width: 768px) { .p-hero__desc { font-size: 1.125rem; margin-top: 20px; } }
@media (max-width: 767px) { .p-hero__desc { font-size: 1rem; margin-top: 16px; } }

.p-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) { .p-hero__tags { margin-top: 30px; } }
@media (max-width: 767px) { .p-hero__tags { margin-top: 20px; justify-content: center; } }

.p-hero__tag {
  padding: 6px 16px;
  border: 1px solid var(--color-text);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--color-text);
}

.p-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) { .p-hero__links { margin-top: 32px; } }
@media (max-width: 767px) { .p-hero__links { margin-top: 24px; justify-content: center; } }

.p-hero__right { flex-shrink: 0; }
@media (min-width: 768px) { .p-hero__right { width: 30%; max-width: 280px; } }

.p-hero__avatar svg { width: 100%; height: auto; display: block; }

/* ========================================
   About Section
======================================== */
.p-about { position: relative; }
@media (min-width: 1101px) { .p-about { padding: 160px 0; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-about { padding: 100px 0; } }
@media (max-width: 767px) { .p-about { padding: 80px 0; } }

.p-about__inner {
  display: flex;
}
@media (min-width: 1101px) { .p-about__inner { gap: 130px; width: 85%; margin-left: auto; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-about__inner { gap: 60px; width: 90%; margin-left: auto; } }
@media (max-width: 767px) { .p-about__inner { flex-direction: column; gap: 20px; padding-inline: 20px; } }

.p-about__title { flex-shrink: 0; }

.p-about__content { flex: 1; min-width: 0; }
.p-about__content p {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-about__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .p-about__info { margin-top: 40px; } }
@media (max-width: 767px) { .p-about__info { margin-top: 30px; grid-template-columns: 1fr; } }

.p-about__info-item {
  padding: 16px 20px;
  border: 1px solid var(--color-text);
}
.p-about__info-label {
  display: block;
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.p-about__info-value {
  font-size: 1rem;
  color: var(--color-text);
}

/* ========================================
   Experience Section
======================================== */
.p-experience { position: relative; background-color: var(--color-accent-light); }
@media (min-width: 1101px) { .p-experience { padding: 160px 0; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-experience { padding: 100px 0; } }
@media (max-width: 767px) { .p-experience { padding: 80px 0; } }

.p-experience__inner { display: flex; }
@media (min-width: 1101px) { .p-experience__inner { gap: 130px; width: 85%; margin-right: auto; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-experience__inner { gap: 60px; width: 90%; margin-right: auto; } }
@media (max-width: 767px) { .p-experience__inner { flex-direction: column; gap: 20px; padding-inline: 20px; } }

.p-experience__title { flex-shrink: 0; }

.p-experience__list { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }

.p-expCard {
  background-color: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}
.p-expCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.p-expCard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) { .p-expCard__header { flex-direction: column; gap: 8px; } }

.p-expCard__meta { flex: 1; }
.p-expCard__company {
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.p-expCard__role {
  font-size: 0.875rem;
  color: var(--color-accent);
}
.p-expCard__time {
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.875rem;
  color: var(--color-text);
  opacity: 0.6;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-expCard__tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.p-expCard__tags .tag {
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.p-expCard__desc {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}
.p-expCard__desc li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* ========================================
   Skills Section
======================================== */
.p-skills { position: relative; }
@media (min-width: 1101px) { .p-skills { padding: 160px 0; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-skills { padding: 100px 0; } }
@media (max-width: 767px) { .p-skills { padding: 80px 0; } }

.p-skills__inner { display: flex; }
@media (min-width: 1101px) { .p-skills__inner { gap: 130px; width: 85%; margin-left: auto; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-skills__inner { gap: 60px; width: 90%; margin-left: auto; } }
@media (max-width: 767px) { .p-skills__inner { flex-direction: column; gap: 20px; padding-inline: 20px; } }

.p-skills__title { flex-shrink: 0; }

.p-skills__list { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }

.p-skill__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.p-skill__name {
  font-size: 1rem;
  font-weight: 500;
}
.p-skill__pct {
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.875rem;
  color: var(--color-accent);
}
.p-skill__bar {
  width: 100%;
  height: 8px;
  background-color: var(--color-muted);
  border-radius: 9999px;
  overflow: hidden;
}
.p-skill__bar-inner {
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 9999px;
  width: 0;
  transition: width 1.2s ease;
}
.p-skill__bar-inner.is-animated { width: var(--w); }

/* ========================================
   Projects Section
======================================== */
.p-projects { position: relative; background-color: var(--color-accent-light); }
@media (min-width: 1101px) { .p-projects { padding: 160px 0; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-projects { padding: 100px 0; } }
@media (max-width: 767px) { .p-projects { padding: 80px 0; } }

.p-projects__inner { display: flex; }
@media (min-width: 1101px) { .p-projects__inner { gap: 130px; width: 85%; margin-right: auto; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-projects__inner { gap: 60px; width: 90%; margin-right: auto; } }
@media (max-width: 767px) { .p-projects__inner { flex-direction: column; gap: 20px; padding-inline: 20px; } }

.p-projects__title { flex-shrink: 0; }

.p-projects__list { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }

.p-projectCard {
  background-color: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}
.p-projectCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.p-projectCard__title {
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.p-projectCard__sub {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.p-projectCard__time {
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.6;
}
.p-projectCard__desc {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}
.p-projectCard__desc li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* ========================================
   Bottom Section (Education + Contact)
======================================== */
.p-bottom { position: relative; }
@media (min-width: 1101px) { .p-bottom { padding: 160px 0; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-bottom { padding: 100px 0; } }
@media (max-width: 767px) { .p-bottom { padding: 80px 0; } }

.p-bottom__inner {
  display: flex;
  gap: 80px;
}
@media (min-width: 1101px) { .p-bottom__inner { width: 85%; margin-left: auto; } }
@media (min-width: 768px) and (max-width: 1100px) { .p-bottom__inner { width: 90%; margin-left: auto; gap: 40px; } }
@media (max-width: 767px) { .p-bottom__inner { flex-direction: column; gap: 40px; padding-inline: 20px; } }

.p-bottom__edu { flex: 1; min-width: 0; }
@media (min-width: 768px) { .p-bottom__edu { width: 55%; } }

.p-eduCard {
  border: 1px solid var(--color-text);
  padding: 24px;
  background-color: var(--color-white);
}
@media (min-width: 768px) { .p-eduCard { margin-top: 40px; } }
@media (max-width: 767px) { .p-eduCard { margin-top: 20px; } }

.p-eduCard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) { .p-eduCard__header { flex-direction: column; gap: 6px; } }
.p-eduCard__header h3 {
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  font-size: 1.125rem;
}
.p-eduCard__time {
  font-family: "Sulphur Point", sans-serif;
  font-size: 0.875rem;
  opacity: 0.6;
  white-space: nowrap;
}
.p-eduCard__major {
  margin-top: 8px;
  color: var(--color-accent);
  font-size: 0.875rem;
}
.p-eduCard__desc {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}
.p-eduCard__desc li {
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-bottom__contact { flex: 1; min-width: 0; }

.p-bottom__contact__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) { .p-bottom__contact__content { margin-top: 40px; } }
@media (max-width: 767px) { .p-bottom__contact__content { margin-top: 24px; } }

.p-bottom__contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-bottom__contact__item svg { flex-shrink: 0; }
.p-bottom__contact__item a {
  font-size: 1.125rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.p-bottom__contact__links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ========================================
   Footer
======================================== */
.l-footer {
  position: relative;
  border-top: 1px solid var(--color-text);
}
@media (min-width: 1101px) {
  .l-footer {
    max-width: calc(100% - 120px);
    margin-inline: 60px;
    border-left: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .l-footer {
    max-width: calc(100% - 60px);
    margin-inline: 30px;
    border-left: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
  }
}
.l-footer__inner { display: flex; }
@media (min-width: 768px) {
  .l-footer__inner {
    justify-content: space-between;
    max-width: 1360px;
    padding-inline: 40px;
    margin-inline: auto;
    padding-top: 54px;
    padding-bottom: 62px;
  }
}
@media (max-width: 767px) {
  .l-footer__inner {
    padding: 20px 20px 60px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 768px) { .l-footer__left { max-width: 300px; } }
.l-footer__left a {
  color: var(--color-text);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) { .l-footer__left a { font-size: 1.25rem; } }
@media (max-width: 767px) { .l-footer__left a { font-size: 1.2857142857rem; } }
.l-footer__left p {
  color: var(--color-text);
  line-height: 1.6;
}
@media (min-width: 768px) { .l-footer__left p { font-size: 0.875rem; margin-top: 5px; } }
@media (max-width: 767px) { .l-footer__left p { margin-top: 10px; font-size: 1rem; } }

@media (min-width: 768px) { .l-footer__right { width: 68%; display: flex; flex-direction: column; justify-content: space-between; } }
.l-footer__right ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 768px) { .l-footer__right ul { gap: 12px 36px; } }
@media (max-width: 767px) { .l-footer__right ul { justify-content: flex-start; gap: 8px 16px; margin-bottom: 16px; } }
.l-footer__right ul li a { color: var(--color-text); font-size: 1rem; }
.l-footer__right ul li a:hover { color: var(--color-accent); }

.l-footer__right__copy {
  color: var(--color-text);
  text-align: right;
}
@media (min-width: 768px) { .l-footer__right__copy { font-size: 0.75rem; margin-top: 135px; } }
@media (max-width: 767px) { .l-footer__right__copy { font-size: 0.8571428571rem; margin-top: 17px; } }
