@charset "UTF-8";

footer {
  background-color: #333132;
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
}
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url(../../image/back_company.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.company {
  position: relative;
  z-index: 1;
  padding: 0.5rem;
  line-height: 1.2rem;
  box-shadow: 2px 2px 5px #fff;
  border-radius: 8px;
}

.company-name {
  padding: 0.5rem 0 1rem 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.company-profile {
  padding: 0 1.2rem;
  line-height: 1.7rem;
}

.link-contents {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
}

.footer-title {
  padding: 0 10px;
}

.footer-title > a > img {
  width: 20px;
  height: 20px;
}

.border-left {
  border-color: #fff;
  border-left: 1px solid;
}

.footer-link {
  text-decoration: underline;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 10; /* リンクを前面に */
}

/* =========================================================
   PC用レスポンシブ対応（BASE風クリーンレイアウト）
   ========================================================= */
@media screen and (min-width: 768px) {
  /* ★修正：PCでは中央配置 */
  footer {
    background-color: #fff;
    color: #333132;
    box-shadow: 0px -1px 10px 0px #d3d3d3;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 50px;
    font-size: 1rem;
    gap: 50px;
  }
  .footer-bg {
    position: static;
    display: flex;
    height: 200px;
    width: 55%;
    max-width: 450px;
    opacity: 1;
    background: url(../../image/back_company.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 15px;
  }

  .res-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
    max-width: 450px;
    height: 200px;
    color: #333132;
  }

  .company {
    display: flex;
    flex-direction: column;
    box-shadow: none;
    padding: 0;
  }

  .company-name {
    padding: 0;
  }

  .company-profile {
    padding: 1.5rem 1.2rem;
  }

  .link-contents {
    display: flex;
    justify-content: flex-start;
    padding-top: 0px;
  }

  .border-left {
    color: #333132;
  }

  .footer-link {
    color: #333132;
  }

  .title-left {
    padding-left: 0px;
  }

  a[href*="tel:"] {
    pointer-events: none; /* リンクアクションを無効化 */
    cursor: default; /* カーソルを通常の矢印に変更 */
    text-decoration: none; /* 下線を削除 */
  }
}
