@charset "UTF-8";
/* CSS Document */
/* -----------------------------------------------
   variable
----------------------------------------------- */
@media screen and (min-width: 1025px) {
  .none-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .none-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/* CSS Document */
/* -----------------------------------------------
   common
----------------------------------------------- */
* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  background: #fff;
}

h2 {
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-bottom: 1.5em;
}

a {
  color: #1a0dab;
  transition-duration: 0.5s;
  text-decoration: underline;
}
a:hover {
  color: #2fa9ff;
  text-decoration: none;
}

button,
a.button {
  padding: 3px 6%;
  border-radius: 30px;
  border: 1px solid;
  background: rgba(0, 0, 0, 0);
  letter-spacing: 0.07em;
  transition-duration: 0.5s;
  display: inline-block;
  color: #000;
  text-decoration: none;
}
button:hover,
a.button:hover {
  border: 1px solid #9E342F;
  background: #9E342F;
  color: #fff;
}

main {
  max-width: 900px;
  margin: 16px auto 80px;
  padding: 0 20px;
  text-align: center;
}

img {
  width: 50%;
}

.txt-attention {
  color: #FF0000;
}

.side-l {
  position: fixed;
  writing-mode: vertical-rl;
  margin: auto;
  left: 1em;
  top: 0;
  bottom: 0;
  transform-origin: 10px 10px;
  text-align: center;
}

.side-r {
  position: fixed;
  writing-mode: vertical-rl;
  margin: auto;
  right: 1em;
  top: 0;
  bottom: 0;
  transform-origin: 10px 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #page-wraper > div, #page-wraper > section {
    padding-right: 20px;
    padding-left: 20px;
  }
}
/* -----------------------------------------------
   header
----------------------------------------------- */
header {
  display: flex;
  margin: 0 20px;
  height: 100px;
}
header h1 img {
  position: absolute;
  top: 20px;
  left: 20px;
  fill: #333;
  width: 150px;
  transition-duration: 0.5s;
  z-index: 30;
}
header a {
  color: #333;
}
header a:hover {
  color: #9E342F;
}

/* -----------------------------------------------
   grobal-nav
----------------------------------------------- */
nav ul {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
}
nav li {
  margin-right: 1em;
  margin-left: 1em;
}
nav li:last-child {
  margin-right: 0;
}
nav li a {
  text-align: center;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
nav li a:hover {
  text-decoration: none;
}
nav li a::before {
  content: "";
  position: absolute;
  width: 0;
  background: #9E342F;
  left: 45%;
  height: 1px;
  bottom: 0;
  transition: all 0.3s;
}
nav li a:hover:before {
  width: 100%;
  left: 0;
}

@media screen and (max-width: 950px) {
  nav ul {
    flex-direction: column-reverse;
    top: 120px;
    right: 0;
  }
  nav ul li {
    margin: 0;
  }
  .mean-container a.meanmenu-reveal {
    top: 60px;
  }
  .mean-container .mean-nav ul li {
    background: none;
  }
}
/* -----------------------------------------------
   pankuzu
----------------------------------------------- */
.pankuzu {
  position: absolute;
  left: 20px;
  top: 3.5em;
}
.pankuzu img {
  width: 14px;
}
.pankuzu ul {
  font-size: 80%;
  display: flex;
}
.pankuzu ul li::after {
  content: "＞";
  margin: 5px;
  font-size: 30%;
}
.pankuzu ul li:last-child::after {
  display: none;
}

/* -----------------------------------------------
   footer
----------------------------------------------- */
footer .copyright {
  font-size: 0.5em;
  margin-top: 10%;
  padding-bottom: 1rem;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}/*# sourceMappingURL=common.css.map */