@charset "UTF-8";
/* CSS Document */
.footer {
  background: #1f1f1f;
  color: #fff;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding: 80px 20px 60px;
}
.footer-header {
  display: block;
}
.footer-contact {
  width: auto;
  flex-shrink: 0;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-group,.footer-contact a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.9;
  transition: 0.2s;
}
.footer-group,.footer-contact a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-group:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 40px;
}
.footer-group:not(:first-child) {
  padding-left: 40px;
}
.contact-box {
  margin-bottom: 48px;
}
.contact-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.contact-time {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact img {
  display: block;
  margin: 40px 0 32px;
}
.footer-contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom {
  margin-top: 60px;
  padding: 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-license {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom small {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}
/* ---------- タイトル ---------- */
.footer-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
/* ---------- リンク ---------- */
.footer-links a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
@media (min-width: 769px) {
  /* PCでは矢印を消す */
  .footer-title svg {
    display: none;
  }
  /* PCでは全部表示 */
  .footer-links {
    display: block !important;
  }
  /* ボタンを見出しっぽく */
  .footer-title {
    cursor: default;
  }
  /* 親要素のクラスも一緒に指定して優先度を上げる */
  .footer-toggle {
    display: none !important; /* 強制適用 */
  }
}
@media (max-width: 768px) {
  .footer-inner {
    display: block;
    padding: 48px 20px;
  }
  .footer-nav {
    display: block;
  }
  .footer-group {
    border-right: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact {
    width: 100%;
    margin-top: 40px;
  }
  .footer-group {
    border-right: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* 矢印アイコンはスマホでは表示する */
  .footer-toggle {
    display: inline-block;
    transition: transform 0.25s ease;
  }
  /* 開いた時に矢印を回転させる設定（必要に応じて） */
  .footer-toggle.open {
    transform: rotate(180deg);
  }
  /* ヘッダー全体の見た目調整 */
  .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding: 18px 0;
    cursor: pointer;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-tap-highlight-color: transparent;
  }
  .footer-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition:
      max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }
  .footer-links a {
    display: block;
    padding: 12px 0;
  }
  .footer-links.open {
    max-height: 300px;
    padding-bottom: 12px;
    opacity: 1;
  }
}