@charset "UTF-8";

/* =================================================
   Footer Common (Base)
   ================================================= */
.footer_bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer_sub_nav {
  margin-bottom: 10px;
}

.footer_sub_nav a {
  color: #a3b3bf;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.footer_sub_nav a:hover {
  color: #b89a5e;
}

.footer_copyright {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #718290;
  letter-spacing: 0.07em;
}

/* =================================================
   Footer Main Layout
   ================================================= */
  .footer {
    background: #2c333a;
    color: #fff;
    border-top: none;
    width: 100%;
  }

/* --- PC Layout (769px~) --- */
@media screen and (min-width: 769px) {
  .footer {
    padding: 60px 0 20px;
  }

  .footer_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

/* --- Tablet & SmallPC Layout (769~1200px) --- */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .footer {
    padding: 60px 0 20px;
  }

  .footer_container {
    gap: 20px;
    max-width: 100%;
    padding: 0 30px;
  }
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer_bottom {
    margin-top: 40px;
  }

  .footer_sub_nav a {
    font-size: 11px;
  }
}

/* =================================================
   Footer Logo
   ================================================= */
/* --- PC Layout (769px~) --- */
@media screen and (min-width: 769px) {
  .footer_logo {
    margin-top: 5px;
  }

  .footer_logo .ja {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18.5px, 18.5px + (20 - 18.5) * ((100vw - 768px) / (1200 - 768)), 20px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .footer_logo .en {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #b89a5e;
    margin-top: 7px;
    line-height: 1.2;
  }
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .footer_logo .ja {
    display: block;
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1;
    -webkit-text-stroke: 0.4px #fff;
  }

  .footer_logo .en {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #b89a5e;
    margin-top: 10px;
    line-height: 1;
  }
}

/* =================================================
   SNS Section
   ================================================= */
/* --- PC Layout (769px~) --- */
@media screen and (min-width: 769px) {
  .sns_ttl {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #a3b3bf;
    margin-bottom: 10px;
  }

  .sns_list {
    display: flex;
    gap: 17px;
    list-style: none;
  }

  .sns_list a {
    color: #fff;
    font-size: 23px;
    font-size: clamp(21px, 21px + (23 - 21) * ((100vw - 768px) / (1200 - 768)), 23px);
    line-height: 1;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
  }

  .sns_list a:hover {
    color: #b89a5e;
    transform: translateY(-2px);
  }
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .footer_sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px 30px;
  }

  .sns_ttl {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #a3b3bf;
    margin-bottom: 10px;
  }

  .sns_list {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .sns_list a {
    color: #fff;
    font-size: 23px;
    line-height: 1;
    text-decoration: none;
  }

  .sns_list a:active {
    color: #b89a5e;
    transform: translateY(-2px);
  }
}

/* =================================================
   Navigation Section
   ================================================= */
/* --- PC Layout (769px~) --- */
@media screen and (min-width: 769px) {
  .footer_nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }

  .footer_nav .nav_row {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    list-style: none;
  }

  .footer_nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
    transition: color 0.3s;
  }

  .footer_nav a:hover {
    color: #b89a5e;
  }
}

/* --- Tablet & SmallPC Layout (769~1200px) --- */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .footer_nav .nav_row {
    gap: 16px;
  }

  .footer_nav a {
    font-size: 13px;
  }
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .footer_nav {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer_nav .nav_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    justify-content: center;
    padding: 0;
    list-style: none;
  }

  .footer_nav .nav_row+.nav_row {
    margin-top: 12px;
  }

  .footer_nav a {
    display: block;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 6px 0;
    color: #fff;
    text-decoration: none;
    word-break: keep-all;
  }

  .footer_nav a:active,
  .footer_sub_nav a:active {
    color: #b89a5e;
  }
}

.footer.delighter {
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.footer.started {
  opacity: 1;
  transform: translateY(0);
}
