@charset "UTF-8";
.site-footer {
  background-image: url("../../src/footer/footer_background.webp");
  position: relative;
  background-color: #ffffff;
  margin: 60px auto 0;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
}

@media (min-width: 1201px) {
  .site-footer {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: transparent;
}

.footer-entry-section {
  margin-bottom: 50px;
}

.entry-buttons-wrapper {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.entry-button {
  display: block;
  flex: 0 1 auto;
  width: 280px;
  max-width: 50%;
  overflow: visible;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
}

.entry-button:hover {
  transform: scale(1.02);
}

.entry-button-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-links-section {
  flex: 1;
  margin-bottom: 30px;
}

.footer-links-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
}

.footer-links-list li::before {
  content: "ー";
  flex-shrink: 0;
  color: #666;
  font-size: 13px;
}

.footer-links-list li a {
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-links-list li a:hover {
  color: #2c5aa0;
}

.footer-bottom-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.footer-left-section {
  width: 300px;
}

.footer-logo-section {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
}

.footer-company-info {
  width: 100%;
}

.company-details {
  width: 100%;
}

.company-name {
  font-size: 16px;
  font-weight: 400;
}

.company-address,
.company-phone {
  font-size: 16px;
  margin: 8px 0;
  color: #666;
  line-height: 1.6;
}
.company-address a,
.company-phone a {
  color: #666;
}

.footer-social-area {
  display: flex;
  gap: 15px;
  width: 100%;
}

.sns-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sns-icon-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sns-icon {
  width: 50px;
  height: 50px;
  display: block;
}

.footer-right-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.goods-link {
  display: block;
  width: 250px;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.goods-link:hover {
  transform: scale(1.02);
}

.goods-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-links li a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: #2c5aa0;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 500;
}

.to-top img {
  width: 100%;
  height: auto;
  display: block;
}

/* 最初は非表示 */
.to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* 表示用クラス */
.to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .footer-bottom-content {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .site-footer {
    background-image: url("../../src/footer/sp_bg.webp");
  }
  .footer-container {
    padding-top: 0;
    padding-bottom: 90px;
  }
  .footer-entry-section {
    margin-bottom: 0px;
  }
  .entry-buttons-wrapper {
    display: none;
  }
  .footer-links-section {
    display: none;
  }
  .footer-links-grid {
    display: none;
  }
  .footer-bottom-content {
    flex-direction: row;
    align-items: flex-end;
    max-width: 100%;
    gap: 0px;
  }
  .footer-left-section {
    width: 300px;
    max-width: 65%;
  }
  .company-address,
  .company-phone a {
    font-size: 15px;
  }
}
@media (max-width: 365px) {
  .company-address br {
    display: none !important;
  }
}/*# sourceMappingURL=footer.css.map */