/* ------------------------------
   Footer layout (Grid)
------------------------------ */

.site-footer {
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 228, 235, 0.45) 0%,   /* soft pink */
    rgba(235, 240, 255, 0.45) 60%,  /* pale blue */
    rgba(255, 255, 255, 0.85) 100%  /* fade to white */
  );
}

.footer-inner {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

/* Grid: SP 1 column */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  align-items: start;
}

/* PC: 3 columns */
@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

/* ------------------------------
   Column base
------------------------------ */

.footer-col {
  display: block;
  min-width: 0;
}

.footer-title {
  margin: 0 0 16px;
}

/* ------------------------------
   List reset
------------------------------ */

.site-footer ul,
.site-footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links__group ul {
  margin-top: 8px;
}

/* ------------------------------
   Footer link labels vs items
------------------------------ */

.footer-links__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.65;
  margin-bottom: 10px;
  padding-bottom: 6px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.footer-links__group ul li a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.footer-links__group ul li + li {
  margin-top: 6px;
}

/* Space between SNS and ONLINE SHOP groups */
.footer-links__group + .footer-links__group {
  margin-top: 20px;
  padding-top: 6px;
  
}

/* ------------------------------
   Footer bottom
------------------------------ */

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  width: 100%;
  text-align: left;
  clear: both;
}

.footer-copyright {
  margin: 0;
}


/* ------------------------------
   Brand logos (horizontal)
------------------------------ */

.footer-brand__list {
  display: flex;
  align-items: center;
  gap: 24px;            /* space between logos */
}

.footer-brand__item {
  display: flex;
  align-items: center;
}

.footer-brand__image {
  display: block;
  max-height: 80px;     /* control logo height */
  width: auto;
}


/* ------------------------------
   SNS icons (Instagram / YouTube)
------------------------------ */

.footer-sns-list .sns-link {
  position: relative;
  padding-left: 24px; /* space for icon */
}

.footer-sns-list .sns-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-sns-list .sns-link--instagram::before {
  background-image: url('/static/img/footer/icon_instagram.svg');
}

.footer-sns-list .sns-link--youtube::before {
  background-image: url('/static/img/footer/icon_youtube.svg');
}