@charset "UTF-8";
/* =========================================================
# フッター
========================================================= */
/*
# 中央寄せ・ボーダー
---------------------------------- */
.l-footer-widget-area__item.c-row__col {
  text-align: center;
  border-left: 1px solid #e3e3e3;
}

@media screen and (max-width: 1023px) {
  .l-footer-widget-area__item.c-row__col {
    text-align: center;
    border-left: none;
  }
}
/*
# 1023以下でロゴ消す・幅70％
---------------------------------- */
@media screen and (max-width: 1023px) {
  .l-footer__body .c-container {
    width: 70%;
  }
  .l-footer__body .c-container .c-site-branding__title {
    display: none;
  }
}
/* =========================================================
# ヘッダーナビ
========================================================= */
/*
# 区切り線の追加
---------------------------------- */
.c-navbar__item:not(:first-child):before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30%;
  background-color: #2e2e2e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*
# ホバーアクション
---------------------------------- */
.c-navbar__item > a {
  transition: all 0.3s;
}

.c-navbar__item > a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #14B8A7;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.c-navbar__item > a:hover {
  color: #14B8A7;
}

.c-navbar__item > a:hover::after {
  transform: scale(1, 1);
}/*# sourceMappingURL=style.css.map */