/* フッター */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 30px;
  width: 100%;
  margin: 0; /* ネガティブマージンを削除 */
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* ここにコンテンツを中央寄せ */
}


.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  width: 250px;
}

.footer-logo img {
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-nav {
  display: flex;
}

.footer-nav-group {
  width: 200px;
  margin-left: 30px;
}

.footer-nav-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #E17A42;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list li a {
  color: #aaa;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav-list li a:hover {
  color: #E17A42;
  padding-left: 5px;
}

.footer-address {
  width: 300px;
}

.footer-address h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-address h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #E17A42;
}

.footer-address p {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 15px;
}

.footer-address .phone {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-address .phone i {
  margin-right: 10px;
  color: #E17A42;
}

/* フッターのSNSアイコン調整用 */
.footer-social {
  display: flex;
  margin-top: 20px;
}

.footer-social a {
  width: 42px; /* 少し大きめに */
  height: 42px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s ease;
  font-size: 20px; /* アイコンサイズを大きく */
}

.footer-social a:hover {
  background-color: #E17A42;
  transform: translateY(-3px);
}

/* モバイル表示でのフッターSNSアイコン調整 */
@media screen and (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
  
  .footer-social a {
    width: 48px; /* モバイルではさらに大きく */
    height: 48px;
    font-size: 22px;
    margin: 0 10px;
  }
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

/* footer.css の .footer-social 定義の直後あたりに追記 */
.footer-social a .booking-icon {
  width: 16px;    /* デスクトップでのサイズ */
  height: auto;
  display: block;
}

/* モバイルだけ小さくしたい場合 */
@media screen and (max-width: 768px) {
  .footer-social a .booking-icon {
    width: 20px;
  }
}