footer {
    color: var(--footer_color);
    background: var(--footer_bg);
    padding: 2rem 2rem 10rem;
  }
  
  .footer__menu {
    padding: 2rem 0;
    border-bottom: 1px solid var(--footer_line_color);
  }
  
  .footer__menu a {
    position: relative;
    padding: 1rem 1.5rem;
    color: #f4f6fd;
    font-family: var(--font_family_bold);
    transition: .2s;
  }
  
  .footer__menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: .2rem;
    height: 1rem;
    background: var(--footer_line_color)
  }
  
  .footer__menu a:first-child {
    padding-left: 0;
  }
  
  .footer__menu a:first-child::before {
    display: none
  }
  
  .footer__menu a:hover {
    color: var(--color_pmy)
  }
  
  .footer_img img {
    max-width: 100%;
  }

  .footer_img {
    width: 430px;
    position: absolute;
    bottom: 0;
    right: 10%;
  }
  
  
  .footer_compay {
    display: flex;
    /* align-items: center; */
    gap: 8rem;
    margin-top: 2.5rem;
  }
  
  .footer_compay img {
    max-height: 4rem;
  }
  
  .footer__logo {
    filter: grayscale(1);
    opacity: .5
  }
  
  
  
  .site__info {
    width: 100%;
    font-size: 1.5rem;
    font-family: var(--font_family_bold);
  }
  
  .site__info__inline {
    flex-direction: column;
    align-items: flex-start;
    /* max-width: 50rem; */
    width: 100%;
    word-break: keep-all;
    line-height: 1.6
  }
  
  .site__info__inline p {
    position: relative;
    color: var(--footer_item_title);
  }
  
  
  .site__info__inline p:first-child {
    padding-left: 0;
  }
  
  
  .site__info__inline p > span {
    color: var(--footer_color);
    font-family: var(--font_family_bold);
    padding-right: .5rem;
  }
  
  .site__info__smy {
    font-size: 1.3rem;
    padding-top: 2rem;
  }
  
  .copyright {
    padding-top: 5rem;
    font-size: 1.3rem;
  }

  .footer__inline a {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    color: #fff;
    background: var(--color_pmy);
    border-radius: 2em;
    transition: .3s;
    width: fit-content;
    position: absolute;
    bottom: 0;
    right: -10%;
    }

footer img {
    width: 100%;
}

footer * {
    line-height: 1.4em;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.f_logo {
    width: 15.5rem;
}

.f_txt {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 420px;
    word-break: keep-all;
}

.f_tel {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 5px;
}

.f_info {
    margin-top: 4rem;
    max-width: 550px;
    word-break: keep-all;
    display: flex;
    flex-wrap: wrap;
}

.f_info span {
    margin-right: 1.5rem;
}

.f_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.f_company {
    margin-top: auto;
    font-size: 1.8rem;
    color: #8A8A8A;
    font-weight: 700;
}

.f_notice {
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 265px;
    word-break: keep-all;
    text-align: right;
    margin: 12px 0;
    color: #8A8A8A;
}

.f_copy {
    font-size: 1.3rem;
}

section.contact {
    background-color: #f7f7f7;
    padding: 60px 0;
}

section.contact .inner {
    max-width: 1180px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cont_tit {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: uppercase;
}
.cont_title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4em;
    margin: 15px 0;
}
.cont_title span {font-weight: 700;}

.cont_right {
    width: 24rem;
}

.cont_right img {
    width: 100%;
}
  
  
  @media all and (max-width: 770px) {
    .footer__menu {
      padding: 1rem 0;
    }
  
    .site__info {
      margin-top: 2rem;
      font-size: 1.4rem;
    }
  
    .footer_compay {
      display: block;
    }
  
    .site__info__inline  > div {
      flex-wrap: wrap;
      gap: 0 2rem;
    }
  }
  
  
  @media all and (max-width: 480px) {
    footer {
      padding: 2rem 1.5rem 5rem;
    }
  }
  
  
  
  
  @media all and (max-width: 380px) {
    .footer__menu a {
      position: relative;
      padding: 1rem 1rem;
      font-size: 1.3rem;
      color: var(--footer_color);
      font-family: var(--font_family_bold);
      transition: .2s;
    }
  
    .site__info__smy {
      font-size: 1.2rem;
    }
  
    .copyright {
      font-size: 1.2rem;
    }
  }
  