@charset "UTF-8";
.site-footer {
  background-color: #f5f7fb;
  padding: 40px 24px 20px;
  color: #1b1b1b;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 48px;
  height: auto;
}

.footer-company {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.footer-address p {
  line-height: 1.8;
  font-size: 14px;
  margin: 0 0 24px 0;
}

.footer-link {
  text-align: center;
  margin-bottom: 30px;
}

.footer-site-btn {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}
.footer-site-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/withmo-site.webp") center/cover no-repeat;
  filter: blur(3px) brightness(0.9);
  z-index: -1;
  transition: transform 0.4s ease, filter 0.3s ease;
  background-size: cover;
}
.footer-site-btn:hover::before {
  transform: scale(1.05);
  filter: blur(2px) brightness(1);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-top: 24px;
}

.page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 80px;
  right: -80px;
  bottom: calc(50% - 40px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: #dba351;
  transition: 0.3s;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
  z-index: 9999;
}
.page-top p {
  margin: 0;
  font-size: 15px;
  bottom: 13px;
  position: absolute;
}
.page-top.is-active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.footer-address a {
  text-decoration: none;
  color: #000;
}

.fixed-consult {
  position: fixed;
  right: 0;
  bottom: calc(50% - 50px - 167px); /* TOPボタンの下に配置 */
  width: 60px;
  height: 167px;
  background: #FF7D02; /* 青系。金系でもOK */
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  transition: 0.3s ease;
  z-index: 9998;
  letter-spacing: 2px;
  writing-mode: vertical-rl; /* ←これで縦書きに！ */
  text-orientation: upright;
  text-align: center;
}

.fixed-consult:hover {
  background: #8f4500;
  transform: translateX(-5px);
}

@media (min-width: 768px) {
  .footer-logo {
    width: 65px;
  }
  .footer-company {
    font-size: 1.5rem;
  }
  .footer-address p {
    font-size: 1.2rem;
  }
  .footer-copy {
    font-size: 1rem;
  }
  .footer-top {
    margin-bottom: 24px;
  }
  .footer-site-btn {
    width: 328px;
  }
}
@media (min-width: 1024px) {
  .footer-inner {
    max-width: 960px;
  }
  .address-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cta-text .line3 {
    font-size: 3rem;
  }
}
@media (min-width: 1440px) {
  .cta-image {
    width: 428px;
  }
}/*# sourceMappingURL=footer.css.map */