@charset "utf-8";

.main_footer {
  background: url("../img/background/tile_bg_02.png") center / contain repeat;
  padding: 75px 20px 0;
}
.main_footer .wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.main_footer .left {
  display: flex;
  gap: 89px;
}
.main_footer ul[class^="menu"] {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.main_footer a {
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 700;
  position: relative;
  width: fit-content;
}
.main_footer a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -3px;
  transition: width 0.3s;
}
.main_footer a:hover:after {
  width: 100%;
}
.main_footer a:hover {
  text-decoration: none;
}
.main_footer .menu01 img {
  width: 24px;
  margin-right: 20px;
}
.main_footer .menu02 {
  color: var(--color-gray);
}
.main_footer .menu02 img {
  width: 11px;
  height: 12px;
  margin-left: 5px;
}
.main_footer .menu02 li:nth-child(n + 2) a {
  font-weight: 500;
  font-family: var(--font-poppins);
}
.main_footer .logo {
  width: 262px;
  margin-bottom: 33px;
}
.main_footer .instagram {
  width: 30px;
  margin: 0 27px 0 auto;
}
.main_footer .instagram:after {
  bottom: -5px;
}
.main_footer .copyright {
  margin: 145px auto 0;
  padding-bottom: 4px;
  color: var(--color-navy04);
  text-align: center;
  font-family: var(--font-noto);
  font-size: 11px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .main_footer .wrap {
    zoom: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .main_footer {
    padding: 60px 0 0;
  }
  .main_footer .wrap {
    zoom: initial;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .main_footer .left {
    order: 1;
    flex-direction: column;
    gap: 52px;
  }
  .main_footer .logo {
    width: 172px;
    margin-bottom: 35px;
  }
  .main_footer .sns {
    position: absolute;
    bottom: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main_footer .instagram {
    margin: 0;
  }
  .main_footer ul[class^="menu"] {
    gap: 20px;
  }
  .main_footer .menu02 li:nth-child(n + 2) a {
    line-height: 26px;
    font-weight: 510;
    font-family: revert;
  }
  .main_footer ul.menu02 {
    width: 302px;
    flex-direction: initial;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  .main_footer .menu02 li:first-child {
    margin-bottom: 22px;
  }
  .main_footer .menu02 li:nth-child(n + 2) a {
    margin-bottom: 12px;
  }
  .main_footer .menu02 li:nth-child(2) {
    margin-right: 16px;
  }
  .main_footer .copyright {
    margin-top: 95px;
  }
}
