/* footer.css */

/* 全体背景と文字色 */
.l-footer {
  background-color: #F6F6F6;
  color: #000;
  font-size: 14px;
  padding: 96px 0 12px;
  position: relative;
  z-index: 9;
}

/* フッター全体の内包 */
.p-footer__inner {
  max-width: 1152px;    /* 変更：幅を1152pxに */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 64px;
}

/* 左：ロゴとボタン */
.p-footer__left {
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
  min-width: 200px;
}

.p-footer__logo img {
  width: 248px;
  height: auto;
}

.c-btn.p-footer__lang-btn {
  margin-bottom: 29px;
  font-size: 16px;
}

.p-footer__logo {
  margin-bottom: 53px;
}

/* 共通ボタン */
.c-btn {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  font-size: 14px;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
}
.c-btn:hover {
  color: #656565;
  border: 1px solid #656565;
}


/* 言語/パンフレットボタン */
.p-footer__lang-btn,
.p-footer__pamphlet-btn {
  width: 160px;
}
.p-footer__pamphlet-btn {
  font-size: 14px;
  padding: 8px 0;
  transform: 0.3s;
}
.p-footer__pamphlet-btn:hover {
  border: #656565 1px solid;
  color: #656565;
}

/* 右：ナビ＋問い合わせ */
.p-footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
  min-width: 240px;
  border-left: 1px #000 solid;
  padding: 8px 0 0 64px;
}

/* ナビゲーション */
.p-footer__nav-list {
  display: flex;
  font-size: 16px;
  flex-wrap: wrap;
  gap: 32px 88px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-footer__nav-item a {
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-footer__nav-item a:hover {
  color: #656565;
  transition: 0.3s;
}

/* お問い合わせ */
.p-footer__contact-title {
  margin-bottom: 10px;
  font-size: 16px;
}
.p-footer__contact-org,
.p-footer__contact-tel {
  margin-bottom: 16px;
}
.p-footer__contact-tel a:hover {
  color: #656565;
  transition: 0.3s;
}
.br-sp {
  display: none;
}

/* 問い合わせボタン群 */
.p-footer__contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  list-style: none;
  height: 72px;
  align-items: center;
}
.p-footer__contact-btn {
  font-size: 12px;
  padding: 27px 20px;
  width: 176px;
}

/* コピーライト */
.p-footer__copyright {
  text-align: center;
  font-size: 10px;
  padding-top: 72px;
}

@media (max-width: 768px) {
  .l-footer {
    padding: 56px 16px 16px;
  }
  .p-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
  .p-footer__left,
  .p-footer__right {
    width: 100%;
    align-items: flex-start;
  }
  .p-footer__lang-btn,
  .p-footer__pamphlet-btn {
    width: 176px;
  }
  .p-footer__left {
    border-bottom: #000 1px solid;
    padding: 0 0 56px 32px;
  }
  .p-footer__right {
    gap: 48px;
    border-left: none;
    padding: 0 32px;
  }
  .p-footer__nav-list {
    flex-direction: column;
    gap: 24px;
  }
  .p-footer__nav-item a {
    line-height: 2.6;
  }
  .p-footer__contact-title {
    margin-bottom: 16px;
  }
  .p-footer__contact-org {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.3;
  }
  .p-footer__contact-tel {
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .br-sp {
    display: inline;
  }
  .p-footer__contact-btns {
    display: block;
    height: 100%;
  }
  .p-footer__contact-btns li {
    margin-bottom: 24px;
  }
  .p-footer__contact-btns li:last-child {
    margin-bottom: 0;
  }
  .p-footer__contact-btn {
    font-size: 14px;
    padding: 27px 20px;
    width: 100%;
  }
  .p-footer__copyright {
    padding-top: 32px;
  }
}
