@import url('https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap');

@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Oranienbaum", "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 12px;
  margin: 0;
  overflow: visible;
  padding: 0;
}

#contentwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 50px);
  width: 100vw;
}

#content-inner {
  width: 100%;
}

#content-inner #visual {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
}

#content-inner #visual img {
  max-width: 100%;

}


#content-inner #nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

#content-inner #nav #logo {
  width: 15%;
  max-width: 100px;
  min-width: 40px;
}

#content-inner #nav ul {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  list-style: none;
  padding: 0;
  margin: 0;
}

#content-inner #nav ul li {
  margin-left: 50px;
}

#content-inner #nav ul li a {
  text-decoration: none;
  font-weight: 400;
  font-family: "Ryumin Regular KL", serif;
  font-style: normal;
  color: #000;
  font-size: clamp(1rem, 2vw, 1rem);
}


@media screen and (max-width: 800px) {

  #content-inner #nav {
    padding: 0 2vw;
  }

  #content-inner #nav ul li {
    margin-left: 5vw;
  }

  #content-inner #nav ul li a {
    font-size: clamp(0.2rem, 3vw, 1.0rem);
  }
}


footer.footer {
  text-align: left;
  background: #fff;
  width: 100%;
  color: #333;
  height: 50px;

}

footer.footer a {
  color: #333;
  text-decoration: none;
}

.footer-inner {
  width: 94vw;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;

}

@media screen and (max-width: 767px) {
  .footer-copyright {
    /*display: none;*/
  }
}