@charset "utf-8";

.footer {
  padding-bottom: 48px;
  background-color: #0e1a25;
}
.footer_wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer_top_links_logo {
  transition: opacity 0.15s ease;
}
.footer_top_links_logo_img {
  width: auto;
  height: 34px;
}
.footer_top_links_sns {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.footer_top_links_sns_link {
  margin-right: 16px;
  transition: opacity 0.15s ease;
}
.footer_top_links_sns_link_img {
  width: 20px;
  height: auto;
}
.footer .lang_switch_btn {
  box-sizing: border-box;
  justify-content: space-between;
  width: 148px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border 0.15s ease;
}
.footer .lang_switch_btn_text {
  color: #fff;
}
.footer .lang_switch_btn_arrow::after,
.footer .lang_switch_btn_arrow::before {
  background-color: #fff;
}
.footer .lang_switch_list {
  bottom: 44px;
  right: 0;
  animation: fadeInUp 0.15s ease;
}
.footer_nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.footer_nav_list {
  flex: 1 1 160px;
  max-width: 200px;
  margin: 32px 12px 0 12px;
}
.footer_nav_list_item_link {
  color: #fff;
  line-height: 34px;
  white-space: nowrap;
}
.footer_nav_list_item_link.bold {
  font-size: 15px;
  font-weight: 600;
}
.footer_nav_list_item_link_text {
  position: relative;
}
.footer_nav_list_item_link_text:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}
.footer_copy {
  display: flex;
  align-items: center;
  margin-top: 64px;
}
.footer_copy_text {
  color: #fff;
  font-size: 13px;
}
.footer_copy_separation {
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background-color: rgba(255, 255, 255, 0.3);
}
.footer_copy_privacy {
  color: #fff;
  font-size: 13px;
}
.footer_copy_privacy_text {
  position: relative;
}
.footer_copy_privacy_text:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}
.footer_copy_list {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.footer_copy_list_item {
  display: flex;
  align-items: center;
}
.footer_copy_list_item_link {
  color: #fff;
  font-size: 13px;
}
.footer_copy_list_item_link_text {
  position: relative;
}
.footer_copy_list_item_link_text:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}

@media screen and (max-width: 1040px) {
  .footer {
    padding-bottom: 40px;
  }
  .footer_top_links_logo_img {
    height: 32px;
  }
}

@media screen and (max-width: 960px) {
  .footer_copy_list {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  .footer_top_links_logo:hover {
    opacity: 0.6;
  }
  .footer_top_links_sns_link:hover {
    opacity: 0.6;
  }
  .footer .lang_switch_btn:hover {
    border: 1px solid rgba(255, 255, 255, 1);
    opacity: 1;
  }
  .footer_nav_list_item_link:hover .footer_nav_list_item_link_text:after {
    transform: none;
  }
  .footer_copy_privacy:hover .footer_copy_privacy_text:after {
    transform: none;
  }
  .footer_copy_list_item_link:hover .footer_copy_list_item_link_text:after {
    transform: none;
  }
}

@media screen and (max-width: 640px) {
  .footer_wrapper {
    padding: 0 20px;
  }
  .footer_top {
    padding-bottom: 8px;
  }
  .footer_top_links_logo_img {
    height: 28px;
  }
  .footer_nav {
    margin: 0 -6px;
  }
  .footer_nav_list {
    margin: 24px 6px 0 6px;
  }
  .footer_copy {
    margin-top: 40px;
  }
}

@media screen and (max-width: 370px) {
  .footer_top {
    display: block;
  }
  .footer .lang_switch {
    margin-top: 32px;
  }
}
