.l-footer {
    background-color: var(--footer-background-color);
    color: var(--footer-color);
    width: 100%;
    padding-bottom: 32px;
    padding-top: 113px;
  }
  .l-footer a {
    color: var(--footer-color);
  }
  .l-footer svg {
    fill: var(--footer-svg-fill);
  }
  .l-footer__title {
    width: 114px;
    height: 126px;
    margin: 0 auto 55px;
  }
  .l-footer__navigation {
    display: grid;
    grid-template-columns: 66.6666666667% 33.3333333333%;
    grid-template-rows: max-content max-content 1fr;
    align-items: start;
    position: relative;
    width: calc(100% - 320px);
    padding: 64px 0 68px;
    margin: 0 auto;
  }
  .l-footer__navigation::before {
    content: "";
    background-color: var(--footer-color);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .l-footer__primary {
    grid-column: 1/2;
    grid-row: 1/4;
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }
  .l-footer__primary__list {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 56px;
    font-weight: 600;
    line-height: 150%;
    width: 100%;
    height: max-content;
  }
  .l-footer__primary__item {
    height: 27px;
    overflow: hidden;
  }
  .l-footer__primary__item.is-open {
    height: auto;
  }
  .l-footer__primary__item.is-open .l-footer__primary__icon {
    transform: rotate(-90deg);
  }
  .l-footer__primary__label {
    color: var(--footer-color);
    display: flex;
    align-items: center;
    column-gap: 12px;
    width: max-content;
    cursor: pointer;
  }
  .l-footer__primary__icon {
    display: block;
    width: 9px;
    height: 16px;
    transform: rotate(90deg);
    transform-origin: center center;
  }
  .l-footer__primary__sub {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 18px;
    font-weight: 600;
    padding-top: 24px;
    padding-left: 20px;
  }
  .l-footer__secondary {
    grid-column: 2/3;
    grid-row: 3/4;
    display: grid;
    grid-template-columns: 100%;
    row-gap: 24px;
    font-weight: 600;
    width: 100%;
    padding-bottom: 38px;
    text-align: left;
  }
  .l-footer__social-media {
    grid-column: 2/3;
    grid-row: 2/3;
    display: flex;
    align-items: center;
    column-gap: 25px;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 52px;
  }
  .l-footer__social-media__item {
    display: block;
    width: 35px;
    height: 35px;
  }
  .l-footer__social-media__item--note {
    width: 32px;
    height: 32px;
  }
  .l-footer__social-media__item a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .l-footer__language {
    grid-column: 2/3;
    grid-row: 3/4;
    display: flex;
    align-items: center;
    column-gap: 16px;
    font-weight: 600;
    width: max-content;
  }
  .l-footer__language__item {
    display: flex;
    align-items: center;
    column-gap: 16px;
  }
  .l-footer__language__item:not(:last-child)::after {
    content: "";
    background-color: var(--footer-color);
    display: block;
    width: 1px;
    height: 15px;
  }
  .l-footer__copyright {
    font-weight: 500;
    text-align: right;
    width: calc(100% - 320px);
    margin: 0 auto;
  }
  @media (min-width: 767px) {
    .l-footer a:hover {
      color: var(--footer-color--hover);
    }
    .l-footer__primary__label:hover {
      color: var(--footer-color--hover);
    }
    .l-footer__primary__label:hover .l-footer__primary__icon {
      fill: var(--footer-svg-fill--hover);
    }
  }
  @media (max-width: 768px) {
    .l-footer {
      padding-bottom: 40px;
      padding-top: 72px;
    }
    .l-footer__breadcrumb {
      font-weight: 400;
      padding: 40px 20px 72px;
    }
    .l-footer__breadcrumb__item:not(:last-child)::after {
      width: 5px;
      height: 9px;
    }
    .l-footer__breadcrumb__icon {
      width: 5px;
      height: 9px;
    }
    .l-footer__title {
      width: 98px;
      height: 108px;
      margin: 0 auto 72px;
    }
    .l-footer__navigation {
      grid-template-columns: 100%;
      grid-template-rows: none;
      width: calc(100% - 40px);
      padding: 0;
    }
    .l-footer__navigation::before {
      display: none;
    }
    .l-footer__primary {
      grid-column: 1/2;
      grid-row: 3/4;
      grid-template-columns: 100%;
    }
    .l-footer__primary__list {
      row-gap: 0;
      font-weight: 700;
      height: auto;
    }
    .l-footer__primary__item {
      position: relative;
      height: 72px;
      overflow: hidden;
    }
    .l-footer__primary__item::after {
      content: "";
      background-color: var(--footer-color);
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
    }
    .l-footer__primary__label {
      justify-content: space-between;
      column-gap: 0;
      width: 100%;
      height: 72px;
    }
    .l-footer__primary__icon {
      width: 7px;
      height: 12px;
      margin-right: 3px;
    }
    .l-footer__primary__sub {
      row-gap: 25px;
      font-weight: 700;
      padding-top: 0;
      padding-bottom: 25px;
      padding-left: 24px;
    }
    .l-footer__primary__sub .is-empty {
      position: relative;
    }
    .l-footer__primary__sub .is-empty::after {
      content: "";
      background-color: var(--footer-color);
      display: block;
      position: absolute;
      top: 50%;
      left: -24px;
      width: calc(100% + 24px);
      height: 1px;
    }
    .l-footer__secondary {
      grid-column: 1/2;
      grid-row: 4/5;
      grid-template-columns: repeat(2, calc((100% - 20px) / 2));
      column-gap: 20px;
      row-gap: 32px;
      font-weight: 400;
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .l-footer__social-media {
      grid-column: 1/2;
      grid-row: 2/3;
      column-gap: 25px;
      width: max-content;
      padding-top: 0;
      padding-bottom: 35px;
      margin: 0 auto;
    }
    .l-footer__social-media__item {
      width: 30px;
      height: 30px;
    }
    .l-footer__social-media__item--note {
      width: 27px;
      height: 27px;
    }
    .l-footer__language {
      grid-column: 1/2;
      grid-row: 4/5;
      column-gap: 20px;
      font-weight: 400;
      padding-bottom: 48px;
      margin: 0 auto;
    }
    .l-footer__language__item {
      column-gap: 20px;
    }
    .l-footer__copyright {
      font-weight: 600;
      text-align: center;
      width: 100%;
    }
  }
  .l-footer .bnr-line {
    grid-column: 2/3;
    grid-row: 1/2;
    display: grid;
    width: 295px;
    padding-bottom: 36px;
  }
  .l-footer .bnr-line img {
    width: 295px;
    height: 75px;
  }
  .l-footer .bnr-line .bnr-image {
    position: relative;
    display: block;
    height: 75px;
  }
  .l-footer .bnr-line .bnr-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    opacity: 0;
    /* transition: opacity 0.3s ease; */
    pointer-events: none;
    border-radius: 5px;
  }
  .l-footer .bnr-line a:hover .bnr-image::after {
    opacity: 0.15;
  }
  @media (max-width: 768px) {
    .l-footer .bnr-line {
      grid-column: 1/2;
      grid-row: 1/2;
      width: max-content;
      padding-top: 0;
      padding-bottom: 48px;
      margin: 0 auto;
    }
  }