@charset "UTF-8";

/*==============================
    HEADER STYLE
==============================*/

header {
  position: fixed;
  width: 100%;
  height: 64px;
  border-bottom: 1px solid;
  background: rgba(235, 226, 226, 0.88);
  z-index: 9 !important;
}

header .wrap {
  display: flex;
  justify-content: space-between;
}

.head__logo {
  flex-basis: 20%;
  height: 64px;
}

.head__logo img {
  position: relative;
  top: 50%;
  translate: 0 -50%;
  width: 160px;
  transition: .3s;
}

nav {
  flex-basis: 80%;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 64px;
}

nav a {
  padding: 4px 8px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #BF1B15;
  scale: 0;
  transition: .3s;
}

nav a:hover::after {
  scale: 1;
}

nav .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  width: 40px;
  height: 40px;
  background: #BF1B14;
  border-radius: 100%;
}

nav .contact a {
  padding: 0;
}

nav .contact a:hover {
  translate: 0 -2px;
  background: #111;
  transition: .3s;
}

nav .contact a:hover::after {
  display: none;
}

nav .contact a img:hover {
  opacity: 1;
}

#navArea nav {
  display: block;
  position: fixed;
  top: 0;
  left: -600px;
  bottom: 0;
  width: 100%;
  background: #BF1B14;
  overflow: hidden;
  transition: all .5s;
  z-index: 9;
  opacity: 0;
}

.open#navArea nav {
  left: 0;
  opacity: 1
}

#navArea nav ul {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
}

#navArea nav ul li {
  width: 100%;
}

#navArea nav ul li a {
  display: block;
  position: relative;
  color: #EBE2E2;
  height: 48px;
  text-align: right;
  font-size: 40px;
  border-bottom: 1px solid #EBE2E2;
  font-weight: 800;
}

#navArea nav ul li a span {
  position: relative;
  top: 16px;
  right: -10px;
}

#navArea nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #111;
  z-index: -1;
  scale: unset;
}

#navArea nav ul li a:hover::after {
  width: 100%;
  transition: .6s;
}

.toggle_btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  transition: all .5s;
  cursor: pointer;
  z-index: 9;
}

.open .toggle_btn::before {
  opacity: 0
}

.toggle_btn span {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 32px;
  height: 2px;
  background-color: #BF1B14;
  transition: all .5s
}

.toggle_btn span:nth-child(1) {
  rotate: 90deg;
}

.toggle_btn span:nth-child(2) {
  margin-top: -2px;
}

.open .toggle_btn span {
  background-color: #fff
}

.open .toggle_btn span:nth-child(1) {
  rotate: -360deg;
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0
}

#mask {
  display: none;
  transition: all .5s
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  opacity: 1;
  z-index: 3;
}



/* LOADING */
#loader-bg {
  background: #BF1B15;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
}

#loader-bg img {
  background: #BF1B15;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}