/*
 * フッター専用スタイル
 * 倉本鐵工株式会社 WordPressテーマ
 * 
 * @package Kuramoto
 * @version 1.0.0
 * @author 倉本鐵工株式会社
 */

/* 画像背景エリア */
.footer-image-section {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

/* フッター背景画像 */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}





/* 採用情報バー（全ページ共通・固定位置） */
.recruitment-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #5CC9E2;
  color: #ffffff;
  padding: 20px 15px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 1000;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
}

.recruitment-bar:hover {
  background: #357ABD;
  transform: translateY(-50%) translateX(-5px);
}

.recruitment-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.recruitment-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.recruitment-text {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.recruitment-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  display: block;
}

/* フッターコンテンツ */
.footer-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 60px 0 40px;
  min-height: 400px;
}

/* 左側: 会社名エリア */
.footer-left {
  max-width: 50%;
}

.company-branding {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 170px;
  height: 170px;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: -20px;
}

.company-name-en {
  font-size: 3.5rem;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 10px 0;
  color: #ffffff;
  line-height: 1;
}

.company-name-jp {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  line-height: 1.2;
}

/* 右側: 連絡先情報エリア */
.footer-right {
  max-width: 50%;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.address-info {
  margin-bottom: 15px;
}

.postal-code {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.address {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.phone-info {
  margin-bottom: 15px;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.phone-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 8px;
}

.phone-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(92, 201, 226, 0.5);
}

.business-hours {
  margin-bottom: 0;
}

.hours {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* フッターボトム（白背景） */
.footer-bottom {
  text-align: center;
  background: #ffffff;
  z-index: 10;
  position: absolute;
  width: 100%;
}

.copyright {
  color: #333;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
  .footer-content {
    padding: 50px 0 30px;
  }

  /* .footer-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }
 */
  .company-name-en {
    font-size: 3rem;
  }

  .company-name-jp {
    font-size: 1.2rem;
  }

  .recruitment-bar {
    padding: 15px 10px;
    right: -5px;
  }

  .recruitment-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0 30px;
    text-align: center;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
    text-align: center;
  }

  .company-name-en {
    font-size: 2.5rem;
  }

  .company-name-jp {
    font-size: 1.1rem;
  }


  .contact-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 0 20px;
  }

  /* .footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
 */
  .company-name-en {
    font-size: 2rem;
  }

  .company-name-jp {
    font-size: 1rem;
  }

  .postal-code,
  .address,
  .hours {
    font-size: 0.9rem;
  }
}

/* 印刷用スタイル */
@media print {
  .site-footer {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .footer-background,
  .footer-overlay {
    display: none;
  }

  .company-name-en,
  .company-name-jp,
  .postal-code,
  .address,
  .phone-number,
  .hours {
    color: #000000 !important;
    text-shadow: none !important;
  }
}