.header_wrap {
  height: 68px;
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.5) 0%, rgba(25, 25, 25, 0) 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.5s;
  z-index: 999;
}
.header_wrap.active {
  background: rgba(25, 25, 25, 0.4);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}
.header_wrap .header_area {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}
.header_wrap .header_area .header_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .header_wrap .header_area .header_right {
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}

.logo {
  height: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.link_wrap {
  height: 44px;
  border-radius: 44px;
  padding-left: 20px;
  background: rgba(25, 25, 25, 0.3);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .link_wrap {
    margin-top: 0;
  }
}
.link_wrap .link_list {
  display: flex;
}
.link_wrap .link_list .link_item {
  width: 38px;
  height: 38px;
  padding: 4px;
  box-sizing: border-box;
  margin-left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link_wrap .link_list .link_item:nth-child(1) {
  margin-left: 0;
}
.link_wrap .link_list .link_item a {
  display: flex;
  padding: 7px;
  box-sizing: border-box;
}
.link_wrap .link_list .link_item svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .link_wrap .link_list .link_item:hover svg {
    fill: #D0D0D0;
  }
}

.member_list {
  margin-left: 10px;
}
.member_list.login .login {
  display: block;
}
.member_list.logout .logout {
  display: block;
}
.member_list .member_item {
  width: 44px;
  height: 44px;
  background: rgba(25, 25, 25, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.member_list .member_item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.member_list .member_item svg {
  fill: none;
  display: block;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 768px) {
  .nav_wrap {
    margin-right: 36px;
  }
}
.nav_wrap .nav_list {
  height: 44px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .nav_wrap .nav_list {
    margin-top: 4px;
  }
}
.nav_wrap .nav_list .nav_item {
  margin: 0;
  padding: 0;
  margin-left: 32px;
  position: relative;
}
.nav_wrap .nav_list .nav_item:nth-child(1) {
  margin-left: 0;
}
.nav_wrap .nav_list .nav_item.active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.nav_wrap .nav_list .nav_item a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 7px;
  display: block;
}
.nav_wrap .nav_list .nav_item a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: 0.5s;
  background-color: #fff;
}
.nav_wrap .nav_list .nav_item a:hover::after {
  width: 100%;
}

.footer_wrap {
  background-color: #191919;
  margin-top: 100px;
}
.footer_wrap .footer_icon {
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .footer_wrap .copyright_wrap {
    width: 100%;
  }
}
.footer_wrap .copyright {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #454545;
}
@media screen and (min-width: 1024px) {
  .footer_wrap .copyright {
    font-size: 16px;
    font-size: 1rem;
  }
}
.footer_wrap .copyright a {
  color: #fff;
  text-decoration: none;
}

.icon_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.icon_list .icon_item {
  width: 44px;
  height: 44px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-left: 4px;
}
.icon_list .icon_item:nth-child(1) {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .icon_list .icon_item {
    margin-left: 10px;
  }
}
.icon_list .icon_item a {
  width: 100%;
  height: 100%;
  display: block;
}
.icon_list .icon_item svg path {
  fill: #fff;
}
.icon_list .icon_item:hover svg path {
  fill: #D0D0D0;
}

body {
  background-image: url("../images/main_bg/mask_mobile.jpg");
  background-size: 768px auto;
  background-position: top left;
}
@media screen and (min-width: 1024px) {
  body {
    background-image: url("../images/main_bg/mask.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}

#gotop {
  width: 44px;
  height: 44px;
  background: linear-gradient(90deg, rgba(178, 178, 178, 0.5) 0%, rgba(81, 81, 81, 0.5) 100%);
  background-size: 150% 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: none;
}
#gotop.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
#gotop:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}
#gotop .gotop_img {
  width: 24px;
  height: 24px;
}

.btn_box {
  display: flex;
  justify-content: center;
}
.btn_box .btn {
  line-height: 40px;
  padding: 0 8px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  background: linear-gradient(to right, #B2B2B2, #515151, #B2B2B2, #515151);
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 10px 0 rgba(226, 226, 226, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-weight: 500;
  padding-bottom: 4px;
  margin-left: 40px;
}
.btn_box .btn:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}
.btn_box .btn:nth-child(1) {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .btn_box .btn {
    line-height: 46px;
  }
}

.KV_btnBox {
  margin-bottom: 40px;
  padding: 40px 16px 0;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .KV_btnBox {
    margin-bottom: 50px;
    padding: 50px 16px 0;
  }
}
.KV_btnBox .KV_btn {
  width: calc((100% - 10px) / 2);
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
  line-height: 36px;
}
.KV_btnBox .KV_btn:first-child {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .KV_btnBox .KV_btn {
    margin-left: 80px;
    max-width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .KV_btnBox .KV_btn {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 42px;
  }
}

.title_shadow_style {
  position: relative;
  z-index: 1;
  padding: 60px 0 24px 0;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .title_shadow_style {
    padding: 80px 0 24px 0;
  }
}
.title_shadow_style > .title_name {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5em;
  font-weight: 500;
  padding-right: 50px;
  display: flex;
  color: #2E2E2E;
  border-bottom: 2px solid #E13726;
}
@media screen and (min-width: 1024px) {
  .title_shadow_style > .title_name {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.title_shadow_style > .title_shadow {
  font-size: 44px;
  font-size: 2.75rem;
  color: #D0D0D0;
  filter: blur(2px);
  white-space: nowrap;
  position: absolute;
  top: 40px;
  left: 36px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .title_shadow_style > .title_shadow {
    font-size: 64px;
    font-size: 4rem;
    color: #D0D0D0;
    top: 60px;
    left: 36px;
  }
}

.header_space_wrap {
  height: 118px;
}
@media screen and (min-width: 768px) {
  .header_space_wrap {
    height: 88px;
  }
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.breadcrumb .home {
  width: 22px;
  height: 22px;
}
.breadcrumb .home svg {
  width: 24px;
  height: 24px;
}
.breadcrumb .home a::after {
  display: none !important;
}
.breadcrumb .home:hover svg {
  fill: #D0D0D0;
}
.breadcrumb .breadcrumb_item {
  font-size: 16px;
  font-size: 1rem;
  display: flex;
  position: relative;
  padding: 4px 0;
  margin: 0 40px 0 0;
  white-space: nowrap;
  color: #fff;
  position: relative;
}
.breadcrumb .breadcrumb_item a {
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
.breadcrumb .breadcrumb_item a::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
  bottom: -1px;
  position: absolute;
}
.breadcrumb .breadcrumb_item a:hover::after {
  width: 100%;
}
.breadcrumb .breadcrumb_item::after {
  content: ">";
  display: block;
  position: absolute;
  right: -25px;
  color: #fff;
}
.breadcrumb .breadcrumb_item:last-child {
  border-bottom: 1px solid #fff;
}
.breadcrumb .breadcrumb_item:last-child::after {
  display: none;
}
.breadcrumb.black .breadcrumb_item.home svg {
  fill: #2E2E2E;
}
.breadcrumb.black .breadcrumb_item.home:hover svg {
  fill: #8F8F8F;
}
.breadcrumb.black .breadcrumb_item {
  color: #2E2E2E;
}
.breadcrumb.black .breadcrumb_item a {
  color: #2E2E2E;
}
.breadcrumb.black .breadcrumb_item a::after {
  background-color: #2E2E2E;
}
.breadcrumb.black .breadcrumb_item::after {
  color: #2E2E2E;
}
.breadcrumb.black .breadcrumb_item:last-child {
  border-bottom: 1px solid #2E2E2E;
}/*# sourceMappingURL=main.css.map */