
/********************************************************************
              header area
********************************************************************/
header {
  position: absolute;  z-index: 12;
  background-color: rgba(0, 0, 0, .58);
  width: 100%; height: 51px;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
}
header > h1 {
  position: absolute; top: 50%; left: 5%;
  transform: translate(0,-50%);
  width: auto; height: 28px;
}
header > h1 img {
  width: auto; height: 100%;
}
.mobile-nav {
  position: absolute; right: 0; top: 0; z-index: 99;
  display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  margin: 0rem;
  cursor: pointer;
  width: 50px; height: 50px;
}
.mobile-nav .mobile-box-line {
  width: 22px; height: 2px;
  background: var(--color-white);
  position: relative;
  transition: 1s ease;
}
.mobile-nav .mobile-box-line:nth-of-type(2) {
  margin: 6px 0;
}
.mobile-nav .mobile-box-line-1 {
  transform: rotate(45deg);
  top: 23px;
  position: absolute;
}
.mobile-nav .mobile-box-line-2 {
  display: none;
}
.mobile-nav .mobile-box-line-3 {
  transform: rotate(135deg);
  top: 23px;
  position: absolute;
}
.mobile-menu {
  display: block;
  position: absolute; top: 0; right: 0px; z-index: 98;
  max-width: 0; width: 0%; height: 100vh;
  background: rgba(0, 0, 0, 1);
  transition: 0.6s ease;
  opacity: 0;
}
.mobile-menu ul {
  position: relative; top: 10%;
/* 
  top: 50%; transform: translateY(-50%);
*/
  width: 90%;
  margin: 0 auto; padding: 0;
  display: flex;
  flex-direction: column; flex-wrap: nowrap; align-items: flex-start; justify-content: center;
}
.mobile-menu ul li {
  list-style: none;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
}
.mobile-menu ul li:first-child {
  border-bottom: 0px solid rgba(255, 255, 255, .0);
}
.mobile-menu ul li a {
  position: relative;
  display: block;
  margin: 0 auto; padding: 0px;
  font-size: 0;
  overflow: hidden;
}
.mobile-menu ul li > ul {
  width: 100%;
}
.mobile-menu ul li > ul li.nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background-color: rgba(255, 255, 255, .22);
}
.mobile-menu ul li > ul li.nav-link:last-child {
  border-bottom: 0px solid rgba(255, 255, 255, .0);
}
.mobile-menu ul li > ul li.nav-link > a {
  font-size: var(--font-size-13);
  font-weight: 500;
}
.mobile-menu ul li > ul li.nav-link:active {
  background-color: var(--color-point);
}
/*
.mobile-menu ul li a:after {
  content: '';
  background: var(--color-red);
  width: 100%; height: 100%;
  position: absolute; right: -100%; top: 0; z-index: -1;
  transition: 0.4s ease;
}
.mobile-menu ul li a:hover:after {
  right: 0;
}
*/
.mobile-menu ul li a:hover {
  color: var(--color-white);
}
.mobile-menu img {
  position: absolute; left: 50%; top: 3rem;
  display: block;
  width: 150px;
  text-align: center;
  transform: translatex(-50%);
  padding: 0;
}
.mobile-menu-open {
  right: 0;
  opacity: 1;
  max-width: 100%; width: 100%; height: 100vh;
}
.mobile-menu-open ul li a {
  padding: 15px;
  text-align: left; text-decoration: none;
  font-size: var(--font-size-15); color: var(--color-white); font-weight: 700;
}



/********************************************************************
              Sub Visual area style css
********************************************************************/
.sub-visual {
  position: relative;
  width: 100%; height: 250px;
  background-size: cover;
}
.sub-visual.check {
  background: url('/meritz.new/img/sub/sub-visual-check.png?euni') center no-repeat;
  background-size: cover;
  background-position-x: -500px;
}
.sub-visual.life {
  background: url('/meritz.new/img/sub/sub-visual-life.png?euni') center no-repeat;
  background-size: cover;
  background-position-x: -500px;
}
.sub-visual.service {
  background: url('/meritz.new/img/sub/sub-visual-faq.png?euni') center no-repeat;
  background-size: cover;
  background-position-x: -170px;
}
.sub-visual.terms {
  background: url('/meritz.new/img/sub/sub-visual-terms.png?eun') no-repeat;
  background-position-x: 70%;
  background-size: cover;
}
.sub-visual .inner {
  position: relative;
  width: 100%; height: calc(100% - 52px);
  padding-top: 52px;
  display: flex;
  flex-direction: column; align-items: center; justify-content: center;
}
.sub-visual .inner:before {
  content: "";
  position: absolute; top: 52px; left: 0;
  background-color: rgba(0, 0, 0, .58);
  width: 100%; height: calc(100% - 52px);
}
.sub-visual .inner > h2 {
  position: relative; z-index: 2;
  font-size: var(--font-size-38); font-weight: 700; line-height: 1.4;
  color: var(--color-yellow);
}
.sub-visual .inner > p {
  position: relative; z-index: 2;
  font-size: var(--font-size-18); font-weight: 700; line-height: 1.4;
  color: var(--color-white);
}


/********************************************************************
              Footer area style css
********************************************************************/
footer {
  width: 100%; height: auto;
  background-color: var(--color-dark-gray);
}
footer .inner {
  position: relative;
  width: 90%;
  margin: 0 auto; padding-bottom: 2rem;
}
footer .inner .menu-box {
  height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  padding-top: 0.55rem;
}
footer .inner .menu-box > ul {
  display: flex;
  flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; align-items: center;
  height: 100%;
}
footer .inner .menu-box > ul li {
  padding-left: 4%;
  position: relative;
}
footer .inner .menu-box > ul li:first-child {
  padding-left: 0%;
}
footer .inner .menu-box > ul li a {
  display: block;
  padding: 0;
  font-size: var(--font-size-12); font-weight: 500;
  color: var(--color-white);
}
footer .inner .menu-box > ul li:before {
  content: "";
  display: block;
  position: absolute; top: 50%; left: 7%;
  transform: translate(0%, -50%);
  width: 3px; height: 3px;
  background-color: var(--color-white); border-radius: 100%;
}
footer .inner .menu-box > ul li:first-child:before {
  width: 0px; height: 0px;
  background-color: transparent;
}
footer .inner .address-box {
  margin-top: 1.125rem;
  width: 100%;
}
footer .inner .address-box > ul li {
  display: block;
}
footer .inner .address-box > ul li span {
  position: relative;
  display: block;
  margin-top: 5px;
  /* padding: 0 25px; margin-bottom: 10px; */
  font-size: var(--font-size-12); font-weight: 400;
  color: var(--color-light-silver);
}
footer .inner .address-box > ul li:first-child span:first-child {
  margin-top: 0px;
}
footer .inner .address-box > ul li span:first-child {
  padding-left: 0;
}
footer .inner .address-box > ul li.copyright {
  font-size: var(--font-size-12); font-weight: 300;
  color: var(--color-white); letter-spacing: 0;
  margin-top: 7px;
  margin-bottom: 7px;
}
footer .inner .logo-wrap {
  position: absolute; top: 77px; right: 0px;
}


/********************************************************************
              Top buttom style css
********************************************************************/
.btn-top-wrap {
  position: fixed; bottom: 1rem; right: 2%; z-index: 9;
  display: none;
  width: 42px; height: 42px;
  border-radius: 100%; background-color: rgba(0, 0, 0, .95);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0, .75);
}
.btn-top-wrap > div {
  display: flex;
  justify-content: center; align-items: center;
  width: 100%; height: 100%;
}
.btn-top-wrap > div i.icon-top {
  display: block;
  width: 16px; height: 16px;
  background-color: var(--color-white); background-size: 100%;
  -webkit-mask: url('/meritz.new/img/common/icon-top.svg?euni') no-repeat center;
          mask: url('/meritz.new/img/common/icon-top.svg?euni') no-repeat center;
  -webkit-mask-size: cover;
}


/********************************************************************
              Common area style css
********************************************************************/
.content-wrap {
  width: 90%; height: auto;
  margin: 0 auto 2rem;
}


/********************************************************************
              etc area style css
********************************************************************/
.type-dash {
  text-indent: -10px;
  padding-left: 10px;
}
.type-dot {
  position: relative;
  padding-left: 12px;
}
.type-dot:before {
  content: "";
  position: absolute; top: 6px; left: 0;
  width: 4px; height: 4px;
  border-radius: 100%;
  background-color: var(--color-black);
}
.type-number {
  text-indent: -10px;
  padding-left: 10px;
}
.type-num-circle {
  text-indent: -14px;
  padding-left: 14px;
}



@media only screen and (max-width:999px) and (min-width:500px){
  footer .inner .logo-wrap {
    top: 85px;
  }
}

@media only screen and (max-width: 390px) {
}

@media only screen and (max-width: 375px) {
  footer .inner .logo-wrap {
    top: 81px;
  }
  footer .inner .logo-wrap img {
    width: 75px;
  }
  footer .inner .menu-box > ul li a {
    font-size: .7rem;
  }
}

@media only screen and (max-width: 360px) {
  footer .inner .logo-wrap {
    top: 110px;
  }
  footer .inner .logo-wrap img {
    width: 65px;
  }
  .btn-top-wrap {
    bottom: 2rem;
  }
}

@media only screen and (max-width: 320px) {
  footer .inner .menu-box > ul li a {
    font-size: .55rem;
  }
  .btn-top-wrap {
    bottom: 2rem;
  }
}

@media only screen and (max-width: 280px) {
  footer .inner .address-box > ul li.copyright,
  footer .inner .address-box > ul li span {
    font-size: .65rem;
  }
  footer .inner .logo-wrap {
    top: 106px;
  }
}