/* BASIC css start */
#footer {
    margin-top: 80px;
    width: 100%;
    background: #fff;
    position: relative;
}
.fixedFooter {
  background: var(--maincolor);
  position: fixed;
  bottom: 63px;
  left: 0;
  width: 100%;
  z-index: 3;
/*  transition: all 0.2s;*/
}
.fixedFooter,
.bottom-nav {
  /*transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;*/
}
.fixedFooter.show,
.bottom-nav.show {
  opacity: 1;
  /*pointer-events: auto;*/
}
.fixedFooter.stop-fixed {
  position: relative;
    opacity: 1;
    bottom:0;
}
.footer-bar {
    padding: 12.5px 16px;
    display: flex;
    justify-content: space-between;
}

.footer-bar .txt {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.footer-bar .sns {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-bar .sns a {
    width: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.footer-bar .sns a img {
    width: 100%;
}
.footerCompany {
    display: flex;
    justify-content: space-between;
    padding: 28px 16px 0;
    flex-direction: column;
}

.cs-info {
    flex: 1;
    display: flex;
    gap: 32px;
    flex-direction: column;
    padding-bottom: 28px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 24px;
} 

.cs-info .cs h1 {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cs-info .cs .tel {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cs-info .cs .time, .cs-info .cs .holiday, .cs-info .cs .bank-name, .cs-info .cs .account-owner {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.cs-info .cs .account-number {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-info {
    flex:1;
    font-size: 10px;
    line-height: 17px;
}
.company-info .info-list {
}
.company-info .info-list li {
  display: inline-block;
  margin-right: 4px;
  position: relative;
}
.company-info .info-list li:not(:last-child)::after {
  content: "|";
  margin-left: 7px;
  color: #aaa;
}

.company-info .info-list li strong {
    font-weight: 400;
}

p.copyright {
    color: #858585;
    font-size: 10px;
    margin-top: 8px;
}

.company-info .info-list li a {
    border-bottom: 1px solid #000;
    font-weight: bold;
    font-size: 9px;
    margin-left: 3px;
    position: relative;
    top: -1px;
}
.footer-links-area {
    display: flex;
    justify-content: space-between;
    padding: 32px 16px 21px;
    flex-direction: column-reverse;
}

.footer-links-area .footer-menu {
    display: flex;
    gap: 9px;
    align-items: center;
    padding-top: 21px;
    border-top: 1px solid #ddd;
}

.footer-links-area .footer-menu li a {
    color: #858585;
    font-size: 11px;
    font-weight: 500;
}

.footer-links-area .footer-sns {
    gap: 18px;
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}
.footer-links-area .footer-sns a {
    width: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.footer-links-area .footer-sns a img {
    width: 100%;
}
#float {
    position: fixed;
    bottom: 120px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 22;
}
/* BASIC css end */

