/* ====================
  2026.08.19 Add
==================== */
/* ---------------------------------------------------------
  style.cssの上書き
---------------------------------------------------------- */
@media screen and (max-width: 767px) {
  #document {
    padding-bottom: 0;
  }

  .ly_footer__content {
    padding-bottom: 20.33vw;
  }

  .ly_header__inner__content .ekinet_bnr__inner {
    padding-inline: 0.5rem 0.6rem;
  }
}

/* ---------------------------------------------------------
  fixed-bnrs
---------------------------------------------------------- */
.fixed-bnrs {
  --bg-color: #065d67;
  --line-color: #c7e7ea;
  font-family: 游明朝, Yu Mincho, YuMincho, Hiragino Mincho ProN, HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  position: fixed;
  right: 0;
  z-index: 10;

  @media screen and (max-width: 767px) {
    --padding-size: 10px;
    width: 100%;
    padding: var(--padding-size) var(--padding-size) var(--padding-size) 20vw;
    bottom: 0;
  }

  @media screen and (min-width: 768px) {
    bottom: 30px;
    &.en {
      bottom: 25px;
    }
  }
}

.fixed-bnrs__inner {
  position: relative;
  display: grid;
  align-items: center;

  @media screen and (max-width: 767px) {
      grid-template-columns: repeat(2, 1fr);
      border: 2px solid var(--line-color);
      background-color: var(--bg-color);
      border-radius: 6px;
      box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
      &::after {
        position: absolute;
        content: '';
        top: var(--padding-size);
        left: 50%;
        width: 2px;
        height: calc(100% - (var(--padding-size) * 2) );
        background-color: var(--line-color);
      }
    }

    @media screen and (min-width: 768px) {
      grid-template-rows: 170px 170px;
      gap: 25px;
    }
}

.en .fixed-bnrs__inner {
  @media screen and (min-width: 768px) {
    grid-template-rows: 182px 182px;
  }
}

.fixed-bnrs__item {
  display: grid;
  align-items: center;

  @media screen and (max-width: 767px) {
    grid-template-columns: 40px 1fr 11px;
    gap: 8px;
    padding: 5px 3.73vw;

  }

  @media screen and (max-width: 360px) {
    gap: 2.13vw;
    padding-inline: 3.20vw;
  }

  @media screen and (min-width: 768px) {
    align-self: stretch;
    align-content: center;
    grid-template-columns: 61px;
    grid-template-rows: 61px 1fr 12px;
    padding: 10px 8px;
    border-top: 2px solid var(--line-color);
    border-bottom: 2px solid var(--line-color);
    border-left: 2px solid var(--line-color);
    background-color: var(--bg-color);
  }

}

.fixed-bnrs__item__img {
  display: flex;
  place-content: center;

  @media screen and (min-width: 768px) {
    img {
      width: 61px;
      height: 61px;
    }
  }
}

.fixed-bnrs__item__ico {
  display: flex;
  place-content: center;

  @media screen and (min-width: 768px) {
    img {
      width: 12px;
      height: 12px;
    }
  }
}

.fixed-bnrs__item__txt {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.16;
  color: #ffffff;

  @media screen and (max-width: 767px) and (min-width: 540px) {
    br {
      display: none;
    }
  }

  @media screen and (max-width: 360px) {
    font-size: 1.1rem;
  }

  @media screen and (min-width: 768px) {
    font-size: 1.4rem;
    line-height: 1.43;
    text-align: center;
  }
}

.en .fixed-bnrs__item__txt {
  @media screen and (min-width: 768px) {
    line-height: 1.14;
  }
}
