/*---------------------------------------------font & reset css--------------------------------------------- */
@import url("https://fonts.googleapis.com/earlyaccess/notosanskr.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url("https://webfontworld.github.io/gmarket/GmarketSans.css");
@import url("https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "PyeongChangPeace-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChangPeace-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* ---------------------------------------------reset--------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

html {
  height: 100%;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Montserrat, "Noto Sans KR", sans-serif;
  font-size: 17px;
  word-break: keep-all;
}

body.main_body {
  overflow: hidden;
}

body.soho_body {
  overflow: hidden;
  height: 100%;
}

/* Chrome, Safari용 스크롤 바 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border: 3px solid #fff;
}

::-webkit-scrollbar-track {
  background: #efefef;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

ul,
ol {
  list-style: none;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input:focus {
  outline: none;
}

button:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

textarea:focus {
  outline: none;
}

input[type="text"] {
  padding: 10px 5px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
  height: 45px;
  box-sizing: border-box;
}

input[type="text"]:read-only {
  background: #efefef;
  color: #999;
}

input[type="password"] {
  padding: 10px 5px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
}

input::-webkit-input-placeholder {
  color: #bbb;
}

input[type="date"] {
  border: 1px solid #ddd;
  height: 45px;
  padding: 0 10px;
}

select {
  padding: 8px 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
  height: 45px;
  background-color: #fff;
  -webkit-appearance: none; /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
  background: url("/images/arr-bottom.png") no-repeat 95% 50%;
  background-color: #fff;
}

select:focus {
  outline: none;
}

select.phone_sel {
  width: 70px;
}

input.phone {
  width: calc(100% - 200px);
}

input.phone_chk {
  width: calc(100% - 71px);
}

.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w100p {
  width: 100%;
}

.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

/* show objects being animated */
.animate-in {
  visibility: visible;

  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.animate-out {
  visibility: visible;

  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;

  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  -ms-animation-direction: reverse;
  -o-animation-direction: reverse;
  animation-direction: reverse;
}

.animate-out:after {
  content: "";
  letter-spacing: inherit;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    -webkit-transform: translateX(20px);
  }

  80% {
    -webkit-transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  60% {
    -moz-transform: translateX(20px);
  }

  80% {
    -moz-transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(20px);
  }

  80% {
    -o-transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    transform: translateX(20px);
  }

  80% {
    transform: translateX(-5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  60% {
    -webkit-transform: translateX(-20px);
  }

  80% {
    -webkit-transform: translateX(5px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  60% {
    -moz-transform: translateX(-20px);
  }

  80% {
    -moz-transform: translateX(5px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  60% {
    -o-transform: translateX(-20px);
  }

  80% {
    -o-transform: translateX(5px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    transform: translateX(-20px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -o-transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    -webkit-transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes moveUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes moveUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes moveUp {
  0% {
    opacity: 1;
    -o-transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in.animationDelay,
.animate-out.animationDelay {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.animate-in.animationDelayMed,
.animate-out.animationDelayMed {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}

.animate-in.animationDelayLong,
.animate-out.animationDelayLong {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}

.animate-in.fadeBgColor,
.animate-out.fadeBgColor {
  -webkit-animation-name: fadeBgColor;
  -moz-animation-name: fadeBgColor;
  -o-animation-name: fadeBgColor;
  animation-name: fadeBgColor;
}

.animate-in.bounceIn,
.animate-out.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

.animate-in.bounceInRight,
.animate-out.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

.animate-in.bounceInLeft,
.animate-out.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

.animate-in.fadeIn,
.animate-out.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animate-in.fadeInDown,
.animate-out.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.animate-in.fadeInUp,
.animate-out.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animate-in.moveUp,
.animate-out.moveUp {
  -webkit-animation-name: moveUp;
  -moz-animation-name: moveUp;
  -o-animation-name: moveUp;
  animation-name: moveUp;
}

header {
  position: relative;
  z-index: 3;
}

.logo_text {
  position: absolute;
  font-family: "PyeongChangPeace-Bold";
  font-weight: 700;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  width: 300px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.logo_symbol {
  position: relative;
  width: 35px;
  height: 35px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.logo_symbol span {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  display: flex;
  padding: 12px 48px;
  color: #fff;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #00aaff, #23d5ab);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 7s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  background-size: 400% 400%;
  font-size: 19px;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo_symbol2 {
  position: relative;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.logo_symbol2 span {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  display: flex;
  padding: 12px 48px;
  color: #fff;
  background: #000;
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  background-size: 400% 400%;
  font-size: 19px;
}

.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.bg-video-wrap:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
}
/* 
.main_overlay {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.4);
	background-size: 3px 3px;
	z-index: 2;
} */

.company_overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(152, 215, 255, 0.4);
  background-size: 3px 3px;
  z-index: 2;
}

.wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}

.content-container {
  position: relative;
}

.sub_wrap {
  padding: 70px 0;
}

#container {
  padding-top: 85px;
}

.row {
  width: 100%;
  display: inline-block;
}

.box {
  padding: 25px;
}

.page_h3 {
  font-size: 17px;
  font-weight: 400;
}

.page_h3 span {
  color: red;
  padding: 0 5px;
}

.h2_tool {
  float: right;
  color: #999;
  font-weight: 400;
  font-size: 15px;
  margin-top: 10px;
}

.h2_tool > .tool > i {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-left: 10px;
}

.tool {
  position: relative;
}

.tool .tool__msg {
  position: absolute;
  background-color: #060606;
  color: #e5e5e5;
  border-radius: 10px;
  padding: 10px;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  transform-origin: bottom;
  transition: transform 0.3s;
  width: 200px;
  font-size: 13px;
  text-align: center;
}

.tool .tool__msg::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1;
  background-color: #060606;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.tool:hover .tool__msg {
  transform: translateX(-50%) scale(1);
}

.brand {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
}

.brand img {
  max-width: 200px;
}

.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.brand .toggle-wrap {
  margin-left: 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.brand .toggle-wrap .toggle-bg {
  background: #131313;
  height: 33px;
}

.brand .toggle-wrap.scrolled {
  background: #f5f5f7;
}

.brand .toggle-wrap.scrolled label {
  color: #999;
}

.brand .toggle-wrap.scrolled .toggle-bg {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.brand .toggle-wrap.scrolled #pc-store1:checked ~ label[for="pc-store1"],
.brand .toggle-wrap.scrolled #pc-store2:checked ~ label[for="pc-store2"],
#pc-store2:checked ~ label[for="pc-store2"] {
  color: #131313;
}


header .top_ad {
  background-color: #00aaff;
  /*background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);*/
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

header .top_ad h1 {
  margin: 0;
  color: #fff;
}

header .top_ad button {
  position: absolute;
  right: 20px;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
  font-size: 11px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 8px 10px;
  border-radius: 30px;
}

header .top_ad button span.icon {
  display: none;
}

.navbar-dropdown li a {
  background: #fff;
}

nav ul.nav-list li ul li {
  min-width: 190px;
}

nav ul.nav-list li ul li a {
  padding: 15px;
  height: 60px;
  display: flex;
  align-items: center;
}

.navbar-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
}

.nav {
  text-align: center;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__menu {
  width: 160px;
  height: 85px;
  line-height: 85px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
}

.nav__black {
  color: #333;
}

.header_right_bk a {
  color: #666 !important;
}

.nav__menu.active:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0c67c5;
  display: inline-block;
  top: 25%;
  left: 15%;
}

.nav__menu:hover:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0c67c5;
  top: 25%;
  left: 15%;
  z-index: 4;
}

.nav__menu:after {
  left: 0;
  bottom: 0;
}

.nav__menu:hover > .nav__menu-lists li {
  display: block;
}

.nav__menu:hover > .nav__menu--2-lists li:nth-child(1) {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-animation: menu2 ease-in-out forwards;
  animation: menu2 ease-in-out forwards;
  -webkit-animation-duration: 175ms;
  animation-duration: 175ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

@-webkit-keyframes menu2 {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes menu2 {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav__menu:hover > .nav__menu--2-lists li:nth-child(2) {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-animation: menu2 ease-in-out forwards;
  animation: menu2 ease-in-out forwards;
  -webkit-animation-duration: 175ms;
  animation-duration: 175ms;
  -webkit-animation-delay: 145.8333333333ms;
  animation-delay: 145.8333333333ms;
}

@keyframes menu2 {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav__menu:hover > .nav__menu--2-lists li:nth-child(3) {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-animation: menu2 ease-in-out forwards;
  animation: menu2 ease-in-out forwards;
  -webkit-animation-duration: 175ms;
  animation-duration: 175ms;
  -webkit-animation-delay: 291.6666666667ms;
  animation-delay: 291.6666666667ms;
}

@keyframes menu2 {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav__menu:hover > .nav__menu--2-lists li:nth-child(4) {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-animation: menu2 ease-in-out forwards;
  animation: menu2 ease-in-out forwards;
  -webkit-animation-duration: 175ms;
  animation-duration: 175ms;
  -webkit-animation-delay: 437.5ms;
  animation-delay: 437.5ms;
}

@keyframes menu2 {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav__menu:hover > .nav__menu--2-lists li:nth-child(5) {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-animation: menu2 ease-in-out forwards;
  animation: menu2 ease-in-out forwards;
  -webkit-animation-duration: 175ms;
  animation-duration: 175ms;
  -webkit-animation-delay: 583.3333333333ms;
  animation-delay: 583.3333333333ms;
}

@keyframes menu2 {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav__menu-lists {
  perspective: 5000px;
  border-radius: 10px;
  overflow: hidden;
}

.nav__menu-items {
  display: none;
  width: 160px;
  height: 65px;
  line-height: 65px;
  font-weight: initial;
  font-size: 15px;
  background-color: #0c67c5;
  color: #fff;
}

.nav__menu-items:hover {
  background-color: #0a5cad;
}

.nav__menu-items.active {
  background-color: #0a5cad;
}

.nav__menu-items a {
  width: 100%;
  display: inline-block;
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  height: 85px;
  width: 70px;
  z-index: 2;
}

nav.main_nav {
  height: 85px;
  z-index: 99;
  position: fixed;
  width: 100%;
}

nav.main_nav .main_nav_wrap {
  width: 100%;
  height: 85px;
  display: block;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav.main_nav .main_nav_wrap.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

nav.main_nav .main_nav_wrap.sticky .nav__menu {
  color: #333;
}

nav.main_nav .main_nav_wrap.nav_bg .nav__menu {
  color: #333;
}

nav.main_nav .main_nav_wrap.sticky .header_right li a {
  color: #666;
}

nav.main_nav .main_nav_wrap.nav_bg .header_right li a {
  color: #666;
}

nav.main_nav .main_nav_wrap.sticky .m-menu__toggle {
  color: #333;
}

.m-menu__toggle_b {
  color: #333 !important;
}

.header_right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.header_right li {
  padding: 0 7px;
  font-size: 14px;
  color: #fff;
}

.header_right li a {
  font-size: 14px;
  color: #fff;
}

.header_right .js-player-toggle {
  background: #fff;
  width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #131313;
  font-size: 14px;
  border-radius: 32px;
  margin-left: 32px;
  cursor: pointer;
}

.header_right .js-player-toggle.scrolled {
  background: #131313;
  color: #fff;
}

.header_right .js-player-toggle .icon-arrow {
  width: 16px;
  margin-left: 8px;
}
.header_right .js-player-toggle .icon-arrow img {
  width: 100%;
}

.m_topmenu {
  display: flex;
}

.m_topmenu li {
  padding-right: 32px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.m_topmenu li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m_topmenu li:last-child {
  padding-right: 0;
}

.sidebar {
  width: 100%;
  height: 100%;
  background: #293949;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.sidebar #leftside-navigation ul,
.sidebar #leftside-navigation ul ul {
  padding: 0;
  height: 100%;
  display: block;
}

.sidebar #leftside-navigation ul li {
  list-style-type: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar #leftside-navigation ul li.active > a {
  color: #2fd4dc;
}

.sidebar #leftside-navigation ul li.active ul {
  display: block;
}

.sidebar #leftside-navigation ul li a {
  color: #aeb2b7;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 18px 25px;
  font-size: 14px;
  outline: 0;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.sidebar #leftside-navigation ul li a:hover {
  color: #2fd4dc;
}

.sidebar #leftside-navigation ul li a.active {
  color: #2fd4dc;
}

.sidebar #leftside-navigation ul li a span {
  display: inline-block;
}

.sidebar #leftside-navigation ul li a i {
  width: 20px;
  position: absolute;
  right: 0;
}

.sidebar #leftside-navigation ul li a i .fa-angle-left,
.sidebar #leftside-navigation ul li a i .fa-angle-right {
  padding-top: 3px;
}

.sidebar #leftside-navigation ul li .icon-arrow {
  width: 16px;
}
.sidebar #leftside-navigation ul li .icon-arrow img {
  width: 100%;
}

.sidebar #leftside-navigation ul ul {
  display: none;
}

.sidebar #leftside-navigation ul ul li {
  background: #23313f;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  border-bottom: none;
}

.sidebar #leftside-navigation ul ul li a {
  font-size: 13px;
  padding: 13px 25px 13px 25px;
  color: #aeb2b7;
}

.sidebar #leftside-navigation ul ul li a.active {
  color: #2fd4dc;
}

.mobile_nav {
  display: none;
}

.toggle-wrap {
  position: relative;
  display: inline-flex;
  background: #1f2c38;
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  width: auto;
  height: 42px;
}

/* 숨김 라디오 버튼 */
.toggle-wrap input[type="radio"] {
  display: none;
}

/* 토글 버튼 라벨 */
.toggle-wrap label {
  position: relative;
  z-index: 2;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c8a97;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
  width: 84px;
}

/* 선택된 라벨 글씨 */
#store1:checked ~ label[for="store1"],
#store2:checked ~ label[for="store2"] {
  color: white;
}

/* 토글 배경 이동 - PC */
#store2:checked ~ .toggle-bg {
    left: 50%;
}

/* 배경 이동 thumb */
.toggle-wrap .toggle-bg {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: 34px;
  background: #2b3b49;
  border-radius: 100px;
  transition: left 0.3s ease;
}

/* 선택된 라벨 텍스트 색상 */
#pc-store1:checked ~ label[for="pc-store1"],
#pc-store2:checked ~ label[for="pc-store2"],
#mobile-store1:checked ~ label[for="mobile-store1"],
#mobile-store2:checked ~ label[for="mobile-store2"] {
  color: #fff;
}

/* 토글 배경 이동 - PC */
#pc-store2:checked ~ .toggle-bg {
  left: 50%;
}

/* 토글 배경 이동 - 모바일 */
#mobile-store2:checked ~ .toggle-bg {
  left: 50%;
}
.sub_nav {
  position: absolute;
  top: 100px;
  color: #fff;
  max-width: 1200px;
  z-index: 3;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.sub_nav_wrap {
  float: right;
}

.sub_nav ul {
  display: flex;
  align-items: center;
}

.sub_nav ul li {
  padding: 0 15px;
  position: relative;
}

.sub_nav ul li:after {
  position: absolute;
  content: "";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  width: 3px;
  height: 3px;
  top: 50%;
  right: 0;
  background: #fff;
  display: inline-block;
}

.sub_nav ul li:last-child:after {
  content: none;
}

.sub_nav ul li img {
  width: 17px;
}

/*FOOTER*/

#footer {
  background: #0f0f0f;
  width: 100%;
  display: inline-block;
  position: relative;
}

.footer__wrap {
  width: 100%;
  display: inline-block;
  padding: 30px 0;
}

.footer__logo {
  width: 200px;
}

.footer__logo img {
  width: 150px;
}

.footer__menu {
  border-bottom: 1px solid #333;
  width: 100%;
  height: 80px;
}

.footer__menu > .wrap {
  padding: 0 15px;
}

.footer__menu > .wrap > ul {
  display: flex;
  width: 100%;
  align-items: center;
  height: 80px;
}

.footer__menu > .wrap > ul.footer__icon {
  position: absolute;
  right: 0;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}

.footer__menu > .wrap > ul > li {
  float: left;
  padding: 0 40px 0 0;
  color: #999;
  font-size: 15px;
}

.footer__menu > .wrap > ul > li > span {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
}

.footer__menu > .wrap > ul > li > span:before {
  width: 40px;
  height: 40px;
  border: 1px solid #777;
  content: "";
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  pointer-events: none;
}

.footer__menu > .wrap > ul > li > span:hover:before {
  border: 1px solid #fff;
}

.footer__menu > p {
  color: #949494;
  font-size: 14px;
  line-height: 26px;
  margin-top: 20px;
}

.footer__copy > p > span {
  padding-right: 30px;
}

.footer__copy {
  padding: 30px 0;
  color: #d0d0d0;
  font-size: 15px;
}

.footer__copy2 {
  margin-top: 30px;
  font-size: 13px;
  color: #666;
}

/*FOOTER*/

/*버튼*/

.btn {
  padding: 0px 20px;
  height: 45px;
  font-size: 15px;
  border-radius: 3px;
  cursor: pointer;
  line-height: 45px;
}

.btn_check {
  background: #0c67c5;
  border: none;
  color: #fff;
}

.btn_check2 {
  background: #fff !important;
  border: 1px solid #666 !important;
  color: #555 !important;
}

.btn_confirm {
  background: #0c67c5;
  border: none;
  color: #fff;
}

.btn_withdrawal {
  border: none;
  color: #999 !important;
  font-weight: 300;
  font-size: 14px;
  float: right;
  vertical-align: middle;
}

.btn_find {
  height: 55px;
  background: #0c67c5;
  color: #fff;
  border: none;
  box-sizing: border-box;
}

.modify_btn {
  position: absolute;
  right: 15px;
  top: 15px;
}

.button_link {
  background: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(to right, #0c67c5, #2fd4dc) border-box;
  color: #313149;
  padding: 10px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  display: inline-block;
  font-size: 15px;
}

.btn_white {
  background: none;
  border: 1px solid #fff !important;
  color: #fff !important;
  display: inline-block;
  border-radius: 10px;
}

/**/

/*상세페이지 LOCATION*/

.location {
  width: 100%;
  height: 45px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.location__wrap {
  line-height: 45px;
}

.location__wrap li {
  float: left;
  position: relative;
  margin-right: 25px;
  color: #999;
}

.location__wrap li:after {
  background: url("/images/icon_arrow.png");
  content: "";
  position: absolute;
  top: 18px;
  left: 25px;
  width: 6px;
  height: 11px;
}

.location__wrap li:last-child:after {
  background: none;
}

.location__wrap li.current {
  color: #0c67c5;
  font-weight: 500;
}

.content__bg {
  background: #f2f3f6;
  overflow: hidden;
}

.content__bg_w {
  background: #fff;
}

.content__bg_b {
  background: #111;
  position: relative;
}

.content__bg_b p.signature_btn {
  color: #fff;
  margin: 30px auto;
  text-align: center;
}

.content {
  min-height: 700px;
  height: 100%;
  padding: 30px 0;
  box-sizing: border-box;
}

.content > .wrap h2 {
  font-size: 22px;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  margin-top: 30px;
}

.my_content {
  min-height: 700px;
  height: 100%;
  padding: 70px 0;
  box-sizing: border-box;
}

.filebox {
  display: flex;
  align-items: center;
  width: 100%;
}

.filebox input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.filebox label {
  display: inline-block;
  padding: 11px 13px;
  color: #999;
  font-size: inherit;
  line-height: normal;
  font-size: 15px;
  background-color: #fdfdfd;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ebebeb;
  border-bottom-color: #e2e2e2;
  border-radius: 0.25em;
}

.filebox .upload-name {
  width: calc(100% - 70px);
  display: inline-block;
  padding: 11px 0.75em;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  vertical-align: middle;
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-bottom-color: #e2e2e2;
  border-radius: 0.25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checks {
  position: relative;
}

.checks input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.checks input[type="radio"] + label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.checks input[type="radio"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 21px;
  height: 21px;
  text-align: center;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius: 100%;
}

.checks input[type="radio"]:checked + label:before {
  background: #fff;
  border-color: #adb8c0;
}

.checks input[type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: #99a1a7;
  border-radius: 100%;
}

.boxes {
  display: flex;
  align-items: center;
}

.boxes label {
  display: flex;
  color: #333;
  position: relative;
  float: left;
  align-items: center;
  font-weight: initial;
}

.boxes label span {
  color: #cf0505;
}

.boxes input {
  width: 0;
  height: 0;
  opacity: 0;
}

.boxes label > .check_mark {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  border: 2px solid #aaa;
  margin-right: 10px;
  border-radius: 3px;
  transition: all 0.3s;
}

input:checked + label > .check_mark {
  animation: bounce 250ms;
}

input:checked + label > .check_mark::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checked-box 125ms 250ms forwards;
}

@keyframes checked-box {
  0% {
    width: 0;
    height: 0;
    border-color: red;
    transform: translate(0, 0) rotate(45deg);
  }
  33% {
    width: 7px;
    height: 0;
    border-color: red;
    transform: translate(0, 0) rotate(45deg);
  }
  100% {
    width: 12px;
    height: 18px;
    border-color: red;
    transform: translate(0, -18px) rotate(45deg);
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

.sub-nav {
  width: 100%;
  height: 60px;
  background: #f9f9f9;
  /*background: rgb(45,76,143);
background: radial-gradient(circle, rgba(45,76,143,1) 0%, rgba(12,103,197,1) 100%);*/
}

.sub-nav__menu {
  margin: 0 auto;
  text-align: center;
  display: table;
  height: 60px;
}

.sub-nav__menu li {
  display: table-cell;
  width: 140px;
  vertical-align: middle;
  font-size: 15px;
  color: #999;
  position: relative;
}

.sub-nav__menu li:hover {
  cursor: pointer;
  color: #fff;
  background: #0c67c5;
}

.sub-nav__menu li.active {
  color: #fff;
  background: #0c67c5;
}

.sub-nav2 {
  width: 100%;
  height: 60px;
  background: none;
  position: absolute;
  bottom: 0;
}

.sub-nav__menu2 {
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.sub-nav__menu2 li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1px;
  width: 140px;
  height: 60px;
  vertical-align: middle;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  position: relative;
}

.sub-nav__menu2 li:hover {
  cursor: pointer;
  color: #fff;
  background: #0c67c5;
}

.sub-nav__menu2 li.active {
  color: #fff;
  background: #0c67c5;
}

.sub-nav__tab {
  width: 100%;
  height: 60px;
}

.sub-nav__tab > ul {
  width: 100%;
  display: flex;
  height: 60px;
  justify-content: center;
  text-align: center;
}

.sub-nav__tab > ul > li {
  display: inline-flex;
  vertical-align: middle;
  text-align: center;
  margin: 2px;
  width: auto;
  padding: 0 20px;
  align-items: center;
  flex-shrink: 0;
  font-size: 16px;
  background: #f9f9f9;
  border: 2px solid #f9f9f9;
}

.sub-nav__tab > ul > li:hover {
  background: #fff;
  color: #0c67c5;
  border: 2px solid #0c67c5;
  cursor: pointer;
}

.sub-nav__tab > ul > li.active {
  background: #fff;
  color: #0c67c5;
  border: 2px solid #0c67c5;
}

/*페이지*/

.pagination {
  margin: 30px auto;
}

.pagination ul {
  margin: 30px auto;
  padding-left: 0;
  list-style-type: none;
}

.page-number {
  display: inline;
}

.page-number a {
  text-decoration: none;
}

/* Pagination 2 */
.pagination-2 .page-number {
  padding: 11px 16px;
  background-color: #f3f4f2;
  border-radius: 4px;
}

.pagination-2 .page-number:hover {
  background-color: #0c67c5;
  color: #fff;
  cursor: pointer;
}

.pagination-2 .active {
  border-radius: 4px;
  background-color: #0c67c5;
}

.pagination-2 .active:hover {
  background-color: #0c67c5;
  color: #fff;
}

.pagination-2 .active a {
  color: #fff;
}

/*페이지*/

/*모달*/

.modal-content {
  overflow: hidden;
  border: none;
}

.body-message {
  padding: 15px;
  display: inline-block;
  width: 100%;
}

.body-message h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.btn-close {
  float: right;
}

/* Youtube link */
.left_link {
  position: fixed;
  background-color: #0c67c5;
  border-radius: 5px 0 0 5px;
  width: 50px;
  height: 250px;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.1s ease-in-out;
  z-index: 999;
}

.left_link:hover {
  text-decoration: underline;
  color: #f9f9f9;
}

.left_link span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 160px;
}

.mypage_menu {
  display: none;
}

/*위로 버튼*/
#btn_top {
  display: inline-block;
  background-color: #00aaff;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
}

#btn_top::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#btn_top.show {
  opacity: 1;
  visibility: visible;
}

/*위로 버튼*/

/*플레이어다운*/

.player_fixed {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  font-size: 14px;
  border: 2px solid transparent;
  padding: 3px 10px;
  border-radius: 10px;
  background: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(to right, #0c67c5, #2fd4dc) border-box;
}

/*플레이어다운*/

.mobile-download {
  display: none;
}

@media only screen and (max-width: 1200px) {
  html,
  body {
    font-size: 15px;
  }

  header .top_ad button {
    border: none;
    right: 10px;
  }

  header .top_ad button span.text {
    display: none;
  }

  header .top_ad button span.icon {
    display: block;
    font-size: 18px;
  }

  .brand .toggle-wrap {
    display: none;
  }

  .nav {
    display: none;
  }

  #container {
    padding-top: 55px;
  }

  .sub_wrap {
    padding: 30px 0;
  }

  .mobile_nav {
    display: block;
  }

  nav.main_nav {
    height: 55px;
  }

  .brand {
    left: 15px;
  }

  .brand img {
    width: 140px;
  }

  nav.main_nav .main_nav_wrap {
    height: 55px;
  }

  nav.main_nav .main_nav_wrap ul.nav-list {
    display: none;
    width: 100%;
    top: 85px;
    position: absolute;
    background: #f9f9f9;
  }

  .ag-menu_nav ul.ag-menu_list > li.ag-menu_item > a {
    padding: 15px 20px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    position: relative;
  }

  .ag-menu_nav > ul.ag-menu_list > li > a:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    right: 20px;
    color: #aaa;
  }

  .ag-menu_nav ul li ul li a {
    padding-left: 10px;
  }

  .navbar-dropdown {
    position: static;
  }

  .header_right {
    display: none;
  }

  .m-menu__checkbox {
    display: none;
  }

  .m-menu__toggle {
    cursor: pointer;
    position: absolute;
    color: #fff;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
  }

  .m-menu {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 296px;
    width: calc(100vw - 25vw);
    height: 100vh;
    -moz-transform: translate3d(450px, 0, 0);
    -o-transform: translate3d(450px, 0, 0);
    -ms-transform: translate3d(450px, 0, 0);
    -webkit-transform: translate3d(450px, 0, 0);
    transform: translate3d(450px, 0, 0);
    -moz-transition: transform 0.35s;
    -o-transition: transform 0.35s;
    -webkit-transition: transform 0.35s;
    transition: transform 0.35s;
    z-index: 6;
    overflow: hidden;
    background-color: #293949;
  }

  .m-menu__overlay {
    background-color: rgba(103, 103, 103, 0.5);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    bottom: 0;
    z-index: 5;
    display: none;
  }

  .m-menu__header {
    padding: 0 16px;
    height: 50px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
  }

  .m-menu__header span {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
  }

  .m-menu .m-menu {
    -moz-transform: translate3d(480px, 0, 0);
    -o-transform: translate3d(480px, 0, 0);
    -ms-transform: translate3d(480px, 0, 0);
    -webkit-transform: translate3d(480px, 0, 0);
    transform: translate3d(480px, 0, 0);
  }

  .m-menu ul {
    height: 64px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    padding: 8px 0 8px 24px;
  }

  .m-menu ul li label.a-label__chevron::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-color: #333;
    border-style: solid;
    border-width: 1px 1px 0 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    margin-top: -5px;
    right: 16px;
  }

  .m-menu ul li .-invisible {
    border-bottom: 0;
  }

  .m-menu .m-menu .m-menu__toggle {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-bottom: 0;
    padding: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }

  .m-menu__checkbox:checked ~ .m-menu__overlay {
    display: block;
  }

  .m-menu__checkbox:checked ~ .m-menu {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .nav_wrap {
    width: 70%;
    height: 100vh;
    position: absolute;
    right: 0;
    background: #fff;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .submenu {
    display: none;
    background: #eee;
    padding: 10px 0;
  }

  .ag-menu_item.active {
    font-weight: 600;
    color: #0c67c5;
  }

  .ag-menu_list .submenu > li {
    display: flex;
    padding: 10px 15px;
    font-size: 13px;
    text-decoration: none;
    color: #666;
    font-weight: 400;
    cursor: pointer;
  }

  .ag-menu_list .submenu > li a:hover {
    transition: padding 0.2s ease-in;
  }

  .mobile-slider {
    background-color: #293949;
    z-index: 10;
  }
  .mobile-slider.active {
    left: 0px;
  }

  .mobile-slider-top {
    position: relative;
    background: #364a5e;
    display: flex;
    flex-direction: column;
  }

  .mobile-slider-top .m-menu__toggle {
    color: #fff !important;
    position: initial;
    color: #fff;
    font-size: 25px;
    transform: none;
    display: flex;
    justify-content: end;
    padding-top: 24px;
    padding-right: 16px;
  }

  .close-menu:hover {
    cursor: pointer;
  }

  .sub_nav {
    top: 80px;
  }

  .sub_nav ul li {
    padding: 0 7px;
    font-size: 13px;
  }

  .sub_nav ul li img {
    width: 13px;
    vertical-align: baseline;
  }

  .player_fixed {
    display: none;
  }

  #btn_top {
    width: 40px;
    height: 40px;
    right: 15px;
  }

  #btn_top:after {
    line-height: 40px;
    font-size: 24px;
  }

  .btn {
    font-size: 13px;
    height: 40px;
  }

  .btn_find {
    height: 40px;
  }

  .m-toggle-shop {
    display: flex;
    padding: 24px 60px 16px;
  }

  .mobile-download {
    display: block;
  }

  .mobile-download h2 {
    padding: 20px 24px;
    color: #aeb2b7;
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-download .download-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
  }

  .mobile-download .download-item a {
    padding: 12px 24px 12px 20px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    width: 100%;
  }

  .mobile-download .download-item .icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-download .download-item .icon img {
    width: 24px;
  }

  .mobile-download .download-item .textbox {
    margin-left: 16px;
    flex: 1;
  }

  .mobile-download .download-item .textbox .title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }

  .mobile-download .download-item .textbox .text {
    color: #999;
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 2px;
  }

  .mobile-download .download-item .download {
    margin-left: 16px;
    width: 20px;
  }

  .mobile-download .download-item .download img {
    width: 100%;
  }

  .btn-pcplayer {
    padding: 24px;
    width: 100%;
  }

  .btn-pcplayer span {
    background: #1e2c39;
    border-radius: 8px;
    height: 40px;
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e7886;
  }
}

@media (max-width: 767px) {
  input[type="text"] {
    height: 35px;
  }

  input[type="password"] {
    height: 35px;
  }

  select {
    height: 35px;
    font-size: 13px;
  }

  select.phone_sel {
    width: 70px;
  }

  input.phone {
    width: calc(100% - 170px);
  }

  input.phone_chk {
    width: calc(100% - 46px);
  }

  .filebox {
    font-size: 13px;
  }

  .filebox label {
    padding: 8px 13px;
    font-size: 13px;
  }

  .filebox .upload-name {
    height: 35px;
  }

  .wrap {
    padding: 0 10px;
  }

  #header {
    height: 60px;
  }

  #menu-icon {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
    color: #333;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    opacity: 1;
    padding: 0 0.4em;
    z-index: 1;
  }

  #menu-icon:hover {
    opacity: 0.85;
    text-decoration: none;
    border: none;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: #f1f5f8;
    transition: all 0.3s ease;
  }

  .navbar .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 25%;
    width: 100%;
    transform: translateY(-50%);
  }

  .navbar .menu li {
    list-style-type: none;
    display: block;
    padding: 15px 0;
  }

  .navbar .menu li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 0 0.8em;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .header__menu {
    display: none;
  }

  .nav_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  .hidden {
    display: none;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
  }

  .header .navbar .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 25%;
    width: 100%;
    transform: translateY(-50%);
  }

  .header .navbar .menu-item {
    padding-bottom: 1rem;
    width: 100%;
    text-align: left;
  }

  .header .navbar .menu-item:nth-child(1) a {
    transition-delay: 0.2s;
  }

  .header .navbar .menu-item:nth-child(2) a {
    transition-delay: 0.3s;
  }

  .header .navbar .menu-item:nth-child(3) a {
    transition-delay: 0.4s;
  }

  .header .navbar .menu-item:nth-child(4) a {
    transition-delay: 0.5s;
  }

  .header .navbar .menu-item:not(:first-child) {
    margin-left: 0;
  }

  .header .navbar .menu-item a {
    padding: 1rem 2rem;
    opacity: 0;
    color: #252a32;
    font-size: 1rem;
    font-weight: 600;
    transform: translateX(-20px);
    transition: all 0.3s ease-in-out;
  }

  .header .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 999;
  }

  .header .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #252a32;
    border-radius: 2px;
    margin-left: 14px;
  }

  .header .nav-toggle span:nth-child(1) {
    margin-top: 16px;
  }

  .header .nav-toggle span:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }

  .header .nav-toggle span:nth-child(3) {
    margin-top: 4px;
  }

  .header #nav:checked + .nav-toggle {
    transform: rotate(45deg);
  }

  .header #nav:checked + .nav-toggle span {
    background: #fff;
    transition: transform 0.5s ease;
  }

  .header #nav:checked + .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
  }

  .header #nav:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header #nav:checked + .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
  }

  .header #nav:checked ~ .navbar {
    z-index: 99;
    opacity: 1;
  }

  .header #nav:checked ~ .navbar .menu-item a {
    opacity: 1;
    transform: translateX(0);
  }

  .header__menu {
    display: none;
  }

  .footer__wrap {
    padding: 50px 0 110px 0;
  }

  .footer__menu {
    box-sizing: border-box;
    height: auto;
  }

  .footer__menu > .wrap {
    position: initial;
  }

  .footer__menu > .wrap > ul {
    padding-top: 15px;
    display: inline-block;
    height: 40px;
  }

  .footer__menu > .wrap > ul > li {
    font-size: 11px;
    padding: 0 15px 0 0;
  }

  .footer__menu > .wrap > ul > li:last-child {
    padding: 0;
  }

  .footer__menu > .wrap > ul.footer__icon {
    position: absolute;
    left: 15px;
    display: flex;
    justify-content: center;
    width: auto;
    bottom: 50px;
    top: inherit;
    transform: inherit;
    z-index: 6;
  }

  .footer__copy {
    font-size: 12px;
  }

  .footer__copy2 {
    font-size: 11px;
  }

  .footer__menu > p {
    font-size: 13px;
  }

  .content > .wrap h2 {
    font-size: 22px;
    display: inline-block;
    align-items: center;
    justify-content: space-between;
  }

  .tool_text {
    display: none;
  }

  .page_h3 {
    font-size: 15px;
  }

  .btn_check {
    padding: 5px 20px;
    border: 1px solid #666;
    height: 35px;
    font-size: 13px;
    line-height: 0;
  }

  .btn_check2 {
    padding: 5px 10px;
    border: 1px solid #666;
    height: 35px;
    font-size: 12px;
    line-height: 0;
  }

  .button_link {
    font-size: 13px;
  }

  .sub-nav {
    display: none;
  }

  .mypage_top {
    height: 200px;
  }

  .mypage_top h2 {
    font-size: 30px;
  }

  .sub-nav2 {
    display: none;
  }

  .js-ag-body-noscroll {
    overflow: hidden;
    position: fixed;
  }

  .ag-header-wrap {
    z-index: 9999;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-transform-style: flat;
    -moz-transform-style: flat;
    transform-style: flat;
  }

  .ag-navbar-block {
    position: absolute;
    top: 20px;
    right: 60px;
    line-height: 0;
  }

  .ag-language_current {
    color: #fff;
    font-size: 16px;
    padding: 0 20px 0 0;
  }

  .ag-language_current:hover {
    color: #fff;
  }

  .ag-language_current:hover:before {
    border-color: #fff transparent transparent;
  }

  .ag-language_current:before {
    border-color: #fff transparent transparent;
  }

  .ag-language_current:after {
    border-color: #0c67c5 transparent;
  }

  .js-language_box {
    line-height: 23px;
  }

  .js-language_box img {
    display: none;
  }

  .js-ag-header-wrap__scroll {
    position: fixed;
    top: -79px;
  }

  .js-ag-header-wrap__overlay {
    bottom: 0;
  }

  .ag-header {
    position: relative;
    height: 60px;
  }

  .ag-menu_btn-wrap {
    width: 10px;
    padding: 2px 7px;
    z-index: 9999;
    cursor: pointer;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    -webkit-tap-highlight-color: transparent;
    top: 50%;
    transform: translateY(-50%);
  }

  .ag-menu_btn {
    height: 3px;
    width: 24px;
    background-color: #333;
    position: absolute;
    border-radius: 2px;
    left: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .ag-menu_btn:before,
  .ag-menu_btn:after {
    content: "";
    height: 3px;
    border-radius: 2px;
    width: 24px;
    background-color: #333;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .ag-menu_btn:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  .ag-menu_btn:after {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }

  .ag-menu_btn-wrap:hover .ag-menu_btn:before {
    -webkit-transform: translateY(-9px);
    -moz-transform: translateY(-9px);
    -ms-transform: translateY(-9px);
    -o-transform: translateY(-9px);
    transform: translateY(-9px);
  }

  .ag-menu_btn-wrap:hover .ag-menu_btn:after {
    -webkit-transform: translateY(9px);
    -moz-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
    transform: translateY(9px);
  }

  .js-ag-menu_btn-show {
    background: none;
  }

  .js-ag-menu_btn-show:before,
  .ag-menu_btn-wrap:hover .js-ag-menu_btn-show:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff;
  }

  .js-ag-menu_btn-show:after,
  .ag-menu_btn-wrap:hover .js-ag-menu_btn-show:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
  }

  .ag-menu-block {
    width: 80%;
    max-width: 300px;
    padding: 0;
    background-color: #f9f9f9;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9990;
    position: absolute;
    top: 0px;
    right: -100%;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-touch-action: none;
  }

  .js-ag-menu-block {
    right: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .ag-menu_nav {
    padding: 0;
    margin-left: 0;
    position: static;
  }

  .ag-mob-language_selectbox {
    display: block;
    position: relative;
  }

  .ag-mob-language_selectbox:before {
    content: "";
    height: 11px;
    width: 16px;
    background-image: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/menu-and-lamp-light/images/flags.png);
    background-repeat: no-repeat;
    background-color: #ededed;
    margin-top: -6px;
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 10px;
  }

  .ag-mob-language_form {
    background-color: #fff;
    position: relative;
  }

  .ag-mob-language_form:before,
  .ag-mob-language_form:after {
    content: "";
    border-style: solid;
    border-width: 5px;
    position: absolute;
    top: 50%;
    right: 10px;
  }

  .ag-mob-language_form:before {
    margin: -2px 0 0;
    border-color: #525c69 transparent transparent;
    z-index: 1;
  }

  .ag-mob-language_form:hover:before {
    border-color: #323a45 transparent transparent;
  }

  .ag-mob-language_form:after {
    margin: -4px 0 0;
    border-color: #fff transparent transparent;
    z-index: 2;
  }

  .ag-mob-language_select {
    height: 40px;
    width: 100%;
    padding: 5px 5px 5px 30px;
    border: 0;
    background: none;
    text-indent: 0.01px;
    text-overflow: "";
    color: #525c69;
    z-index: 1;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .ag-mob-language_select:focus {
    outline: 0;
  }

  .ag-mob-login_box {
    display: block;
    border-bottom: 1px solid #454545;
  }

  .ag-mob-login_link {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-transition: padding 0.25s ease-out;
    -moz-transition: padding 0.25s ease-out;
    -ms-transition: padding 0.25s ease-out;
    -o-transition: padding 0.25s ease-out;
    transition: padding 0.25s ease-out;
  }

  .js-menu_navtop {
    display: block;
    padding: 20px 15px;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
  }

  .m_language {
    display: flex;
    padding: 0;
  }

  .m_language li {
    padding: 0 20px 0 0;
    position: relative;
    font-size: 13px;
    color: #999;
  }

  .m_language li.active {
    color: #0c67c5;
  }

  .m_language li.active:after {
    width: 21px;
    height: 2px;
    background: #0c67c5;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
  }

  .m_language li:last-child:after {
    content: none;
  }

  .js-menu_navtop span.m_top_text {
    padding-top: 20px;
    display: block;
  }

  .js-menu_navtop span.m_top_id {
    display: block;
    font-size: 23px;
  }

  .js-menu_navtop button.m_top_btn {
    border: 1px solid #fff;
    border-radius: 20px;
    background: none;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    padding: 3px 15px;
    margin-top: 30px;
  }

  .ag-menu_list2 {
    display: block;
    background: #fff;
    margin-top: 10px;
  }

  .ag-menu_list2 > .ag-menu_item {
    font-size: 14px;
    color: #666;
  }

  .ag-menu_item {
    display: block;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
  }

  .ag-menu_item:last-child {
    border: 0;
  }

  .ag-menu_link-item {
    padding: 0 15px;
    text-align: left;
    height: 55px;
    line-height: 55px;
  }

  .ag-menu_link-item.ag-menu_link-item__lamp {
    padding: 0 40px 0 15px;
  }

  .ag-menu_link-item__lamp:before {
    left: auto;
    right: 10px;
  }

  .js-ag-menu_nav .ag-menu_item:nth-child(1) .ag-menu_link-item {
    -webkit-animation: an-slide-in 0.2s;
    -moz-animation: an-slide-in 0.2s;
    -ms-animation: an-slide-in 0.2s;
    -o-animation: an-slide-in 0.2s;
    animation: an-slide-in 0.2s;
  }

  .js-ag-menu_nav .ag-menu_item:nth-child(2) .ag-menu_link-item {
    -webkit-animation: an-slide-in 0.3s;
    -moz-animation: an-slide-in 0.3s;
    -ms-animation: an-slide-in 0.3s;
    -o-animation: an-slide-in 0.3s;
    animation: an-slide-in 0.3s;
  }

  .js-ag-menu_nav .ag-menu_item:nth-child(3) .ag-menu_link-item {
    -webkit-animation: an-slide-in 0.4s;
    -moz-animation: an-slide-in 0.4s;
    -ms-animation: an-slide-in 0.4s;
    -o-animation: an-slide-in 0.4s;
    animation: an-slide-in 0.4s;
  }

  .js-ag-menu_nav .ag-menu_item:nth-child(4) .ag-menu_link-item {
    -webkit-animation: an-slide-in 0.5s;
    -moz-animation: an-slide-in 0.5s;
    -ms-animation: an-slide-in 0.5s;
    -o-animation: an-slide-in 0.5s;
    animation: an-slide-in 0.5s;
  }

  .js-ag-menu_nav .ag-menu_item:nth-child(5) .ag-menu_link-item {
    -webkit-animation: an-slide-in 0.6s;
    -moz-animation: an-slide-in 0.6s;
    -ms-animation: an-slide-in 0.6s;
    -o-animation: an-slide-in 0.6s;
    animation: an-slide-in 0.6s;
  }

  @-webkit-keyframes an-slide-in {
    0% {
      -webkit-transform: translateX(100px);
    }

    100% {
      -webkit-transform: translateY(0);
    }
  }

  @-moz-keyframes an-slide-in {
    0% {
      -moz-transform: translateX(100px);
    }

    100% {
      -moz-transform: translateY(0);
    }
  }

  @-ms-keyframes an-slide-in {
    0% {
      -ms-transform: translateX(100px);
    }

    100% {
      -ms-transform: translateY(0);
    }
  }

  @-o-keyframes an-slide-in {
    0% {
      -o-transform: translateX(100px);
    }

    100% {
      -o-transform: translateY(0);
    }
  }

  @keyframes an-slide-in {
    0% {
      -webkit-transform: translateX(100px);
      -moz-transform: translateX(100px);
      -ms-transform: translateX(100px);
      -o-transform: translateX(100px);
      transform: translateX(100px);
    }

    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  }

  .my_content {
    background: #f2f3f6;
    padding: 30px 0;
  }

  .my_content > .wrap {
    padding: 0;
  }

  .mypage_menu {
    margin: 0 auto;
    width: 100%;
    display: block;
  }

  .mypage_menu dt {
    display: flex;
    position: relative;
    font-weight: 500;
  }

  .mypage_menu dt a {
    background-color: #0c67c5;
    width: 100%;
    text-decoration: none;
    color: #fff;
    display: inline-block;
  }

  .mypage_menu dt a span {
    cursor: pointer;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
  }

  .mypage_menu dt a i {
    position: absolute;
    right: 15px;
    align-items: center;
    top: 50%;
    transform: translate(0, -50%);
  }

  .mypage_menu dd {
    position: relative;
    z-index: 2;
  }

  .mypage_menu dd ul {
    background-color: #fff;
    display: none;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
    box-shadow: 0 6px 12px rgb(0 0 0 / 10%);
    z-index: 1;
  }

  .mypage_menu dd ul li {
    cursor: pointer;
    padding: 0 15px;
    height: 50px;
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
  }

  .mypage_menu dd ul li a {
    color: #555;
    text-decoration: none;
  }

  .mypage_menu2 select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #323;
    background-color: #f9f9f9;
    background-image: none;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }

  /* Custom Select wrapper */
  .mypage_menu2 {
    position: relative;
    display: flex;
    width: 100%;
    height: 3em;
    border-radius: 0.25em;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }
  /* Arrow */
  .mypage_menu2::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    transition: 0.25s all ease;
    pointer-events: none;
  }

  .checks input[type="radio"] + label {
    font-size: 13px;
  }

  .animate-in.fadeInUp,
  .animate-out.fadeInUp {
    -webkit-animation-name: none !important;
    -moz-animation-name: none !important;
    -o-animation-name: none !important;
    animation-name: none !important;
  }

  .pagination {
    margin: 0;
  }

  .pagination-2 .page-number {
    padding: 6px 10px;
    background: #fff;
    font-size: 11px;
  }
  .pagination-2 .active {
    background: #0c67c5;
  }

  .left_link {
    font-size: 13px;
    padding: 10px 30px;
    left: -80px;
  }

  .mobile-download {
    display: block;
  }

  .mobile-download h2 {
    padding: 20px 24px;
    color: #aeb2b7;
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-download .download-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
  }

  .mobile-download .download-item a {
    padding: 12px 24px 12px 20px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    width: 100%;
  }

  .mobile-download .download-item .icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-download .download-item .icon img {
    width: 24px;
  }

  .mobile-download .download-item .textbox {
    margin-left: 16px;
    flex: 1;
  }

  .mobile-download .download-item .textbox .title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }

  .mobile-download .download-item .textbox .text {
    color: #999;
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 2px;
  }

  .mobile-download .download-item .download {
    margin-left: 16px;
    width: 16px;
  }

  .mobile-download .download-item .download img {
    width: 100%;
  }

  .btn-pcplayer {
    padding: 24px;
    width: 100%;
  }

  .btn-pcplayer span {
    background: #1e2c39;
    border-radius: 8px;
    height: 40px;
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e7886;
  }
}

@media screen and (max-width: 769px) {
  .logo_wrap {
    width: 150px;
    left: 20px;
  }

  .logo_text {
    width: 200px;
    font-size: 21px;
    align-items: center;
    left: 15px;
    line-height: initial;
  }

  .logo_symbol {
    width: 27px;
    height: 27px;
    margin-right: 5px;
  }

  .logo_symbol span {
    font-size: 16px;
  }

  html,
  body {
    font-size: 13px;
  }

  #header {
    height: 60px;
  }

  .header__menu {
    display: none;
  }

  .btn_white {
    font-size: 13px;
  }
}

.slide-wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}

.slide-wrapper2 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}

.swiper-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-container2 {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slide-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.swiper-pagination {
  text-align: center;
  margin-top: 15px;
  width: 100%;
}

.swiper-pagination-bullet {
  margin: 0 5px;
  width: 15px;
  height: 15px;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}

.swiper-slide {
  background-position: center center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
  font-size: 15px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}

.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}

.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}

.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.main_popup {
  position: fixed;
  z-index: 1005;
  -webkit-box-shadow: 0px 13px 40px -6px #061626;
  box-shadow: 0px 13px 40px -6px #061626;
  top: 100px;
  left: 50px;
  display: none;
}

.main_popup.on {
  display: block;
  background-color: #fff;
}

.main_popup .img_wrap {
  width: 400px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main_popup .img_wrap img {
  width: 100px;
  margin-bottom: 20px;
}

.main_popup .btn_close {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 17px;
  right: 17px;
  font-size: 0;
  border: 0;
  background: none;
}

.main_popup .btn_close::before {
  content: "";
  width: 2px;
  height: 32px;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 15px;
  transform: rotate(45deg);
}

.main_popup .btn_close::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 15px;
  left: 0;
  transform: rotate(45deg);
}

.main_popup .btn_today_close {
  width: 100%;
  height: 45px;
  background-color: #333;
  text-align: center;
  color: #fff;
  font-size: 14px;
  display: block;
}

.main_popup .btn_today_close span {
  display: block;
  line-height: 40px;
  vertical-align: bottom;
  opacity: 0.8;
}
