/* ========================================================
   Footer
======================================================== */
.footer {
  background-color: #eef4fb;
  padding: 4.28rem 0 6rem;
  margin-top: 0;
}
.home .footer {
  margin-top: 3.57rem;
}
.footer__inner {
  padding: 0;
  width: 85%;
  margin: 0 auto;
}
.footer__info {
  margin-bottom: 3.57rem;
}
.footer__logo {
  margin-bottom: 2.14rem;
  width: 21.42rem;
}
/* 会社情報・営業所 */
.footer__office {
  margin-bottom: 1.7rem;
}
.footer__office-name {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.footer__address-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.5rem;
  margin-bottom: 0.5rem;
}
a.footer__map-link:hover {
  text-decoration: none;
  color: #333333;
}
.footer__address {
  margin: 0;
  font-size: 0.928rem;
}
/* Google Map リンク */
.footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__map-link:hover {
  opacity: 0.7;
}
.footer__map-text {
  font-size: 0.928rem;
  border-bottom: 1px solid #555;
  line-height: 1.2;
}
.footer__map-icon {
  width: 16px;
  height: 16px;
}
.footer__tel {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1;
}
.footer__tel span {
  font-size: 1.15rem;
}
.footer__info a:hover {
  text-decoration: none;
  color: #000;
}
.footer__departments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.9rem;
}
.footer__dept-name {
  font-size: 0.928rem;
  margin-bottom: 0.1rem;
}
.footer__dept-tel {
  font-size: 0.928rem;
  margin: 0;
}
.footer__dept-tel span {
  font-size: 1.07rem;
}
/* ボタン */
.footer__action {
  margin-bottom: 3rem;
}
.footer__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  background-color: #004da0;
  color: #ffffff;
  font-size: 0.928rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 1px solid #004da0;
}
.footer__btn:hover {
  text-decoration: none;
  color: #004da0;
  background: #fff;
  border: 1px solid #004da0;
}
.footer__btn.fb_instagram{
	background-color: #000;
	border: 1px solid #000;
	margin-top: 0.5rem;
}
.footer__btn.fb_instagram span{
	    width: 20px;
    filter: invert(100%);
    display: inline-block;
    margin-right: 0.5rem;
	transition: .3s;
	    position: relative;
    top: -1px;
}
.footer__btn.fb_instagram:hover{
	 color: #000;
  background: #fff;
  border: 1px solid #000;
}
.footer__btn.fb_instagram:hover span{
	filter: invert(0%);
	transition: .3s;
}
/* フッター下部 */
.footer__bottom {
  border-top: 1px solid #dcdcdc;
  padding-top: 2rem;
}
.footer__links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__links li {
  position: relative;
}
/* リンクの区切り線 (|) */
.footer__links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #bbbbbb;
}
.footer__links a {
  color: #666666;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.3s;
}
.footer__links a:hover {
  color: #666666;
  text-decoration: none;
}
.footer__copyright {
  font-size: 0.785rem;
  color: #666666;
  margin: 0;
}
.footer__tel-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__tel-link:active {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 5.625rem 0;
  }
  .home .footer {
    margin-top: 6.25rem;
  }
}
@media screen and (min-width: 992px) {
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 7rem;
  }
  .footer__info {
    width: calc(100% - 18.6%);
    margin-bottom: 0;
  }
  .footer__tel-link {
    pointer-events: none;
    cursor: default;
  }
  .footer__action {
    width: 18.6%;
    margin-bottom: 0;
    margin-top: 4.5rem;
  }
  .footer__departments {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 2.5rem;
  }
  .footer__dept {
    padding: 0 1rem;
    border-left: 1px solid #cccccc;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
  }
  .footer__dept:last-child {
    border-right: 1px solid #cccccc;
  }
  .footer__address {
    margin: 0;
    font-size: 0.875rem;
  }
  .footer__office-name {
    font-size: 0.875rem;
  }
  /* 下部リンクの配置 */
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.3rem;
  }
  .footer__links {
    margin-bottom: 0;
    gap: 2rem;
  }
  .footer__links li:not(:last-child)::after {
    right: -1rem;
  }
  .footer__logo {
    margin-bottom: 2.8rem;
    width: 28.125rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    width: 80.55%;
  }
  .footer__dept {
    padding: 0 1.5rem;
    width: unset;
  }
  .footer__departments {
    justify-content: flex-start;
  }
  .footer__btn {
    height: 80px;
    font-size: 1rem;
  }
  .footer__action {
    margin-top: 5.5rem;
  }
}
/* 767以下の表示設定
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 576px) {
  .footer_menu {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  /*　フッター固定メニュー　*/
  .footer_menu {
    width: 100%;
    position: fixed;
    display: flex;
    bottom: 0;
    left: 0;
    z-index: 999;
    transition: all .4s;
  }
  .footer_menu.event_footer {
    border-top: 1px solid #c98b5b;
  }
  .footer_menu a {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 5px;
    height: 45px;
    font-size: 1rem;
    transition: .3s;
    color: #fff;
  }
  .footer_menu.event_footer a {
    width: 50%;
  }
  .footer_menu a:first-child {
    background: #00adba;
  }
  .footer_menu a:nth-child(2) {
    background-color: #004da0;
  }
  .footer_menu a:hover {
    text-decoration: none;
    opacity: 1;
  }
}