@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

html {
  margin: 0;
  height: -webkit-fill-available;
  font-family: 'Zen Maru Gothic', serif;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

.wrap {
  position: relative;
  margin: 0;
  max-width: 100%;
  min-height: 100%;
  background-color: #fff;
}

p, h1, h2, h3, h4, h5, th, td {
  color: #585858;
}

ul, li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #585858;
}

.preview {
  visibility:visible;
}

.accounts-header {
  top: 0;
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  border-bottom: solid 1px #e5e5e5;
  background-color: #fff;
  z-index: 98;
}

.accounts-header .launica_logo {
  margin: auto 0 auto 15px;
}

.accounts-header .launica_logo a h1 img {
  width: 230px;
  margin-top: 5px;
  margin-left: 10px;
  opacity: 1;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .accounts-header {
    height: 60px;
  }
  
  .accounts-header .launica_logo a h1 img {
    width: 210px;
    margin-top: 5px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) and (min-width: 481px) {

  .accounts-header {
    justify-content: space-evenly;
    height: 60px;
  }
  
  .accounts-header .launica_logo a h1 img {
    width: 200px;
    margin-top: 5px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 480px) and (min-width: 281px) {

  .accounts-header {
    justify-content: space-evenly;
    height: 50px;
  }

  .accounts-header .launica_logo a h1 img {
    width: 150px;
    margin-top: 5px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 280px) {

  .accounts-header .launica_logo a h1 img {
    width: 130px;
    margin-top: 5px;
    margin-left: 8px;
  }


  .accounts-header {
    justify-content: space-evenly;
    height: 50px;
  }
}