@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------
フッター
---------------------------------------------*/

/*フッター*/
.l-footer {
  position: relative;
  width: 100%;
  background: #191919;
}

/*ページトップ(フッターで使用)*/
.pagetop {
  position: relative;
  width: 180px;
  height: 60px;
  line-height: 1.4;
  /*line-height: 70px;*/
  background: #f0b200;
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
  text-align: center;
  color: #ffffff;
}

.pagetop::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  transition: .2s;
}

.pagetop:hover::before {
  top: 10px;
}

.pagetop__link {
  display: block;
  height: inherit;
  transition: .2s;
}

.pagetop__link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pagetop__link::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  transition: .1s;
  z-index: -1;
}

.pagetop__link:active::before {
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

/*コピーライト&ソーシャルリンク(フッターで使用)*/
.copySns {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
  margin: 40px auto 0 auto;
  border-top: 1px solid #333333;
}

.copySns.copySns-noBorder {
  margin-top: 0;
  border: none;
}

.copySns::after {
  content: "";
  display: block;
  clear: both;
}

/*copyright*/
.copySns__copy {
  width: calc(100% - 200px);
  line-height: 1.6;
  /*line-height: 30px;*/
  color: #d8d8d8;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.copySns__copyInfo {
  display: block;
  margin-top: -5px;
}

.copySns__copyLink {
  font-weight: 700;
  text-decoration: underline;
  color: #ffffff;
  transition: .2s;
}

.copySns__copyLink:hover {
  color: #f0b200;
}

/*ソーシャルリスト*/
.copySns__list {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: 200px;
}

.copySns__listItem {
  display: inline-block;
  margin-left: 5px;
}

.copySns__listLink {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  background: #3f3f3f;
  border-radius: 50%;
  line-height: 1.4;
  /*line-height: 30px;*/
  text-align: center;
  color: #bfbfbf;
  font-size: 1.2rem;
  transition: .2s;
  z-index: 1;
}

.copySns__listLink:hover {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .copySns__copy {
    width: 100%;
    order: 2;
    margin-top: 20px;
    line-height: 1.5;
    text-align: center;
    font-size: 1.2rem;
  }

  .copySns__copyInfo {
    margin-top: 5px;
  }

  .copySns__list {
    order: 1;
    display: block;
    width: 100%;
    text-align: center;
  }

  .copySns__listItem {
    margin: 0 2.5px;
  }
}


/*フッター調整用*/
.sec-copyArea .wrap .sns-wrap a i.fa-instagram:before {
  font-size: 3rem;
}

.sec-copyArea .wrap .sns-wrap a.ico-instagram:hover:before {
  opacity: 1;
}

footer .sec-copyArea .wrap .footer-logo .logo-img {
  display: inline-block;
}

.sec-copyArea .invoice-block {
  line-height: 1.2;
}

.sec-copyArea .invoice-block .invoice-title,
.sec-copyArea .invoice-block .invoice-num {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  footer .sec-copyArea .wrap .footer-logo .logo-img img {
    width: 200px;
  }

  footer .sec-copyArea .wrap .footer-logo .logo-img .logo-head {
    top: -3px;
    right: auto;
    left: 49px;
    width: auto;
    display: block;
    font-size: 1.2rem;
    white-space: nowrap;
  }

  footer .sec-copyArea .wrap .sns-wrap a {
    transform: scale(0.7);
  }

  footer .sec-copyArea .wrap .sns-wrap a.ico-twitter {
    transform-origin: right center;
  }

  footer .sec-copyArea .wrap .sns-wrap a.ico-youtube {
    transform-origin: left center;
  }
}

#toTop {
  z-index: 9999;
}