@charset "utf-8";

.main {
  font-family: 'Josefin Slab', serif;
}

*,
::before,
::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul,
ol {
  box-sizing: border-box;
  display: flex;
  list-style: none;
  padding-bottom: 5px;
}

a {
  color: inherit;
  font-family: 'Josefin Slab', serif;
  margin-left: 0;
  margin-right: 0;
  text-decoration: none;
}

.body {
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.header-inner ul {
  display: flex;
}

.header {
  background-color: #fff;
}

.footer {
  align-items: center;
  color: #000;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 15px;
}

.footer a {
  border: 0px none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
  text-shadow: 1px 1px 10px #4b2c14;
}

.ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav {
  background: #fff;
  bottom: 0;
  display: block;
  left: -300px;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  transition: all .5s;
  top: 0;
  -webkit-overflow-scrolling: touch;
  z-index: 3;
}

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

nav .inner {
  padding: 25px;
}

nav .inner ul {
  flex-direction: column;
  font-weight: bold;
  list-style: none;
  margin: 10px;
  padding: 10px;
}

nav .inner ul li {
  margin: 0;
  position: relative;
}

nav .inner ul li a {
  color: #333;
  display: block;
  font-size: 20px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}

nav .inner ul li a:hover {
  background: #8d8b86;
}