/* フッターの一番大枠 */
.footer-by {
    padding: 90px 0 8px;
    color: var(--white_color-by);
    background-color: var(--sub_color-by);
}

/* フッターの横幅 */
.footer-m-by {
    width: 80%;
    margin: auto;
}
@media (max-width: 768px){
  .footer-m-by {
    width: 90%;
  }
}

/* フッター下部エリア */
.footer_info-by {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px){
  .footer_info-by {
    display: block;
    }
}

/* ロゴエリア */
.footer_logo-by {
    display: inline-block;
}
.footer_logo-by a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.footer_logo-by img {
    height: 60px;
}
.footer_logo-by div {
    font-size: var(--fs-middle-by);
    font-weight: bold;
}

/*  SNSアイコン*/
.footer_sns-by {
    display: flex;
    gap: 24px;
}
.footer_sns-by a i {
    font-size: 26px;
    vertical-align: middle;
}

/* テキスト */
.footer_text-by {
    margin-top: 20px;
    font-size: var(--fs-small-by);
    line-height: 1.8;
}

/* TEL */
.footer_tel-by {
    margin-top: 20px;
    font-size: var(--fs-middle-by);
    font-weight: bold;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* サイトマップの横並び */
.footer_info-r-by{
    display: flex;
    gap: 64px;
}
@media (max-width: 768px){
  .footer_info-r-by {
    margin-top: 40px;
    }
}
/* サイトマップリンク */
.footer_site_map-by a {
    font-weight: bold;
    display: block;
}
.footer_site_map-by a:not(:last-child) {
    margin-bottom: 16px;
}

/* コピーライト */
.copyright-by {
    text-align: center;
    font-size: 12px;
    color: var(--white_color-by);
    margin-top: 90px;
}