@charset "UTF-8";

footer {
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: .5rem;
}

footer .col-sm-7,
footer .col-sm-5 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
footer .copyright {
  padding-top: 2rem;
  text-align: center !important;
}
/* コピーライト */
footer .copyright p {
  font-size: .9rem;
}

/* フッターメニュー */
.footer_menu {
  list-style-type: none;
  position: relative;
}

.footer_menu a {
  color: #ff8c00 !important;
}
.footer_menu a:hover,
.footer_menu a:active {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000 !important;
  text-decoration: none;
}

.footer_menu li {
  position: relative;
}

.footer_menu li.before_line a {
    padding-left: 50px;
}
.footer_menu li.before_line a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: black;
}
.footer_menu li.before_line a:before {
  left:0;
}

/* ロゴエリア */
footer .logo_area a:hover,
footer .logo_area a:active {
  color: #000 !important;
}
/* ロゴ */
footer .logo_area a {
  color: #ff6d24 !important;
  font-size: 2.8rem !important;
  line-height: 1.2;
  font-family: 'M PLUS 1', sans-serif !important;
}
footer .logo_area a span {
  display: block;
  font-size: 0.9rem !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  padding-left: .2rem;
}

/* 連絡先*/
footer .address_area {
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
}
footer .address_area div {
  display: flex;
  padding-right: 1rem;
}
footer .address_area .fa-phone,
footer .address_area .fa-fax,
footer .address_area .fa-envelope {
  color: #fff;
  font-size: 1rem;
  background-color: #ff6d24;
  padding: .4rem;
  border-radius: 50%;
  margin-right: .3rem;
  margin-top: .2rem;
}

/* お問い合わせボタンの調整 */
footer .btn_orange { 
  padding-top: 1rem;
}
footer .btn_orange a {
  color: #000 !important;
}
footer .btn_orange a:hover,
footer .btn_orange a:active {
  color: #ff8c00 !important;
}

/* 受付時間 */
footer .info span {
  font-weight: 600;
}
footer .info span.bold {
  padding-right: 1rem;
  color: #ff6d24;
}

/* モバイル */
@media screen and ( max-width: 767px ) {
  /* コピーライト */
  footer .copyright p {
    font-size: .8rem !important;
  }
  /* ロゴ */
  footer .logo_area {
    text-align: center !important;
  }
  /* 連絡先*/
  footer .address_area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 1rem;
  }
  footer .info {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-bottom: 1rem;
  }
  /* フッターメニュー */
  .footer_menu {
    padding-left: 0 !important;
  }
  .footer_menu li.before_line a {
    padding-left: 20px;
  }
  .footer_menu li.before_line a:before {
    width: 10px;
  }
  /* お問い合わせボタン */
  footer .col-6.mobile-show {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .col-6.mobile-show .btn_orange a {
    font-size: .9rem !important;
  }
}

/* iPad(縦)～iPadAir(横) */
@media screen and ( min-width: 1024px ) and ( max-width: 1365px ) {
  /* 受付時間 */
  footer .info p {
    font-size: 1rem;
  }
}

/* iPadAir(縦)のみ */
footer .ipad_air {
  display: none;
}
@media screen and (orientation: portrait) and ( min-width: 820px ) and ( max-width: 1023px ) {
  footer .ipad_air {
    display: inline-block;
  }
  /* 5文字文ずらして揃える */
  footer .info p span:nth-of-type(3) {
    padding-left: 5.6rem;
  }
}

/* iPad(縦)のみ */
@media screen and (orientation: portrait) and ( min-width: 768px ) and ( max-width: 819px ) {
  footer .info .mobile-show,
  footer .info .ipad_air {
    display: inline-block !important;
  }
}