*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #4D4D4D;
  background: #ffffff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.l-container {
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.25em;
  border: 1px solid transparent;
  border-radius: 9999px;
  background: #F7931E;
  color: #fff;
  transition: opacity 0.2s ease;
}

.c-button:hover {
  opacity: 0.85;
}

.is-loading {
  overflow: hidden;
}

.c-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.c-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.c-loading__logo {
  width: clamp(180px, 30vw, 320px);
  height: auto;
  animation: logoFloat 1.6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
.c-text {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.95;
  color: #4D4D4D;
}
@media (min-width: 1024px) {
  .c-text {
    font-size: 18px;
  }
}
.c-text--white {
  color: #fff;
}
.c-text--right {
  text-align: right;
}

.p-header {
  border-bottom: 1px solid #e6e6e6;
  background: #ffffff;
  position: relative;
  z-index: 100;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
@media (min-width: 1024px) {
  .p-header__inner {
    height: 84px;
  }
}
.p-header__logo img {
  width: clamp(140px, 18vw, 180px);
}
.p-header__menu-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.p-header__menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: #4b5563;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (min-width: 980px) {
  .p-header__menu-button {
    display: none;
  }
}
.p-header__nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: #F7931E;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.p-header__nav a {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (min-width: 980px) {
  .p-header__nav {
    position: static;
    z-index: auto;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    background: transparent;
    color: #4b5563;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .p-header__nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
  }
}

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

body.is-menu-open .p-header__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-menu-open .p-header__menu-button span {
  background: #fff;
}

body.is-menu-open .p-header__menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.is-menu-open .p-header__menu-button span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .p-header__menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.p-hero {
  padding: 40px 0 64px;
  background: #f5f5f5;
  min-height: calc(100svh - 72px);
}
@media (min-width: 640px) {
  .p-hero {
    padding: 80px 0 72px;
  }
}
@media (min-width: 980px) {
  .p-hero {
    display: block;
    padding-bottom: 0;
  }
}
.p-hero__inner {
  display: block;
}
@media (min-width: 640px) {
  .p-hero__inner {
    display: grid;
    position: relative;
    min-height: calc(100svh - 72px - 80px - 72px);
  }
}
@media (min-width: 1024px) {
  .p-hero__inner {
    min-height: calc(100svh - 84px - 56px - 80px);
  }
}
.p-hero__copy {
  color: #4b4f54;
}
@media (min-width: 640px) {
  .p-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 52%;
  }
}
@media (min-width: 980px) {
  .p-hero__copy {
    padding-top: 70px;
  }
}
.p-hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-32px);
}
@media (min-width: 640px) {
  .p-hero__title {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (min-width: 980px) {
  .p-hero__title {
    font-size: 54px;
    line-height: 72px;
  }
}
@media (min-width: 1024px) {
  .p-hero__title {
    font-size: 64px;
    line-height: 80px;
    padding-top: 80px;
  }
}
.p-hero__lead {
  margin-top: 16px;
  font-size: clamp(28px, 6.8vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  opacity: 0;
  transform: translateX(-32px);
}
@media (min-width: 640px) {
  .p-hero__lead {
    margin-top: 18px;
    font-size: 25px;
  }
}
@media (min-width: 980px) {
  .p-hero__lead {
    font-size: 27px;
    padding-left: 6px;
  }
}
@media (min-width: 1024px) {
  .p-hero__lead {
    font-size: 30px;
    padding-left: 10px;
  }
}
.p-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  margin-top: 28px;
}
@media (min-width: 640px) {
  .p-hero__visual {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 290px;
    width: 500px;
    min-height: auto;
    transform: translateY(-46%);
  }
}
@media (min-width: 980px) {
  .p-hero__visual {
    width: 650px;
    top: 310px;
  }
}
@media (min-width: 1024px) {
  .p-hero__visual {
    width: 680px;
    top: 330px;
  }
}
.p-hero__visual img {
  width: 100%;
  height: auto;
}
.p-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #9ca3af;
}
@media (min-width: 640px) {
  .p-hero__scroll {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-top: 0;
    z-index: 3;
  }
}
.p-hero__scroll-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .p-hero__scroll-text {
    font-size: 13px;
    letter-spacing: 0.22em;
  }
}
.p-hero__scroll-line {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 44px;
  background: #d1d5db;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-hero__scroll-line {
    width: 2px;
    height: 62px;
  }
}
.p-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #4b5563;
  animation: scrollLineMove 1.6s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .p-hero__scroll-line::after {
    top: -18px;
    height: 18px;
  }
}
@media (min-width: 1024px) {
  .p-hero {
    min-height: calc(100svh - 84px);
    padding: 56px 0 80px;
  }
}
@media (min-width: 640px) {
  .p-hero {
    padding: 48px 0 72px;
  }
}

body.is-loaded .p-hero__title {
  animation: heroTextSlideIn 0.8s ease-out forwards;
}

body.is-loaded .p-hero__lead {
  animation: heroTextSlideIn 0.8s ease-out 0.14s forwards;
}

@keyframes heroTextSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrollLineMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}
.p-about {
  padding: 48px 0 64px;
  background: #f7f7f7;
}
@media (min-width: 1024px) {
  .p-about {
    padding: 120px 0;
  }
}
.p-about__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: calc(8px + 10px);
}
.p-about__content {
  flex: 0 1 90%;
  max-width: 680px;
}
.p-about__title {
  font-size: 26px;
  line-height: 45px;
  color: #4D4D4D;
}
.p-about__title span {
  display: block;
}
@media (min-width: 640px) {
  .p-about__title span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .p-about__title {
    font-size: 32px;
    margin: 30px 0 80px;
  }
}
.p-about .c-text {
  margin-top: 16px;
}
.p-about__line-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: calc(-28px * -1 - 120px);
  flex: 0 0 8px;
  width: 8px;
  background: #f1ede6;
  z-index: 4;
}
@media (min-width: 980px) {
  .p-about__line-wrap {
    right: 150px;
    top: -50px;
  }
}
.p-about__line {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, #f9ce95 0%, #F7931E 100%);
  transition: transform 1.5s ease;
}
@media (min-width: 980px) {
  .p-about {
    padding: 76px 0 84px;
  }
  .p-about__inner {
    gap: 40px;
    padding-right: calc(10px + 14px);
  }
  .p-about__content {
    flex-basis: 74%;
    max-width: 760px;
  }
  .p-about__line-wrap {
    top: 4px;
    flex-basis: 10px;
    width: 10px;
    bottom: calc(-44px * -1 - 170px);
  }
  .p-about__line {
    transition-duration: 1.1s;
  }
}

.p-service {
  margin-top: -28px;
  padding: 24px 0 84px;
  background: #f7f7f7;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
  overflow-x: clip;
}
@media (min-width: 980px) {
  .p-service {
    padding: 60px 0;
    margin-top: -51px;
  }
}
.p-service__title {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #4D4D4D;
}
.p-service__title-accent {
  color: #F7931E;
}
.p-service__title::after {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  width: clamp(140px, 72vw, 520px);
  top: 56%;
  height: 10px;
  background: linear-gradient(90deg, #f9ce95 0%, #F7931E 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.15s;
  z-index: -1;
}
@media (min-width: 980px) {
  .p-service__title::after {
    width: 100vw;
  }
}
@media (min-width: 1024px) {
  .p-service__title {
    font-size: 64px;
  }
}
.p-service__inner {
  position: relative;
}
.p-service__inner::before, .p-service__inner::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 58px;
  width: 8px;
  border-radius: 999px;
}
@media (min-width: 1024px) {
  .p-service__inner::before, .p-service__inner::after {
    left: 6px;
    top: 86px;
    width: 10px;
  }
}
.p-service__inner::before {
  bottom: calc(110px * -1);
  background: #f1ede6;
}
@media (min-width: 980px) {
  .p-service__inner::before {
    bottom: calc(170px * -1);
  }
}
.p-service__inner::after {
  bottom: calc(110px * -1);
  background: linear-gradient(180deg, #f9ce95 0%, #F7931E 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s ease 0.2s;
}
@media (min-width: 980px) {
  .p-service__inner::after {
    bottom: calc(170px * -1);
  }
}
.p-service__lead {
  padding: 20px 0 0 30px;
}
@media (min-width: 980px) {
  .p-service__lead {
    padding: 40px 0 0 50px;
  }
}
.p-service__grid {
  margin-top: 28px;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}
@media (min-width: 980px) {
  .p-service__grid {
    margin-top: 60px;
    padding-left: 50px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}
.p-service__item {
  padding: 20px;
  border: 1px solid #ece8df;
  border-radius: 8px;
  background: #fff;
  opacity: 0;
  transform: translateY(14px);
}
.p-service__item h3 {
  font-size: 18px;
  color: #4D4D4D;
}
.p-service__item p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: #5b6168;
}
.p-service__item-icon {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon-1.svg);
}
.p-service__item-icon--2 {
  background-image: url(../images/icon-2.svg);
}
.p-service__item-icon--3 {
  background-image: url(../images/icon-3.svg);
}
.p-service__item-icon--4 {
  background-image: url(../images/icon-4.svg);
}
.p-service__item-icon--5 {
  background-image: url(../images/icon-5.svg);
}
.p-service__item-icon--6 {
  background-image: url(../images/icon-6.svg);
}

.js-inview.is-inview .p-about__line {
  transform: scaleY(1);
}

.js-inview.is-inview .p-service__title::after {
  transform: scaleX(1);
}

.p-service__inner.js-inview.is-inview::after {
  transform: scaleY(1);
}

.p-service__inner.js-inview.is-inview .p-service__item {
  animation: serviceItemFadeIn 0.7s ease forwards;
}

.p-service__inner.js-inview.is-inview .p-service__item:nth-child(2) {
  animation-delay: 0.24s;
}

.p-service__inner.js-inview.is-inview .p-service__item:nth-child(3) {
  animation-delay: 0.48s;
}

.p-service__inner.js-inview.is-inview .p-service__item:nth-child(4) {
  animation-delay: 0.72s;
}

.p-service__inner.js-inview.is-inview .p-service__item:nth-child(5) {
  animation-delay: 0.96s;
}

@keyframes serviceItemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-approach {
  padding: 28px 0 80px;
  background: #f7f7f7;
  overflow-x: hidden;
  overflow-x: clip;
}
@media (min-width: 640px) {
  .p-approach {
    padding: 40px 0 120px;
  }
}
@media (min-width: 980px) {
  .p-approach {
    padding: 135px 0 80px;
  }
}
.p-approach__inner {
  position: relative;
}
.p-approach__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 40px;
  line-height: 1.06;
  color: #4D4D4D;
}
@media (min-width: 1024px) {
  .p-approach__title {
    font-size: 55px;
  }
}
.p-approach__title-accent {
  position: relative;
  display: inline-block;
  color: #F7931E;
}
.p-approach__title-line-start {
  position: relative;
  display: inline-block;
}
.p-approach__title-line-start::after {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 58%;
  width: clamp(130px, 46vw, 320px);
  height: 10px;
  background: linear-gradient(90deg, #f9ce95 0%, #F7931E 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.85s ease;
}
@media (min-width: 980px) {
  .p-approach__title-line-start::after {
    width: 100vw;
  }
}
.p-approach__lead {
  margin-top: 18px;
  position: relative;
  z-index: 2;
  padding-right: 30px;
}
@media (min-width: 980px) {
  .p-approach__lead {
    padding: 30px;
  }
}
.p-approach__inner::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 78px;
  height: 530px;
  width: 8px;
  background: linear-gradient(180deg, #f9ce95 0%, #F7931E 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.95s ease 0.1s;
}
@media (min-width: 640px) {
  .p-approach__inner::after {
    right: 25px;
    top: 25px;
  }
}
@media (min-width: 980px) {
  .p-approach__inner::after {
    right: 150px;
  }
}
.p-approach__cards {
  margin-top: 24px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 82%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .p-approach__cards {
    margin-top: 34px;
    overflow: visible;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 0;
  }
}
.p-approach__card {
  scroll-snap-align: start;
  min-height: 260px;
  border: 1px solid #f0a54c;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  padding: 20px;
  opacity: 0;
  transform: translateY(calc(var(--offsetY, 0px) + 18px));
  will-change: opacity, transform;
}
@media (min-width: 640px) {
  .p-approach__card {
    min-height: 320px;
  }
}
@media (min-width: 980px) {
  .p-approach__card:nth-child(1) {
    --offsetY: -24px;
  }
  .p-approach__card:nth-child(2) {
    --offsetY: 0px;
  }
  .p-approach__card:nth-child(3) {
    --offsetY: 24px;
  }
}
.p-approach__card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F7931E;
  color: #fff;
  font-weight: 700;
}
.p-approach__card-title {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.4;
  color: #F7931E;
}
.p-approach__card-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.85;
  color: #5b6168;
}

.p-approach__inner.js-inview.is-inview .p-approach__title-line-start::after {
  transform: scaleX(1);
}

.p-approach__inner.js-inview.is-inview::after {
  transform: scaleY(1);
}

.p-approach__inner.js-inview.is-inview .p-approach__cards .p-approach__card {
  animation: approachCardIn 0.7s ease forwards;
}

.p-approach__inner.js-inview.is-inview .p-approach__cards .p-approach__card:nth-child(1) {
  animation-delay: 0.15s;
}

.p-approach__inner.js-inview.is-inview .p-approach__cards .p-approach__card:nth-child(2) {
  animation-delay: 0.35s;
}

.p-approach__inner.js-inview.is-inview .p-approach__cards .p-approach__card:nth-child(3) {
  animation-delay: 0.55s;
}

@keyframes approachCardIn {
  from {
    opacity: 0;
    transform: translateY(calc(var(--offsetY, 0px) + 18px));
  }
  to {
    opacity: 1;
    transform: translateY(var(--offsetY, 0px));
  }
}
.p-campany {
  padding: 56px 0 84px;
  background: linear-gradient(180deg, #ffd7a9 0%, #F7931E 100%);
}
.p-campany__title {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
}
.p-campany__title-sub {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin: 15px 0;
}
.p-campany__details {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
.p-campany__details-list {
  margin: 0;
}
.p-campany__details-row {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 12px 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.p-campany__details-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-campany__details-row:first-child {
  padding-top: 0;
}
.p-campany__details-term {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-campany__details-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
}
.p-campany__content {
  margin-top: 40px;
}
@media (min-width: 980px) {
  .p-campany__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
.p-campany__content-item {
  width: 100%;
  height: 280px;
  background-image: url(../images/oishida.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 640px) {
  .p-campany__content-item {
    width: 50%;
    margin: 0 auto;
  }
}
@media (min-width: 980px) {
  .p-campany__content-item {
    width: 380px;
    height: 360px;
  }
}
@media (min-width: 980px) {
  .p-campany__content-text {
    width: calc(100% - 380px - 20px);
  }
}

@media (min-width: 1024px) {
  .p-campany {
    padding: 80px 0 120px;
  }
  .p-campany__title {
    font-size: 64px;
  }
  .p-campany__details {
    margin-top: 56px;
    padding-top: 40px;
  }
  .p-campany__details-row {
    grid-template-columns: 10em 1fr;
    gap: 16px 32px;
    padding: 18px 0;
  }
  .p-campany__details-term, .p-campany__details-desc {
    font-size: 16px;
  }
}
.p-footer {
  background: #F7931E;
  color: #fff;
  padding: 28px 0 14px;
}
.p-footer__inner {
  position: relative;
}
.p-footer__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.p-footer__line {
  display: none;
}
.p-footer__brand img {
  width: clamp(138px, 24vw, 176px);
  height: auto;
}
.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.p-footer__nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
}
.p-footer__nav a + a::before {
  content: "|";
  margin: 0 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
}
.p-footer__middle {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 10px;
}
.p-footer__address {
  white-space: nowrap;
}
.p-footer__copy {
  margin-top: 6px;
  text-align: right;
  font-size: 10px;
}
@media (min-width: 980px) {
  .p-footer {
    padding: 30px 0 10px;
  }
  .p-footer__head {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    align-items: center;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .p-footer__brand {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .p-footer__line {
    display: block;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    align-self: center;
  }
  .p-footer__nav {
    justify-content: flex-end;
    justify-self: end;
    gap: 0;
    font-size: 11px;
    white-space: nowrap;
  }
  .p-footer__middle {
    margin-top: 12px;
  }
  .p-footer__copy {
    text-align: right;
  }
}

.u-hidden {
  display: none !important;
}