@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");
@font-face {
  font-family: 'Catamaran', sans-serif;
  src: url("font/static/Catamaran-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Catamaran', sans-serif;
  src: url("font/static/Catamaran-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Catamaran', sans-serif;
  src: url("font/static/Catamaran-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Catamaran', sans-serif;
  src: url("font/static/Catamaran-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'Catamaran', sans-serif;
  src: url("font/static/Catamaran-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Catamaran', sans-serif;
  src: url("font/static/Catamaran-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3rem;
  color: #222;
  overscroll-behavior: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 2.3rem;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  line-height: 2rem;
  font-weight: 500;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 500;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #222;
  cursor: default;
}

a:link {
  color: #222;
  text-decoration: none;
}

a:visited {
  color: #222;
}

a:hover {
  color: #222;
}

a:active {
  color: #222;
}

button {
  border: none;
  background-color: transparent;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  width: 50px;
}

ul li {
  list-style: none;
}

video {
  width: 100%;
}

input,
select,
option,
textarea {
  font-family: 'Montserrat', sans-serif;
}

input,
select,
textarea {
  outline: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#js-weather {
  width: 240px;
  height: 100px;
  border: 1px solid gray;
}

.weatherinfo {
  text-align: center;
  margin-top: 140px;
  font-size: 24px;
  border: 1px solid gray;
}

.weatherinfo > div:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
}

.weatherinfo .CurrIcon {
  width: 26px;
  height: 26px;
}

.weatherinfo .CurrTemp {
  font-size: 34px;
  margin-left: 10px;
  line-height: 26px;
  font-weight: 700;
}

.weatherinfo .City {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.fa-sun {
  color: #f55a17;
}

.fa-cloud-sun {
  color: #aaa;
}

.fa-cloud {
  color: #474747;
}

.fa-cloud-meatball {
  color: #454545;
}

.bodyscroll {
  overflow: hidden;
}

header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header:hover, header:active, header:focus {
  background-color: white;
}

@media (min-width: 1041px) {
  header {
    background-color: white;
  }
}

header.topFixed {
  background-color: white;
}

header.openWhite {
  background-color: white;
}

.header_container {
  padding: 0 40px;
}

@media (min-width: 1200px) {
  .header_container {
    width: 1200px;
    margin: 0 auto;
  }
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logoBox a {
  display: block;
  width: 150px;
  height: 70px;
  background: url("../img/logo/logo_blue.png") no-repeat;
  background-position: right center;
  background-size: 150px 30px;
  cursor: pointer;
}

.logoBox span {
  visibility: hidden;
}

@media (max-width: 1040px) {
  .navWrapper {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #eee;
    border-top: 1px solid #eee;
    padding: 40px 0 80px 0;
    position: fixed;
    overflow-y: auto;
    z-index: 90;
  }
}

@media (min-width: 1041px) {
  .navWrapper {
    display: block !important;
  }
}

@media (min-width: 1041px) {
  .mainmenu > li {
    display: inline-block;
  }
  .mainmenu > li:not(:last-child) {
    margin-right: 20px;
  }
}

.mainmenu .men .menu_title {
  cursor: pointer;
}

@media (max-width: 1040px) {
  .menu_title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 40px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .menu_title:hover {
    background-color: white;
  }
}

@media (min-width: 1041px) {
  .menu_title {
    display: block;
    line-height: 70px;
    position: relative;
  }
  .menu_title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 0px;
    height: 2px;
    border-radius: 50%;
    background-color: #0070d2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media (max-width: 1040px) {
  .menu_title.openTitle {
    background: url("../img/icon/up-arrow.png") no-repeat;
    background-position: calc(100% - 40px) center;
    background-size: 18px 18px;
    color: #0070d2;
  }
}

@media (min-width: 1041px) {
  .menu_title.openTitle {
    color: #0070d2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu_title.openTitle::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 100%;
    height: 2px;
    border-radius: 20px;
    background-color: #0070d2;
  }
}

.customerCare .menu_title {
  background: none;
  cursor: pointer;
}

.customerCare .menu_title:hover {
  background-color: white;
}

.customerCare .menu_title::before {
  content: "";
  display: none;
}

@media (max-width: 1040px) {
  .submenu {
    display: none;
  }
}

@media (min-width: 1041px) {
  .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 10;
    width: 100%;
    height: auto;
    background-color: white;
    border-bottom: 1px solid #828282;
  }
}

@media (min-width: 1041px) {
  .sub_wrapper {
    padding: 80px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .sub_wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 1040px) {
  .subsum li {
    padding: 20px 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .subsum li:hover {
    background-color: white;
  }
}

@media (min-width: 1041px) {
  .subsum li {
    padding-bottom: 20px;
    font-weight: 700;
  }
}

@media (max-width: 1040px) {
  .subcon > li > a {
    display: block;
    padding: 20px 40px 10px 40px;
    color: #666;
    font-weight: 700;
  }
  .subcon > li ul li {
    padding: 10px 40px;
  }
  .subcon > li ul li:hover {
    background-color: white;
  }
}

@media (min-width: 1041px) {
  .subcon > li > a {
    display: block;
    margin-bottom: 20px;
    color: #666;
    font-weight: 700;
  }
  .subcon > li ul li {
    margin-bottom: 10px;
  }
  .subcon > li ul li a {
    position: relative;
  }
  .subcon > li ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #222;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .subcon > li ul li a:hover::before {
    width: 100%;
  }
}

.subimg li {
  position: relative;
}

.subimg a {
  display: block;
  width: 367px;
  height: 367px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 367px 367px;
  background-position: center;
}

.subimg span {
  position: relative;
  bottom: 40px;
  left: 20px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  position: relative;
}

.subimg span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.subimg span:hover::before {
  width: 100%;
}

@media (max-width: 1040px) {
  .subimg {
    display: none;
  }
}

.men .subimg a {
  background: url("../img/nav_men.jpeg") no-repeat;
  background-size: 367px 367px;
  background-position: center;
}

.men .subimg a:hover {
  background-size: 400px 400px;
}

.women .subimg a {
  background: url("../img/nav_women.png") no-repeat;
  background-size: 367px 367px;
  background-position: center;
}

.women .subimg a:hover {
  background-size: 400px 400px;
}

.kids .subimg a {
  background: url("../img/nav_kids.png") no-repeat;
  background-size: 367px 367px;
  background-position: center;
}

.kids .subimg a:hover {
  background-size: 400px 400px;
}

.foot .subimg a {
  background: url("../img/nav_foot.png") no-repeat;
  background-size: 367px 367px;
  background-position: center;
}

.foot .subimg a:hover {
  background-size: 400px 400px;
}

.act .subimg a {
  background: url("../img/nav_activity.png") no-repeat;
  background-size: 367px 367px;
  background-position: center;
}

.act .subimg a:hover {
  background-size: 400px 400px;
}

.sale .subimg a {
  background: url("../img/nav_sale.png") no-repeat;
  background-size: 367px 367px;
  background-position: center;
}

.sale .subimg a:hover {
  background-size: 400px 400px;
}

.gnb_mobileInner_utility a {
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px 40px;
}

.gnb_mobileInner_utility a:hover {
  background-color: white;
}

@media (min-width: 1041px) {
  .gnb_mobileInner_utility {
    display: none;
  }
}

.header_utility {
  display: none;
}

@media (min-width: 1041px) {
  .header_utility {
    display: block;
  }
}

.header_utility_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inputBox {
  width: auto;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.inputBox > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eee;
  border-radius: 50px;
  padding: 2px;
}

.inputBox span {
  display: block;
  width: 40px;
  height: 30px;
  background: url("../img/icon/search.png") no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

.inputBox input {
  display: block;
  width: 0px;
  height: 30px;
  border: none;
  background-color: transparent;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  font-size: 16px;
}

.inputBox input::-webkit-input-placeholder {
  color: #111;
}

.inputBox input:-ms-input-placeholder {
  color: #111;
}

.inputBox input::-ms-input-placeholder {
  color: #111;
}

.inputBox input::placeholder {
  color: #111;
}

.inputBox input.inputActive {
  width: 140px !important;
}

@media (max-width: 1040px) {
  .profile_box {
    display: none;
  }
}

@media (min-width: 1041px) {
  .profile_box {
    display: block;
  }
}

.profile_wrapper {
  margin-left: 10px;
  position: relative;
}

.profile_wrapper > a {
  display: block;
  width: 40px;
  height: 70px;
  background: url("../img/icon/profile.png") no-repeat;
  background-position: center center;
  background-size: 24px 24px;
  cursor: pointer;
}

.profile_wrapper span {
  visibility: hidden;
}

.profile_submenu {
  display: none;
  position: absolute;
  z-index: 10;
  top: 70px;
  right: 0;
  width: 240px;
  height: auto;
  background-color: white;
  padding: 20px;
}

.profile_submenu a {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 20px 0 40px;
  margin: 10px 0;
}

.profile_submenu a:nth-child(1) {
  background: url("../img/icon/login.png") no-repeat;
  background-position: left center;
  background-size: 24px 24px;
}

.profile_submenu a:nth-child(2) {
  background: url("../img/icon/heart.png") no-repeat;
  background-position: left center;
  background-size: 24px 24px;
}

.profile_submenu a:nth-child(3) {
  background: url("../img/icon/bag.png") no-repeat;
  background-position: left center;
  background-size: 24px 24px;
}

.profile_submenu a:nth-child(4) {
  background: url("../img/icon/location.png") no-repeat;
  background-position: left center;
  background-size: 24px 24px;
}

@media (max-width: 1040px) {
  .header_utility_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1041px) {
  .header_utility_mobile {
    display: none;
  }
}

.search_mobile {
  width: 40px;
  height: 70px;
  background: url("../img/icon/search.png") no-repeat;
  background-position: center center;
  background-size: 30px 30px;
  cursor: pointer;
}

.search_mobile span {
  visibility: hidden;
}

.searhWindow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #828282;
  z-index: 90;
  display: none;
}

.searhWindow_wrapper {
  padding: 80px 40px;
  position: relative;
}

@media (min-width: 1200px) {
  .searhWindow_wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}

.search_inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  background-color: #eee;
}

.search_inputBox input {
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: none;
  padding: 0 20px;
}

.search_inputBox button {
  background-color: #0070d2;
  color: white;
  border-radius: 0 50px 50px 0;
  padding: 0 20px;
}

@media (min-width: 1041px) {
  .search_inputBox input {
    height: 60px;
    padding: 0 40px;
  }
  .search_inputBox button {
    padding: 0 40px;
  }
}

.popularSearch {
  padding-top: 40px;
}

.popularSearch p {
  margin-bottom: 20px;
  font-weight: 700;
  color: #aaa;
}

.popularSearch ul li {
  margin: 10px 20px;
  opacity: 0;
  -webkit-animation: upDown 1.5s alternate;
          animation: upDown 1.5s alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.popularSearch ul li:nth-child(1) {
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popularSearch ul li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popularSearch ul li:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popularSearch ul li:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popularSearch ul li:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popularSearch ul li:nth-child(6) {
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes upDown {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.searchClose {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 50px;
  height: 50px;
  background-color: #0070d2;
  border-radius: 50%;
  background-image: url("../img/icon/close-white.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

.searchClose span {
  visibility: hidden;
}

.navBtn {
  margin-left: 10px;
}

.navBtn button {
  width: 30px;
  height: 40px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navBtn button span {
  position: absolute;
  width: 30px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #111;
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navBtn button .navline1 {
  top: 8px;
}

.navBtn button .navline2 {
  top: 18px;
}

.navBtn button .navline3 {
  bottom: 8px;
}

.navBtn.openNav .navline1 {
  top: 20px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.navBtn.openNav .navline2 {
  opacity: 0;
}

.navBtn.openNav .navline3 {
  top: 20px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

@media (min-width: 1041px) {
  main {
    margin-top: 70px;
  }
}

.main_wrapper {
  width: 100%;
}

@media (max-width: 1040px) {
  .main_wrapper {
    height: 100vh;
  }
}

@media (min-width: 1041px) {
  .main_wrapper {
    height: 680px;
  }
}

.main_slide {
  position: relative;
  width: 100%;
}

@media (max-width: 1040px) {
  .main_slide {
    height: 100vh !important;
  }
}

@media (min-width: 1041px) {
  .main_slide {
    height: 680px !important;
  }
}

.m1 {
  background: url("../img/main/main_bg_01_mobile.jpeg");
  background-position: center;
  background-size: cover;
}

@media (min-width: 1041px) {
  .m1 {
    background: url("../img/main/main_bg_01.jpg") no-repeat;
    background-position: 60% 50%;
    background-size: cover;
  }
}

.m2 {
  background: url("../img/main/main_bg_02_mobile.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 1041px) {
  .m2 {
    background: url("../img/main/main_bg_02.jpg") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
}

.m3 {
  background: url("../img/main/main_bg_04_mobile.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 1041px) {
  .m3 {
    background: url("../img/main/main_bg_04.jpg") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
}

.main_swiper .swiper-button-next,
.main_swiper .swiper-button-prev {
  color: #474747;
  background-color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main_swiper .swiper-button-next::before,
.main_swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.main_swiper .swiper-button-next:hover::before,
.main_swiper .swiper-button-prev:hover::before {
  width: 120%;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1040px) {
  .main_swiper .swiper-button-next {
    top: 60%;
  }
}

@media (min-width: 1200px) {
  .main_swiper .swiper-button-next {
    right: 40px;
  }
}

@media (max-width: 1040px) {
  .main_swiper .swiper-button-prev {
    top: 60%;
  }
}

@media (min-width: 1200px) {
  .main_swiper .swiper-button-prev {
    left: 40px;
  }
}

.main_swiper .swiper-button-next::after,
.main_swiper .swiper-button-prev::after {
  font-size: 20px;
}

.main_swiper .swiper-pagination {
  width: 240px !important;
  height: 2px !important;
  bottom: 100px !important;
  top: auto !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.main_swiper .swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 10px;
}

.main_swiper .swiper-pagination-progressbar-fill {
  border-radius: 10px;
  height: 2px !important;
  background: #666 !important;
}

.main-copy {
  position: absolute;
  color: white;
  text-align: center;
  width: 100%;
}

.main-copy h3 {
  font-weight: 800;
  opacity: 0;
}

.main-copy h1 {
  font-weight: 800;
  opacity: 0;
  margin: 10px 0 18px 0;
}

.main-copy p {
  margin: 10px 0 40px 0;
  opacity: 0;
}

.main-copy button {
  display: inline-block;
  padding: 10px 20px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  position: relative;
  color: white;
  z-index: 2;
  opacity: 0;
}

.main-copy button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-copy button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-copy button:hover::after, .main-copy button:hover::before {
  height: 100%;
}

@media (max-width: 1040px) {
  .main-copy {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .main-copy h3 {
    font-size: calc(4vw + 5px);
    line-height: calc(4vw + 5px);
  }
  .main-copy h1 {
    font-size: calc(5vw + 10px);
    line-height: calc(5vw + 10px);
  }
  .main-copy p {
    font-size: calc(3vw + 1px);
    line-height: calc(3vw + 1px);
  }
}

@media (min-width: 1041px) {
  .main-copy {
    padding: 0 40px;
    text-align: left;
    top: 180px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .main-copy h3 {
    font-size: 28px;
  }
  .main-copy h1 {
    font-size: 64px;
  }
  .main-copy p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .main-copy {
    width: 1200px;
  }
}

.main_slide.swiper-slide-active .main-copy h3 {
  -webkit-animation: fade-show-right 1s;
          animation: fade-show-right 1s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.main_slide.swiper-slide-active .main-copy h1 {
  -webkit-animation: fade-show-right 1s;
          animation: fade-show-right 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.main_slide.swiper-slide-active .main-copy p {
  -webkit-animation: fade-show-right 1s;
          animation: fade-show-right 1s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.main_slide.swiper-slide-active .main-copy button {
  -webkit-animation: fade-show-right 1s;
          animation: fade-show-right 1s;
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-show-right {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-show-right {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.ranking {
  position: relative;
}

.ranking_container {
  padding: 140px 40px;
  position: relative;
}

@media (min-width: 1200px) {
  .ranking_container {
    width: 1200px;
    margin: 0 auto;
  }
}

.rank_titleBox {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 1040px) {
  .rank_titleBox {
    display: block;
  }
}

.rankTime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 40px;
  border: 1px solid gray;
  border-radius: 50px;
  padding: 10px 20px;
}

@media (max-width: 1040px) {
  .rankTime {
    margin-top: 20px;
  }
}

.rankTime span {
  margin-right: 10px;
  font-weight: 700;
  color: #0070d2;
}

.rank_swiper_container {
  position: relative;
}

.rank_swiper_container #rankNext {
  right: -38px;
}

.rank_swiper_container #rankPrev {
  left: -38px;
}

.rank_swiper_container .swiper-button-next,
.rank_swiper_container .swiper-button-prev {
  color: #474747;
  background-color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rank_swiper_container .swiper-button-next::before,
.rank_swiper_container .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(230, 230, 230, 0.5);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rank_swiper_container .swiper-button-next:hover::before,
.rank_swiper_container .swiper-button-prev:hover::before {
  width: 120%;
  height: 120%;
  background-color: #e6e6e6;
}

@media (min-width: 1200px) {
  .rank_swiper_container .swiper-button-next {
    right: 40px;
  }
}

@media (min-width: 1200px) {
  .rank_swiper_container .swiper-button-prev {
    left: 40px;
  }
}

.rank_swiper_container .swiper-button-next::after,
.rank_swiper_container .swiper-button-prev::after {
  font-size: 20px;
}

.rank_swiper {
  position: static;
}

.rank_swiper .swiper-pagination {
  display: none !important;
}

.rank_swiper .swiper-wrapper .rank_slide:nth-child(1) a {
  cursor: pointer;
}

.rankNum {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 10px;
  position: relative;
}

.rankNum::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: #222;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rankNum::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: #222;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rank_product,
.arrive_product {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.rank_product img,
.arrive_product img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.img2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.rank_product:hover .img2,
.arrive_product:hover .img2 {
  opacity: 1;
}

.rank_product:hover .img1,
.arrive_product:hover .img1 {
  opacity: 0;
}

.rankbox:hover .rankNum::after,
.rankbox:hover .rankNum::before {
  width: 40px;
}

.like {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 10px;
  background: url("https://api.iconify.design/bi/heart.svg?color=%23333") no-repeat;
  background-position: center;
  background-size: 24px 24px;
  cursor: pointer;
}

.like span {
  visibility: hidden;
}

.like.liked {
  background: url("https://api.iconify.design/bi/heart-fill.svg?color=red") no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.rank_copy {
  text-align: center;
}

.rank_copy p {
  font-weight: 600;
}

.video {
  scroll-margin-top: 0;
}

.video_wrapper {
  position: relative;
}

.videoBox {
  width: 100%;
  height: 640px;
}

@media (max-width: 1040px) {
  .videoBox video:nth-child(1) {
    display: none;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .videoBox video:nth-child(2) {
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 640px;
  }
}

@media (min-width: 1041px) {
  .videoBox video:nth-child(1) {
    display: block;
    width: 100%;
    height: 640px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .videoBox video:nth-child(2) {
    display: none;
  }
}

.video-copy {
  width: 100%;
  padding: 0 40px;
  position: absolute;
  left: 50%;
  top: 30%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: white;
}

.video-copy > span {
  font-size: 18px;
}

.video-copy h3 {
  font-size: 32px;
  margin: 10px 0;
}

.video-copy h2 {
  font-size: 48px;
  margin-bottom: 80px;
}

.video-copy button {
  color: white;
  padding: 10px 20px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video-copy button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video-copy button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video-copy button:hover::after, .video-copy button:hover::before {
  height: 100%;
}

@media (max-width: 1040px) {
  .video-copy > span {
    font-size: calc(3vw + 1px);
    line-height: calc(3vw + 1px);
  }
  .video-copy h3 {
    font-size: calc(4vw + 5px);
    line-height: calc(4vw + 5px);
  }
  .video-copy h2 {
    font-size: calc(5vw + 10px);
    line-height: calc(5vw + 10px);
  }
}

.grid_container {
  padding: 140px 40px;
}

@media (min-width: 1200px) {
  .grid_container {
    width: 1200px;
    margin: 0 auto;
  }
}

.grid_titleBox {
  margin-bottom: 40px;
}

@media (min-width: 1041px) {
  .grid_titleBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.arrival {
  width: 120px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #b3b3b3;
  border-radius: 50px;
  padding: 0 14px;
  line-height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1040px) {
  .arrival {
    margin-top: 20px;
  }
}

.arrival:hover {
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(179, 179, 179, 0);
}

#newNum {
  display: block;
  width: 30px;
  height: 40px;
  background: url("../img/icon/reload.png") no-repeat;
  background-position: left center;
  background-size: 20px 20px;
  cursor: pointer;
}

#arrivalNum {
  font-size: 18px;
  font-weight: 700;
  color: #0070d2;
}

@media (min-width: 1041px) {
  .tabWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tabSwiper {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 18px;
  border-right: 1px solid #eee;
}

.tabSwiper li {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .tabSwiper li {
    line-height: 70px;
    text-align: center;
  }
  .tabSwiper li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media (min-width: 1041px) {
  .tabSwiper {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .tabSwiper li {
    width: auto !important;
    height: auto !important;
    text-align: left;
    line-height: 2.6rem;
  }
  .tabSwiper li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.tabSwiper .swiper-slide-thumb-active {
  color: #0070d2;
}

.tabSwiper .swiper-slide-thumb-active::after {
  content: "";
  width: 100%;
  background-color: #0070d2;
}

.tabCon .swiper-button-next,
.tabCon .swiper-button-prev {
  color: #474747;
  background-color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tabCon .swiper-button-next::before,
.tabCon .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(230, 230, 230, 0.5);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tabCon .swiper-button-next:hover::before,
.tabCon .swiper-button-prev:hover::before {
  width: 120%;
  height: 120%;
  background-color: #e6e6e6;
}

.tabCon .swiper-button-next::after,
.tabCon .swiper-button-prev::after {
  font-size: 20px;
}

@media (max-width: 1040px) {
  .feature {
    width: 100%;
    height: 640px;
  }
}

@media (max-width: 1040px) {
  .feature {
    width: 100%;
    height: 640px;
  }
}

@media (max-width: 1040px) {
  .feature_container {
    width: 100%;
    height: 640px;
    background: url("../img/feature/feature_mobile.png") no-repeat;
    background-position: 50% bottom;
    background-size: cover;
  }
}

@media (min-width: 1041px) {
  .feature_container {
    width: 100%;
    height: 640px;
    background: url("../img/feature/feature_pc.png") no-repeat;
    background-position: 50% bottom;
    background-size: cover;
  }
}

.feature_bg {
  position: relative;
  height: 640px;
}

@media (min-width: 1200px) {
  .feature_bg {
    width: 1200px;
    margin: 0 auto;
  }
}

.feature_content {
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.feature_copy {
  color: white;
  margin-bottom: 30px;
}

@media (max-width: 1040px) {
  .feature_product img {
    width: 240px;
    height: 240px;
  }
}

@media (min-width: 1041px) {
  .feature_product img {
    width: 280px;
    height: 280px;
  }
}

.feature_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px auto;
}

.feature_icon img {
  display: block;
  margin: 0 4px;
  width: 24px;
  height: 24px;
}

.feature_info {
  width: 100%;
  color: white;
}

.feature_info h3 {
  line-height: 40px;
}

.feature_info img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 40px;
}

.feature_info button {
  margin-top: 20px;
  display: inline-block;
  width: 140px;
  height: 50px;
  padding: 10px 20px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  position: relative;
  color: white;
  z-index: 2;
}

.feature_info button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.feature_info button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.feature_info button:hover::after, .feature_info button:hover::before {
  height: 100%;
}

.event {
  padding: 140px 40px 0 40px;
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .event {
    width: 1200px;
    margin: 0 auto;
  }
}

.timeLeft {
  text-align: center;
  margin-bottom: 40px;
}

.timeLeft h6 {
  color: #666;
  font-size: 12px;
  margin-bottom: 5px;
}

.time_title {
  margin-bottom: 40px;
}

.time_title p {
  padding: 8px 0 14px 0;
  width: 60%;
  margin: 0 auto;
}

.remaining {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid #aaa;
  width: 320px;
  margin: 0 auto;
}

.remaining div {
  margin: 0 5px;
}

.remaining span {
  font-size: 15px;
  font-weight: 400;
  color: #474747;
}

@media (max-width: 1040px) {
  .eventBox {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

@media (min-width: 1041px) {
  .eventBox {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

.eventBox a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.eventBox a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.eventBox a:hover::after {
  background-color: rgba(0, 0, 0, 0);
}

.eventBox a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.eventBox a img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.event-copy {
  position: absolute;
  bottom: 40px;
  color: white;
  z-index: 5;
  padding: 0 30px;
}

.event-copy h2 {
  font-size: 24px;
}

.event-copy button {
  margin-top: 20px;
  display: inline-block;
  height: 50px;
  padding: 10px 20px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  position: relative;
  color: white;
  z-index: 2;
}

.event-copy button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.event-copy button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.event-copy button:hover::after, .event-copy button:hover::before {
  height: 100%;
}

.inspo_container {
  padding: 140px 40px 0 40px;
}

@media (min-width: 1200px) {
  .inspo_container {
    width: 1200px;
    margin: 0 auto;
  }
}

.inscopy {
  text-align: center;
  margin-bottom: 40px;
}

.inscopy span {
  text-transform: uppercase;
}

.inspo_wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
  grid-gap: 10px;
}

.inspo_wrapper a {
  position: relative;
  opacity: 0;
}

.inspo_wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-position: 50% 48%;
  -webkit-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
}

.inspo_wrapper a:hover::after {
  background-image: url("https://api.iconify.design/ant-design/instagram-outlined.svg?color=white");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-color: rgba(0, 0, 0, 0.3);
}

.inspo_wrapper a,
.inspo_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}

.inspo_wrapper a:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.inspo_wrapper a:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.inspo_wrapper a:nth-child(3) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.inspo_wrapper a:nth-child(4) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-column: 4/6;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}

.inspo_wrapper a:nth-child(5) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
}

.inspo_wrapper a:nth-child(6) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

.inspo_wrapper a:nth-child(7) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.inspo_wrapper a:nth-child(8) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.inspo_wrapper a:nth-child(9) {
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5/6;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.newsletter {
  padding: 140px 40px;
}

@media (min-width: 1200px) {
  .newsletter {
    width: 1200px;
    margin: 0 auto;
  }
}

.news_container {
  position: relative;
  text-align: center;
}

@media (min-width: 1041px) {
  .news_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.news-copy {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-copy h3 {
  font-weight: 800;
  margin: 10px 0 5px 0;
  text-transform: uppercase;
}

.news-copy button {
  margin-top: 40px;
  width: 210px;
  padding: 10px 20px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.news-copy button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-copy button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
  background-color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-copy button:hover::after, .news-copy button:hover::before {
  height: 100%;
}

@media (min-width: 1041px) {
  .news-copy {
    margin-left: 20px;
  }
}

.email_icon {
  -webkit-animation-name: up-down;
          animation-name: up-down;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.news_bg img {
  width: 100%;
}

@media (max-width: 1040px) {
  .news_bg {
    display: none;
  }
}

.shop_info {
  border-top: 1px solid #cdcdcd;
}

.info_container {
  padding: 60px 40px;
}

@media (min-width: 1200px) {
  .info_container {
    width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 1040px) {
  .info_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 20px 0;
  }
}

@media (min-width: 1041px) {
  .info_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 20px;
  }
}

.info_box {
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1040px) {
  .info_box {
    padding: 20px 0;
  }
}

.info_box p {
  margin: 10px 0;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info_box a {
  width: 92px;
  display: inline-block;
  position: relative;
}

.info_box a::before {
  content: '';
  border-bottom: solid 1px black;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.info_box a:hover::before {
  width: 100%;
}

@media (max-width: 1040px) {
  .info_box:not(:last-child) {
    border-bottom: 1px solid #cdcdcd;
  }
}

@media (min-width: 1041px) {
  .info_box:not(:last-child) {
    border-right: 1px solid #cdcdcd;
  }
}

.contact h4 {
  font-weight: 500;
  font-size: 16px;
  padding-left: 30px;
  background: url("../img/icon/contact.png") no-repeat;
  background-position: left center;
  background-size: 20px 20px;
}

.customer h4 {
  font-weight: 500;
  font-size: 17px;
  padding-left: 30px;
  background: url("../img/icon/service.png") no-repeat;
  background-position: left center;
  background-size: 20px 20px;
}

.gift h4 {
  font-weight: 500;
  font-size: 17px;
  padding-left: 30px;
  background: url("../img/icon/gift.png") no-repeat;
  background-position: left center;
  background-size: 20px 20px;
}

.store h4 {
  font-weight: 500;
  font-size: 17px;
  padding-left: 30px;
  background: url("../img/icon/store.png") no-repeat;
  background-position: left center;
  background-size: 20px 20px;
}

footer {
  background-color: #111;
  font-size: 14px;
}

.footer_container {
  padding: 80px 40px;
}

@media (min-width: 1200px) {
  .footer_container {
    width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 1041px) {
  .footer_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 20px;
    -ms-grid-rows: 1fr 140px;
        grid-template-rows: 1fr 140px;
  }
}

.social_mail {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.mail {
  color: #cdcdcd;
}

.mail h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #7b7b7b;
  margin-bottom: 10px;
}

.mail div {
  margin-top: 12px;
}

.mail div input {
  color: #cdcdcd;
  width: 250px;
  height: 40px;
  border: none;
  border-bottom: 1px solid #cdcdcd;
  background-color: transparent;
}

.mail div input::-webkit-input-placeholder {
  color: #cdcdcd;
}

.mail div input:-ms-input-placeholder {
  color: #cdcdcd;
}

.mail div input::-ms-input-placeholder {
  color: #cdcdcd;
}

.mail div input::placeholder {
  color: #cdcdcd;
}

.social {
  margin-top: 30px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social a:not(:last-child) {
  margin-right: 10px;
}

.social a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social a:hover path {
  fill: #0284C5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footerNav {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  padding-bottom: 40px;
}

.footer_inner li {
  margin: 10px 0;
}

.footer_inner li a {
  color: #cdcdcd;
  position: relative;
}

.footer_inner li a::before {
  content: '';
  border-bottom: solid 1px #cdcdcd;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer_inner li a:hover::before {
  width: 100%;
}

.mobile_footerNav_container {
  padding-top: 40px;
  display: block;
}

@media (min-width: 1041px) {
  .mobile_footerNav_container {
    display: none;
  }
}

.mobile_footerNav .mobile_footer_ul a {
  cursor: auto;
}

.mobile_footerNav .mobile_footer_ul span {
  padding: 16px 0;
  color: white;
  font-weight: 600;
  display: block;
  background: url("../img/icon/down-arrow-white.png") no-repeat;
  background-position: right center;
  background-size: 18px 18px;
  border-bottom: 1px solid #343434;
  cursor: pointer;
}

.mobile_footerNav .footer_inner {
  display: none;
}

.mobile_footerNav .mobile_footer_ul span.mfooter_open {
  background: url("../img/icon/up-arrow-white.png") no-repeat;
  background-position: right center;
  background-size: 18px 18px;
  border-bottom: none;
}

.pc_footerNav_container {
  display: block;
}

@media (max-width: 1040px) {
  .pc_footerNav_container {
    display: none;
  }
}

.pc_footerNav ul span {
  color: #7b7b7b;
  margin-bottom: 10px;
}

.pc_footerNav ul a {
  cursor: auto;
}

.pc_footerNav > ul:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.legal {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/5;
  margin-top: 40px;
  color: #cdcdcd;
}

.legal ul li {
  display: inline-block;
  margin-right: 10px;
}

.legal ul li a {
  color: #cdcdcd;
}

.legal ul li a:hover {
  text-decoration: underline;
}

.topBtn {
  position: fixed;
  right: 4%;
  bottom: 4%;
  z-index: 10;
  width: 50px;
  height: 50px;
  background-color: #a4a4a4;
  background-image: url("../img/icon/up-arrow-white.png");
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */