@charset "utf-8";
/* *************************************** */
/* 【モバイル版】 */
/* *************************************** */

/* **********************【ヘッダー】********************** */
.fade-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #00880a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.fade-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  gap: 12px;
}

.fade-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fade-header__logo a {
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: block;
}

.logo:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.fade-header__nav {
  margin-left: auto;
}

.fade-header__menu {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  /* flex-wrap: wrap; */
  justify-content: flex-end;
}

.fade-header__menu li {
  display: block;
}

.fade-header__menu a {
  position: relative;
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 4px;
  white-space: nowrap;
}

.fade-header__menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff6e00;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.fade-header__menu a:active {
  color: #ff6e00;
}

.fade-header__menu a:active::after {
  width: 80%;
}

/* ヘッダーを隠すクラス */
.fade-header--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

/* **********************【フッター】********************** */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #ff6e00;
}

.flex {
  display: flex;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.footer {
  padding: 16px 12px;
  font-size: 12px;
  color: #fff;
  background: #00880a;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* flex-wrap: wrap; */
}

.footer__navi {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  font-size: 11px;
  margin-bottom: 16px;
}

.footer__navi li {
  display: block;
}

.footer__navi li:not(:last-child) {
  margin-right: 8px;
}

.copyright {
  text-align: center;
  margin: 12px 0;
  font-size: 11px;
}

.copyright a:hover {
  color: #ff6e00;
}

/* ******************************* */
/* 【SNS アイコンナビゲーション】 */
/* ******************************* */

.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.7;
}

.sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  /* background-color: #888; */
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}

/* *************************************** */
/* 【PC版】 */
/* *************************************** */
@media (min-width: 769px) {
  /* **********************【ヘッダー】********************** */
  .fade-header {
    height: 100px;
    padding: 0;
  }

  .fade-header__inner {
    padding: 0 24px;
    gap: 64px;
  }

  .fade-header__menu {
    gap: 35px;
  }

  .fade-header__menu a {
    font-size: 1.5rem;
    padding: 5px;
  }

  .fade-header__menu a::after {
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transform: none;
  }

  .fade-header__menu a:hover {
    color: #ff6e00;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
  }

  .fade-header__menu a:hover::after {
    width: 100%;
  }

  .logo {
    width: 80px;
    height: 80px;
    border-radius: 30px;
  }

  .logo:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.45);
  }

  .logo:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  }

  /* ヘッダーを隠すクラス */
  .fade-header--hidden {
    transform: translateY(-100px);
  }

  /* **********************【フッター】********************** */
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px;
  }

  .footer__navi li a:hover {
    color: #ff6e00;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
  }

  .flex {
    display: flex;
  }

  hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #e5e7eb;
  }

  .footer {
    padding: 2rem;
    font-size: 15px;
    color: #fff;
    background: #00880a;
  }

  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* サイトマップ */
  .footer__navi {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  .footer__navi li {
    display: block;
  }

  .footer__navi li a {
    /* display: block; */
    font-size: 0.9rem;
  }

  .footer__navi li:not(:last-child) {
    margin-right: 16px;
  }

  .copyright {
    text-align: center;
    margin: 30px 0;
  }

  .copyright a:hover {
    color: #ff6e00;
  }

  /* ******************************* */
  /* 【SNS アイコンナビゲーション PC版】 */
  /* ******************************* */

  .footer-sns {
    gap: 16px;
    margin: 16px 0;
  }

  .footer-sns a {
    width: 40px;
    height: 40px;
  }

  .sns-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
