@font-face {
  font-family: "CorporateLogo";
  font-display: swap;
  src: url("/tax-free/assets/Corporate-Logo-Rounded.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

#lp-content {
  padding: 0;
}
#lp-content .lp-content__postContent {
  padding: 0;
}

#tax-free {
  line-height: 1;
  background-color: #85D7D2;
  background-image: url("/tax-free/assets/vv-back.png");
  color: #2A6873;
  font-family: "CorporateLogo", "sans-serif";
}
#tax-free img {
  width: 100%;
}
#tax-free .header {
  display: flex;
  background-color: #85D7D2;
  padding: 15px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid #FFFFFF;
}
#tax-free .header__notice-block {
  padding: 10px;
  background-color: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  font-size: 12px;
}
#tax-free .header__logo {
  min-width: 30%;
  max-width: 30%;
}
#tax-free .header__notice {
  min-width: 30%;
  max-width: 50%;
}
#tax-free .header__notice-text {
  white-space: nowrap;
  animation: flowtext 10s linear infinite;
}
@keyframes flowtext {
  100% {
    transform: translateX(-50%);
  }
}
#tax-free .contents {
  margin: 20px;
}
#tax-free .menu {
  margin: 40px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 4%;
}
#tax-free .menu__item {
  width: 48%;
  text-decoration: none;
}
#tax-free .menu__item-box {
  padding: 10px;
  padding-left: 20px;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 4px 5px 0px 0px #2A6873;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#tax-free .menu__item-text {
  font-size: 1rem;
  text-wrap: nowrap;
  color: #2A6873;
}
#tax-free .menu__item-icon {
  margin-left: 10px;
}
#tax-free .menu__item-icon img {
  width: auto;
  aspect-ratio: 1;
  height: 2rem;
}
#tax-free .section {
  margin-top: 60px;
}
#tax-free .section__title {
  background-color: white;
  text-align: center;
  padding: 25px;
  font-size: 1.5rem;
  border-radius: 5px;
  border-left: 6px solid #2A6873;
  margin-bottom: 20px;
}
#tax-free .section__contents {
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  color: #323232;
  line-height: 1.7rem;
}
#tax-free .section__dot-box {
  padding: 10px;
}
#tax-free .section__sub-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  border-bottom: 2px solid #323232;
}
#tax-free .section__sub-title--divide {
  margin-top: 20px;
}
#tax-free .section__sub-text {
  font-size: 1.1rem;
}
#tax-free .section__steps {
  margin-top: 40px;
}
#tax-free .section__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
}
#tax-free .dot-box {
  background-color: white;
  background-image: radial-gradient(#E9EBEF 30%, transparent 30%);
  background-size: 10px 10px;
}
#tax-free .step {
  opacity: 0;
  position: relative;
  margin-bottom: 40px;
}
#tax-free .step__circle {
  position: absolute;
  box-shadow: 3px 4px 0px 0px #2A6873;
  border: solid 1px #2A6873;
  top: -20px;
  left: -10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 10px;
  width: 72px;
  height: 72px;
  border-radius: 72px;
}
#tax-free .step__arrow {
  position: absolute;
  box-shadow: 2px 3px 0px 0px #2A6873;
  border: solid 1px #2A6873;
  bottom: -30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 10px;
  margin: auto;
  left: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 52px;
}
#tax-free .step__arrow img {
  width: 70%;
}
#tax-free .step__circle-step {
  font-size: 0.8rem;
}
#tax-free .step__circle-num {
  font-size: 1.2rem;
}
#tax-free .step__contents {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  color: #323232;
  padding-bottom: 30px;
}
#tax-free .step__title {
  padding-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  border-bottom: 2px solid #323232;
}
#tax-free .step__title--divide {
  margin-top: 20px;
}
#tax-free .step__text {
  font-size: 1.1rem;
}
#tax-free .stores__map {
  border-radius: 5px;
  padding: 10px;
  background-color: white;
}
#tax-free .stores__map #map {
  height: 40vh;
  width: 100%;
}
#tax-free .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#tax-free .footer {
  margin-top: 100px;
  border-top: 1px solid white;
  padding: 20px;
  color: white;
  background-color: #85D7D2;
}
#tax-free .button {
  padding: 10px;
  padding-left: 20px;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 4px 5px 0px 0px #2A6873;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#tax-free .button__text {
  font-size: 1rem;
  text-wrap: nowrap;
  color: #2A6873;
}
#tax-free .button__icon {
  margin-left: 10px;
}
#tax-free .button__icon img {
  width: auto;
  aspect-ratio: 1;
  height: 2rem;
}
#tax-free .store-list {
  padding: 20px;
  height: 0;
  opacity: 0;
}
#tax-free .store-list__items {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
#tax-free .store-list__item {
  width: 47%;
}
#tax-free .language {
  margin-top: 24px;
}
#tax-free .language__list {
  margin-bottom: 20px;
}
#tax-free .language__item {
  border-radius: 5px;
  padding: 15px;
  background-color: white;
  color: #85D7D2;
  text-decoration: none;
}
#tax-free .language__active {
  text-align: center;
  display: inline;
  background-color: #2A6873;
  border: 2px solid white;
  color: white;
}
#tax-free .show-store-list {
  height: auto;
  opacity: 1;
  transition: all 0.3s;
}
#tax-free .to-inbound {
  padding: 20px;
}
#tax-free .to-inbound .menu__item-text {
  text-align: center;
}
#tax-free .to-inbound .menu__item-icon {
  transform: rotateZ(-135deg);
}

@media screen and (min-width: 768px) {
  #body_wrap {
    background-color: #2A6873;
    background-image: url("/tax-free/assets/vv-back.png");
  }
  #body_wrap .lp-content__inner {
    max-width: inherit;
  }
  #tax-free {
    position: relative;
    width: min(490px, 50%);
    left: auto;
    right: auto;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */