.footer-bg {
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/****************************** 

お問い合わせ

*******************************/
#contact {
  padding-top: 120px;
}

#contact .wrap {
  background-color: var(--color-gray);
  position: relative;
}

#contact .wrap {
  display: flex;
  position: relative;
}

#contact .wrap h3 {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding-left: 60px;
  padding-top: 60px;
}

#contact h3 .line {
  display: inline-block;
  width: 115px; /* ← 好きな長さに変更 */
  height: 3px;
  background-color: var(--color-brown);
}

#contact .img-box {
  width: 50%;
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
}

#contact h2 {
  margin-bottom: 30px;
}

#contact .btn-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact .btn-box .icon-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

#contact .btn-box .icon-wrap .icon-text {
  font-size: var(--font-size-fixed-lg);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-mincho);
  color: var(--color-brown);
}

#contact .contact-text {
  margin-bottom: 60px;
}

#contact .text-box {
  width: 50%;
  background-color: var(--color-light-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

#footer {
  background-color: var(--color-white);
  padding-top: 60px;
}

#footer .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 240px;
  margin-bottom: 30px;
}

#footer .text {
  font-weight: var(--font-weight-bold);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#footer .icon {
  display: flex;
  gap: 20px;
}

#footer .footer-logo {
  width: 120px;
  margin: 0 auto;
  display: block;
  position: relative;
  margin-bottom: 60px;
}

#footer .footer-logo::before,
#footer .footer-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background-color: var(--color-brown);
  transform: translateY(-50%);
}

#footer .footer-logo::before {
  left: -80px;
}

#footer .footer-logo::after {
  right: -80px;
}

#footer .copy-right {
  background-color: var(--color-light-gray);
  text-align: center;
  font-family: var(--font-family-playfair);
  padding: var(--space-m) 0;
}

#footer .copy-right p {
  font-family: var(--font-family-playfair);
}


@media (max-width: 767px) {
  #contact .wrap {
    display: flex;
    flex-direction: column;
  }

  #contact .text-box {
    width: 100%;
  }

  #contact .img-box {
    width: 100%;
    height: auto;
  }

  #contact .wrap h3 {
    padding-left: 30px;
    padding-top: 30px;
  }

  #contact .text-box {
    padding: 60px 16px;
  }

  #footer .wrap {
    flex-direction: column;
    gap: 30px;
  }

  #contact {
    padding-top: 60px;
  }

  #footer .footer-logo {
    width: 60px;
  }

  #footer .copy-right {
    background-color: var(--color-light-gray);
    text-align: center;
    font-family: var(--font-family-playfair);
    padding: var(--space-m) 0;
    padding: 8px;
    font-size: 12px;
}
}



