/*====================================================
ブレイクポイント
  PC：1440px 以上
  タブレット：988px = 940px + (padding 22px * 2) 以上
  SP: 488px = 440px +( padding 22px * 2) 以上
====================================================*/

:root {
  --color-base: #333;
  --color-primary: #006bb6;

  --color-white: #ffffff;
  --color-black: #000000;

  --color-blue: #006BB6;
  --color-aqua-blue: #4AB6DF;
  --color-light-blue: #9BD9E2;

  --color-light-grey: #F7F7F7;
  --color-blue-grey: #D9E7F0;

  --color-red: #FF3D46;

  --font-title-pc-40: 40px;
  --font-title-pc-35: 35px;
  --font-title-pc-32: 32px;
  --font-title-sp: 24px;
}

/* common
 
====================================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--color-base);
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  border: none;
  backface-visibility: hidden;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

iframe {
  border: 0;
}

.wrapper {
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.3);
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  overflow: clip;
}

.container {
  max-width: 780px;
  margin: auto;
  padding: 0 22px;
}

@media (min-width: 988px) {
  .container {
    max-width: 940px;
    padding: 0;
  }
}


.c-app-link {
  opacity: 1;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.c-app-link:hover {
  opacity: 0.6;
}

.c-break-keep {
  word-break: keep-all;
}

.c-break-sp {
  display: inline-block;
}

@media (min-width: 780px) {
  .c-break-sp {
    display: none;
  }
}



/* header
 
====================================================*/

.header-overlay-layer {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: #000;
  width: 100%;
  height: 100%;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.header-overlay-layer.active {
  visibility:visible;
  opacity: 0.3;
  z-index: 20;
}

.header {
  position: sticky;
  top: 0;
  padding: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 0 2px rgba(0,0,0,.15); 
}

.header__inner {
  position: relative;
  max-width: 100%;
  column-gap: 20px;
  margin: auto;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
}

/* --- header-logo --- */

.header-logo {
  width: 156px;
  flex: none;
}

.header-logo__link {
  display: block;
}

/* --- header-nav --- */

.header-nav {
  overflow-y: scroll;
  display: grid;
  width: 300px;
  grid-row: 1;

  position: fixed;
  top: 0;
  right: -300px;
  z-index: 30;

  height: 100%;

  background-color: var(--color-white);

  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav.active {
  display: grid;
  right: 0;
}

.header-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: 20px;
  margin-top: 48px;
  padding: 0 0 30px;
  border-top: 1px solid #f2f2f2;
}

.header-nav__list-item {
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
}

.header-nav__list-item-link {
  padding: 15px 16px;
  min-height: 0;
  display: inline-block;
  width: 100%;
  background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 2px 
      no-repeat;
  color: var(--color-base);
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: background;
  white-space: nowrap;
}
.header-nav__list-item-link:hover {
  --d: 100%;
  color: var(--color-primary);
}

/* --- header-btn --- */

.header-btn {
  z-index: 40;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
}

.header-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-black);
  width: 45%;
}

.header-btn span:nth-of-type(1) {
  top: 15px;
}

.header-btn span:nth-of-type(2) {
  top: 23px;
}

.header-btn span:nth-of-type(3) {
  top: 31px;
}

.header-btn.active span {
  background: var(--color-black);
}

.header-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.header-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.header-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* --- header-app--- */

.header-app {
  display: none;
}

.header-app__item-google,
.header-app__item-apple {
  display: block;
}

@media (min-width: 1440px) {
  .header-overlay-layer {
    visibility: hidden !important;
  }

  .header {
    position: sticky;
    padding: 0 83px;
  }

  .header__inner {
    max-width: 1270px;
    height: 100px;
    justify-content: space-between;
  }

  .header-logo {
    width: 250px;
  }

  .header-nav {
    overflow: visible;
    display: block;
    width: auto;
    height: auto;
    position: static;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 0;
    background-color: var(--color-white);
    color: var(--color-base);
  }

  .header-nav__list {
    border-top: 0;
    display: flex;
    width: auto;
    margin-top: 0;
    padding: 0;
    flex-direction: row;
  }

  .header-nav__list-item {
    width: auto;
    border: 0;
    padding: 0;    
  }

  .header-nav__list-item .header-nav__list-item-link {
    padding: 0;
    min-height: 27px;
    width: auto;
  }

  .header-app {
    display: flex;
    grid-row: 2;
    column-gap: 13px;

    img {
      max-width: auto;
    }
  }

  .header-btn {
    display: none;
  }
}

/* kv
 
====================================================*/

.kv {
  position: relative;
}

.kv-picture img {
  width: 100%;
}

.kv-app {
  padding: 12px;
  background-color: var(--color-aqua-blue);
}

.kv-app__list {
  display: flex;
  justify-content: center;
  column-gap: 12px;
}

.kv-app__list-item {
  height: 50px;
}

.kv-app__list-item--link {
  display: block;
  height: 100%;
}

.kv-app__list-item--link img {
  height: 100%;
  width: auto;
}

.kv-app__qr {
  display: none;
}

.kv-about {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  margin: 22px;
}

@media (min-width: 988px) {
  /*　キービジュアル内要素は 画像に合わせてサイズ変更するため % を使用 */

  .kv-app {
    position: absolute;
    bottom: 5%;
    right: 0;
    display: flex;
    width: 23%;
    column-gap: 8.7%;
    background: none;
  }

  .kv-app__list {
    flex-wrap: wrap;
    width: 49%;
    row-gap: 23%;
  }

  .kv-app__list-item {
    height: auto;
    width: 100%;
  }

  .kv-app__list-item--link img {
    height: auto;
    width: 100%;
  }

  .kv-app__qr {
    display: block;
    width: 42%;
  }

  .kv-app__qr img {
    width: 100%;
  }

  .kv-about {
    position: absolute;
    bottom: 5%;
    left: 7%;
    width: 35.5%;
  }

  .kv-about__item img {
    width: auto;
    height: auto;
  }
}

/* main
 
====================================================*/

.main {
  position: relative;
}

/* about
 
====================================================*/

.about {
  position: relative;
  padding: 45px 0;
  text-align: center;
  overflow: hidden;
}

.about::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: -50%;
  content: "";
  display: block;
  background-color: var(--color-light-grey);
  width: 100%;
  height: 100%;
  transform: translateX(50%);
}

.about__wrap {
  position: relative;
  z-index: 2;
}

.about-title {
  margin-bottom: 20px;
  font-size: var(--font-title-sp);
}

.about-body__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.5em;
  line-height: 26px;
  padding-bottom: 30px;
}

@media (min-width: 988px) {
  .about {
    padding: 90px 0 90px;
    text-align: left;
  }

  .about::before {
    left: 330px;
    transform: translateX(-50%);
  }

  .about-title {
    margin-bottom: 0;
    font-size: var(--font-title-pc-32);
  }

  .about-body {
    display: flex;
    align-self: center;
  }

  .about-body__txt {
    padding-bottom: 1em;
    align-items: start;
  }

  .about-body__txt,
  .about-body__img {
    flex: 1;
  }
}

/* movie
 
====================================================*/

.movie {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.movie::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: -50%;
  content: "";
  display: block;
  background-color: var(--color-light-blue);
  width: 100%;
  height: 100%;
  transform: translateX(50%);
}

.movie__wrap {
  position: relative;
  z-index: 2;
  max-width: 684px;
  margin: auto;
  padding: 0 0 0;
}

.movie-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: var(--font-title-sp);
}

.movie-body {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie-body figcaption {
  text-align: right;
}

.movie-body iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 988px) {
  .movie {
    padding: 86px 0 91px;
  }
  .movie__wrap {
    padding: 38px 0 0;
  }

  .movie::before {
    top: 86px;
    left: auto;
    right: 471px;
    transform: translateX(50%);
    height: 428px;
    transform: translateX(50%);
  }

  .movie-title {
    margin-bottom: 43px;
    font-size: var(--font-title-pc-35);
  }
}

/* point
 
====================================================*/
.point-wrap {
  flex-direction: row;
  padding: 30px 0;
}

.point-header {
  padding: 40px 0;
  text-align: center;
  background-color: var(--color-blue);
  background-image: url(./images/point-header.png);
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}

.point-header__title {
  margin-top: 16px;
  font-size: 1.5em;
  line-height: 1;
  color: var(--color-white);
}

.point-section:nth-child(odd) {
  background-color: var(--color-blue-grey);
}

.point-section:nth-child(odd) .point-wrap {
  flex-direction: column;
}

.point-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.point-wrap__body {
  width: 100%;
  text-align: center;
}

.point-wrap__body--title {
  margin: 28px 0 25px;
  color: var(--color-primary);
  font-size: var(--font-title-sp);
}

.point-wrap__body--text {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 1.2em;
}

.point-wrap__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

@media (min-width: 988px) {
  .point-wrap {
    flex-direction: row;
    padding: 63px 0 75px;
  }

  .point-wrap__body {
    width: 50%;
  }

  .point-header {
    padding: 65px 0 44px;
  }

  .point-header__title {
    margin-top: 32px;
    font-size: 55px;
  }

  .point-wrap__body--title {
    font-size: var(--font-title-pc-32);
  }

  .point-wrap__body--text {
    max-width: 355px;
    margin: auto;
  }

  .point-wrap__image {
    width: 50%;
    margin-top: 0;
  }

  .point-section:nth-child(odd) .point-wrap {
    flex-direction: row-reverse;
  }
}

/* steps
 
====================================================*/
.steps {
  position: relative;
}

.steps__wrap {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.steps-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: var(--font-title-sp);
}

.steps-list {
  display: grid;
  row-gap: 40px;
  column-gap: 20px;
  grid-template-columns: repeat(auto-fit, 212px);
  justify-content: center;
  margin: auto;
}

.steps-list__item {
  width: 100%;
  text-align: center;
}

.steps-list__item-heading {
  width: 160px;
  height: 37px;
  margin: auto;
  line-height: 37px;
  letter-spacing: 1px;
  font-weight: 700;
  flex-shrink: 0;
  border-radius: 23px;
  color: var(--color-white);
  background: var(--color-aqua-blue);
  font-size: 24px;
  text-align: center;
}

.steps-list__item-img {
  margin-top: 24px;
}

.steps-list__item-title {
  display: flex;
  margin: 30px auto 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.steps-list__item-title span {
  color: var(--color-aqua-blue);
}

.steps-list__item-text {
  margin: 15px auto 0;
  text-align: left;
}

@media (min-width: 488px) {
  .steps-list__item-title {
    min-height: 70px;
  }
}

@media (min-width: 988px) {
  .steps::before {
    top: 324px;
    left: 490px;
    transform: translateX(-50%);
    z-index: 1;
    position: absolute;
    content: "";
    display: block;
    background-color: var(--color-light-blue);
    width: 100%;
    height: 375px;
  }

  .steps__wrap {
    padding: 80px 0 100px;
  }

  .steps-title {
    font-size: var(--font-title-pc-40);
  }

  .steps-list {
    flex-direction: row;
    margin-top: 63px;
    column-gap: 30px;
  }

  .steps-list__item {
    width: 212px;
    margin: 0;
  }

  .steps-list__item-title {
    margin-top: 43px;
  }
}

/* download
 
====================================================*/

.download {
  background-color: var(--color-primary);
}

.download--blue {
  background-color: var(--color-aqua-blue);
}

.download__wrap {
  position: relative;
  max-width: 820px;
  padding: 30px 0 0;
  margin: auto;
  text-align: center;
}

.download-header {
  text-align: center;
}

.download-header--title {
  font-size: var(--font-title-sp);
}

.download-header--title span {
  display: inline-block;
  color: var(--color-white);
}

.download-header--text {
  margin-top: 15px;
  font-size: 16px;
  color: var(--color-white);
}

.download-app {
  margin-top: 30px;
}

.download-app__list {
  display: flex;
  justify-content: center;
  column-gap: 12px;
}

.download-app__list-item {
  height: 50px;
}

.download-app__list-item--link {
  display: block;
  height: 100%;
}

.download-app__list-item--link img {
  height: 100%;
  width: auto;
}

.download-app__qr {
  display: none;
}

.download-caption {
  margin-top: 30px;
  font-size: 12px;
  color: var(--color-white);
}

.download-image {
  margin-top: 30px;
}

@media (min-width: 988px) {
  .download__wrap {
    text-align: left;
    padding: 42px 0 25px;
  }

  .download-header--title {
    font-size: var(--font-title-pc-40);
  }

  .download-header--text {
    font-size: 24px;
  }

  .download-app {
    display: flex;
    width: 450px;
    margin-left: 65px;
    margin-top: 43px;
    column-gap: 43px;
    background: none;
  }

  .download-app__list {
    flex-wrap: wrap;
    width: 216px;
    row-gap: 21px;
  }

  .download-app__list-item {
    height: auto;
    width: 100%;
  }

  .download-app__list-item--link img {
    height: auto;
    width: 100%;
  }

  .download-app__qr {
    display: block;
    height: 163px;
  }

  .download-caption {
    width: 450px;
    margin-left: 65px;
    margin-top: 79px;
  }

  .download-image {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

/* price
 
====================================================*/
.price {
  padding: 30px 0;
}

.price-header__title {
  text-align: center;
  font-size: var(--font-title-sp);
}

.price-header__text {
  margin-top: 33px;
  text-align: center;
  font-size: 16x;
}

.price-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  margin-top: 25px;
}

.price-txt__item {
  padding: 20px 0;
  border-radius: 25px;
  background-color: var(--color-light-blue);
  font-size: 20px;
  text-align: center;
}

.price-txt__item span {
  color: var(--color-red);
}

.price-credits {
  max-width: 695px;
  display: flex;
  justify-content: center;
  max-width: 255px;
  margin: 25px auto;
  border-radius: 8px;
  border: 5px solid #EAEAEA;
  text-align: center;
}

.price-credits img {
  height: auto;
  width: auto;
}

.price-type {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.price-type__item {
  max-width: 453px;
  margin: auto;
}

.price-type__item--title {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 24px;
  text-align: center;
  padding: 15px 0px;
}

.price-type__item--img img {
  width: 100%;
  height: auto;
}

.price-type__item--text {
  text-align: center;
  padding: 10px 0px;
}

.price__caption {
  text-align: center;
}

.price__caption-large {
  margin-top: 48px;
  font-size: 24px;
}

.price__caption-small {
  margin-top: 18px;
  font-size: 12px;
}


@media (min-width: 780px) {
  .price-header__text {
    margin-top: 20px;
    font-size: 14px;
  }

  .price-txt {
    flex-direction: row;
    column-gap: 50px;
  }
  
  .price-txt__item {
    min-width: 300px;
    padding: 20px 0;
    border-radius: 25px;
    background-color: var(--color-light-blue);
    font-size: 20px;
    text-align: center;
  }

  .price-credits {
    max-width: 780px;
  }
  
  .price-type {
    flex-direction: row;
    column-gap: 30px;
  }
}

@media (min-width: 988px) {
  .price {
    padding: 87px 0 46px;
  }

  .price-header__title {
    font-size: var(--font-title-pc-40);
  }

  .price-header__text {
    font-size: 28px;
    margin-top: 40px;
  }

  .price-txt {
    margin-top: 50px;
    flex-direction: row;
    column-gap: 113px;
  }

  .price-txt__item {
    min-width: 369px;
    padding: 27px 0;
    font-size: 28px;
  }

  .price-credits {
    min-height: 126px;
    margin: 50px auto 56px;
  }

  .price-type {
    flex-direction: row;
    column-gap: 30px;
  }

  .price-type__item {
    max-width: 453px;
  }

  .price-type__item--title {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 36px;
    text-align: center;
    padding: 25px 0px;
  }

  .price-type__item--text {
    text-align: center;
    padding: 10px 0px;
  }
}

/* station
 
====================================================*/
.station {
  padding: 30px 0 50px;
  background-color: var(--color-blue-grey);
}

.station-title {
  position: sticky;
  margin-bottom: 30px;
  text-align: center;
  font-size: var(--font-title-sp);
}

.station-list {
  display: grid;
  column-gap: 20px;
  row-gap: 30px;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  margin: auto;
}

.station-list__item--title {
  position: relative;
  padding: 12px 20px;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-primary);
}

.station-list__item--title::before {
  display: block;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 9px;
  width: 5px;
  content: '';
  background-color: var(--color-white);
}

.station-list__item--text {
  min-height: 58px;
  margin-top: 7px;
}

.station-list__item--map {
  width: 300px;
  height: 211px;
}

@media (min-width: 988px) {
  .station {
    padding: 80px 0 93px;
  }

  .station-title {
    margin-bottom: 66px;
    font-size: var(--font-title-pc-40);
  }

  .station-list {
    row-gap: 55px;
  }
}


/* faq
 
====================================================*/
.faq {
  padding: 30px 0;
  background-color: var(--color-light-grey);
}

.faq-title {
  font-size: var(--font-title-sp);
  text-align: center;
}

.faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}

.faq-list__item {
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  background-color: var(--color-white);
}

.faq-list__item--title {
  position: relative;
  display: flex;
  align-items: center;
  height: 90px;
  padding: 0 80px 0 29px;
  background: #CEEFF4;
  list-style: none;
}

.faq-list__item--title::-webkit-details-marker {
  display: none;
}

.faq-list__item--title::before {
  display: block;
  margin-right: 21px;
  content: 'Q';
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-list__item--title::after {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(./images/icon_add.svg);
  background-size: contain;
}

.faq-list__item.isOpen .faq-list__item--title::after {
  background-image: url(./images/icon_remove.svg);
}

.faq-list-title::-webkit-details-marker {
  display: none;
}

.faq-list__item--body {
  max-height: 0;
  display: flex;
  align-items: top;
  padding: 0 30px;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-list__item.isOpen .faq-list__item--body {
  max-height: 100vh;
  padding: 26px 30px;
}

.faq-list__item--body::before {
  display: block;
  margin-right: 21px;
  content: 'A';
  font-size: 32px;
  font-weight: 700;
  color: #CEEFF4;
}

@media (min-width: 988px) {
  .faq {
    padding: 72px 0 106px;
  }

  .faq-title {
    font-size: var(--font-title-pc-35);
  }

  .faq-list {
    margin-top: 73px;
  }
}

/* call
 
====================================================*/

.call {
  position: relative;
  padding: 30px 0;
  background-image: url(./images/call-bg.png);
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.call::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  background-color: var(--color-primary);
  opacity: 0.8;
}

.call__wrap {
  position: relative;
  text-align: center;
  z-index: 2;
}

.call-title {
  font-size: 20px;
  color: var(--color-white);
}

.call-text {
  margin-top: 20px;
  color: var(--color-white);
  line-height: 1.5;
}

.call-num {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 23px;
}

.call-num--image {
  display: none;
}

.call-num--link {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
}

@media (min-width: 988px) {
  .call {
    padding: 62px 0 36px;
  }

  .call-title {
    font-size: 36px;
  }

  .call-text {
    margin-top: 20px;
  }

  .call-num {
    margin-top: 22px;
  }

  .call-num--image {
    display: block;
  }

  .call-num--link {
    font-size: 96px;
  }
}


/* footer
 
====================================================*/

.footer {
  padding: 29px 0;
  background-color: var(--color-blue-grey);
}

.footer-app__list {
  display: flex;
  justify-content: center;
  margin-top: 27px;
  column-gap: 20px;
}

.footer-nav {
  max-width: 266px;
  margin: auto;
  padding: 10px 0 37px;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 12px;
}

.footer-nav__list--item {
  width: 50%;
  font-size: 14px;
}

.footer-nav__list--item-link {
  min-height: 1.7em;
  display: inline-block;
  background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 2px 
      no-repeat;
  color: var(--color-base);
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: background;
}
.footer-nav__list--item-link:hover {
  --d: 100%;
  color: var(--color-primary);
}

.footer-copyright {
  margin-top: 55px;
  font-size: 12px;
  letter-spacing: .2px;
  text-align: center;
}

.footer-copyright a {
  color: var(--color-base);
}

.footer-copyright a:hover {
  text-decoration: underline;
}

.footer-info__logo {
  text-align: center;
}

.footer-info__logo a {
  display: inline-block;
}


@media (min-width: 988px) {
  .footer {
    padding: 40px 0;
  }

  .footer__wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .footer__wrap--column {
    width: 50%;
  }

  .footer-app__list {
    justify-content: left;
  }

  .footer-nav {
    max-width: 100%;
    padding: 10px 26px;
  }

  .footer-nav__list {
    column-gap: 66px;
    row-gap: 12px;
  }

  .footer-nav__list--item {
    width: 172px;
    font-size: 16px;
  }

  .footer-info__logo {
    text-align: left;
  }
}