@charset "UTF-8";
.site-footer {
  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: 120px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.entry-button {
  display: block;
  flex: 0 1 auto;
  max-width: 200px;
  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: 120%;
  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: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

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

.footer-links-title {
  font-size: 15px;
  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: 14px;
  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;
}

.footer-left-section {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

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

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

.footer-company-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}

.company-details {
  width: 100%;
}

.company-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #333;
}

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

.footer-social-area {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  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;
}

@media (min-width: 1101px) {
  .footer-links-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer-links-list li {
    white-space: nowrap;
  }
  .footer-links-list li a {
    white-space: nowrap;
  }
  .footer-bottom-content {
    gap: 40px;
    align-items: flex-start;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .footer-container {
    padding: 50px 24px;
  }
  .footer-entry-section {
    margin-bottom: 40px;
  }
  .entry-buttons-wrapper {
    gap: 30px;
  }
  .entry-button {
    max-width: 180px;
  }
  .footer-main-content {
    gap: 35px;
  }
  .footer-links-section {
    margin-bottom: 25px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .footer-links-title {
    font-size: 14px;
    margin: 0 0 12px 0;
  }
  .footer-links-list li a {
    font-size: 13px;
  }
  .footer-links-list li {
    gap: 8px;
  }
  .footer-links-list li::before {
    font-size: 12px;
  }
  .footer-bottom-content {
    gap: 35px;
  }
  .footer-left-section {
    width: 260px;
    gap: 20px;
  }
  .footer-logo {
    width: 150px;
  }
  .company-name {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
  .company-address,
  .company-phone {
    font-size: 15px;
    margin: 7px 0;
  }
  .sns-icon-link {
    width: 60px;
    height: 60px;
  }
  .sns-icon {
    width: 60px;
    height: 60px;
  }
  .goods-link {
    width: 200px;
  }
  .footer-right-section {
    flex: 0 1 auto;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .footer-container {
    padding: 40px 16px;
  }
  .footer-entry-section {
    margin-bottom: 35px;
  }
  .entry-buttons-wrapper {
    gap: 25px;
  }
  .entry-button {
    max-width: 160px;
  }
  .footer-main-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-links-section {
    margin-bottom: 20px;
  }
  .footer-links-title {
    font-size: 13px;
    margin: 0 0 10px 0;
  }
  .footer-links-list li a {
    font-size: 12px;
    white-space: normal;
  }
  .footer-links-list li::before {
    font-size: 11px;
  }
  .footer-links-list li {
    white-space: normal;
    gap: 6px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 25px;
  }
  .footer-left-section {
    width: 100%;
    gap: 20px;
    align-items: center;
  }
  .footer-logo-section {
    margin-bottom: 0;
  }
  .footer-logo {
    width: 140px;
  }
  .company-name {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  .company-address,
  .company-phone {
    font-size: 14px;
    margin: 6px 0;
  }
  .sns-icon-link {
    width: 55px;
    height: 55px;
  }
  .sns-icon {
    width: 32px;
    height: 32px;
  }
  .footer-right-section {
    width: 100%;
    justify-content: center;
  }
  .goods-link {
    width: 200px;
  }
  .footer-bottom-links {
    gap: 15px;
  }
  .footer-bottom-links li a {
    font-size: 11px;
  }
}
@media (max-width: 479px) {
  .footer-container {
    padding: 30px 12px;
  }
  .footer-entry-section {
    margin-bottom: 30px;
  }
  .entry-buttons-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .entry-button {
    max-width: 150px;
    width: 100%;
  }
  .footer-main-content {
    flex-direction: column;
    gap: 25px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-links-section {
    margin-bottom: 15px;
  }
  .footer-links-title {
    font-size: 12px;
    margin: 0 0 8px 0;
  }
  .footer-links-list li a {
    font-size: 11px;
    white-space: normal;
  }
  .footer-links-list li::before {
    font-size: 10px;
  }
  .footer-links-list li {
    white-space: normal;
    gap: 6px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-left-section {
    width: 100%;
    gap: 20px;
    align-items: center;
  }
  .footer-logo-section {
    margin-bottom: 0;
    text-align: center;
  }
  .footer-logo {
    width: 120px;
  }
  .footer-company-info {
    text-align: center;
  }
  .company-name {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  .company-address,
  .company-phone {
    font-size: 14px;
    margin: 6px 0;
  }
  .footer-social-area {
    gap: 12px;
    justify-content: center;
  }
  .sns-icon-link {
    width: 55px;
    height: 55px;
  }
  .sns-icon {
    width: 32px;
    height: 32px;
  }
  .footer-right-section {
    width: 100%;
    justify-content: center;
  }
  .goods-link {
    width: 180px;
  }
  .footer-bottom-links {
    gap: 12px;
  }
  .footer-bottom-links li a {
    font-size: 10px;
  }
  .footer-copyright {
    font-size: 10px;
  }
}/*# sourceMappingURL=footer.css.map */