/* reset */
body,
div,
header,
footer,
nav,
section,
article,
aside,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
dl,
dt,
dd,
p,
table,
th,
tr,
th,
td,
form,
fieldset,
legend,
figure {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
fieldset,
img {
  border: 0 none;
}
img {
  width: 100%;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
input,
select,
textarea,
button {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
  border: 0 none;
}
button {
  border: 1px solid #666;
  background-color: transparent;
  cursor: pointer;
}
a,
a:hover,
a:active {
  text-decoration: none;
}
address,
em {
  font-style: normal;
}
strong {
  font-weight: normal;
}
label {
  margin: 0;
}

/* base */
body {
  font-family: "Figtree", sans-serif;
  color: black;
  font-size: 16px;
  line-height: 1.2;
  min-height: 100%;
  background-color: #ffffff;
}
a {
  color: black;
}

.hidden {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}
.clear:after {
  content: "";
  display: block;
  clear: both;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.pc {
  display: block;
}
.m {
  display: none;
}
.pc_img {
  display: block;
}
.m_img {
  display: none;
}
.pc_table {
  display: table;
}
.m_table {
  display: none;
}

*::selection {
  background-color: #524fdd;
  color: #fff;
}

html {
  position: relative;
  min-height: 100%;
  margin: 0;
}

.wrap {
  width: 100%;
  overflow: hidden;
}

#en {
  font-family: "figtree", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  padding: 15px 0;
  background-color: transparent;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}

header .inner {
  max-width: 1320px;
  margin: 0 auto;
}

header h1 {
  float: left;
}

header nav {
  float: right;
  display: block;
}

header .gnb_pc ul {
  float: left;
}

header .gnb_pc li {
  float: left;
  padding: 0 15px;
  line-height: 60px;
  font-weight: bold;
}

header .gnb_pc > .clear > li > a {
  color: black;
}

header .gnb_pc > .clear li.on a {
}

header .side_menu {
  display: none;
  padding: 80px 40px 40px;
}

header .side_menu .gnb_m li {
  font-weight: bold;
}

header .side_menu .gnb_m li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 15px 0;
  color: #ffffff;
}

.side_menu {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* MENU CONTAINER */
.side_menu {
  background: white;
  height: 100vh;
  position: fixed;
  right: -250px;
  top: 0;
  width: 250px;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}
.side_menu .container {
  padding: 0 1em;
}

/* HAMBURGER STYLES */
.burger_box {
  display: block;
  position: fixed;
  top: 18px;
  right: 25px;
}
.burger_box a.menu-icon {
  display: inline-block;
  float: none;
  height: 25px;
  padding: 10px;
  opacity: 0.5;
  width: 25px;
  z-index: 100;
}
.burger_box a.menu-icon,
.burger_box a.menu-icon.opened {
  opacity: 1;
}
.burger_box .menu-icon_box {
  display: inline-block;
  height: 25px;
  position: relative;
  text-align: left;
  width: 25px;
}
.burger_box .menu-icon_line {
  background: black;
  border-radius: 2px;
  display: inline-block;
  height: 2px;
  position: absolute;
  width: 100%;
  /* box-shadow: 3px 3px 12px rgb(0 0 0 / 0.2) !important; */
}
.burger_box .menu-icon_line--1 {
  top: 10px;
}
.burger_box .menu-icon_line--2 {
  top: 18px;
}
.burger_box .menu-icon_line--3 {
  top: 26px;
}
.burger_box .menu-icon_line--1 {
  transition: top 200ms 250ms, transform 200ms;
  -webkit-transition: top 200ms 250ms, -webkit-transform 200ms;
}
.burger_box .menu-icon_line--2 {
  transition: opacity 0ms 300ms;
  -webkit-transition: opacity 0ms 300ms;
}
.burger_box .menu-icon_line--3 {
  transition: top 100ms 300ms, transform 200ms;
  -webkit-transition: top 100ms 300ms, -webkit-transform 200ms;
}
.burger_box .menu-icon.opened .menu-icon_box {
  transform: scale3d(0.9, 0.9, 0.9);
  -webkit-transform: scale3d(0.9, 0.9, 0.9);
}
.burger_box .menu-icon.opened .menu-icon_line {
  top: 18px;
}
.burger_box .menu-icon.opened .menu-icon_line--1 {
  transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transition: top 100ms, transform 200ms 250ms;
  -webkit-transition: top 100ms, -webkit-transform 200ms 250ms;
}
.burger_box .menu-icon.opened .menu-icon_line--2 {
  opacity: 0;
  transition: opacity 200ms;
  -webkit-transition: opacity 200ms;
}
.burger_box .menu-icon.opened .menu-icon_line--3 {
  transform: rotate3d(0, 0, 1, -45deg);
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transition: top 200ms, transform 200ms 250ms;
  -webkit-transition: top 200ms, -webkit-transform 200ms 250ms;
}

footer {
  padding: 20px 0;
  background: linear-gradient(to right, #524fdd 0%, #0b0b1f 100%);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

footer .copy {
  text-align: center;
  font-size: 12px;
  color: #faf8f9;
}

@keyframes elementor-animation-push {
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.btn_top {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
  color: #524fdd;
}

.btn_top:hover {
  background: linear-gradient(to top, #524fdd 0%, #908eea 100%);
  color: #fff;
}
