.none {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.font_roma {
  font-family: 'Courier New', Courier, monospace;
}
ul {
  list-style: none;
}
.container ul {
  list-style-type: disc;
}
p {
  margin: 0;
}
h1 {
  margin-bottom: 0;
  line-height: 2em;
}
.void {
  height:1px;
}
.border-w {
  border: 0.1px solid #fff;
  margin-bottom: 5%;
}
.border-b {
  border: 0.1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 5%;
}
html {
  font-size: 16px;
}

/* title ----------------------------------------*/
.title_container {
  margin-top: 52px;
  width: 100%;
  height: 120px;
  background-image: url(../img/title2.jpg);
  background-position-y:  30% ;
  background-size: cover;
  background-repeat: no-repeat;
  
  /* box-shadow: 10px 10px 10px#000; */
  /* z-index: 1; */
}
.title_over {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.title_label {
  width: 100%;
  height: 65%;
  background-color: rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  font-size: 16px;
}
.title_label > div {
  width: 100%;
  text-align: center;
}
.title_label h1 {
  margin: 0;

  line-height: 1.2em;
  font-weight: normal;
  font-family: 'American Typewriter', 'Courier New', Courier, monospace;
}
.title_label h2 {
  margin: 0;
  font-size: 90%;
  font-weight: normal;
  line-height: 0.8em;
}
.code_1 {
  transform: rotate(180deg);
  margin-left: 10px;
}
.code_2 {
  right: 10px;
  margin-right: 10px;
}

/* body--------------------------------------------------- */
body {
  font-family: 'ヒラギノ明朝 ProN' ,'Hiragino Mincho ProN';
  color: #333333;
  background-color: #F0F0F0;

  margin: 0;
  position: relative;

  animation: fadeIn 1.2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  15% {
    opacity: 0
  }
  
  100% {
    opacity: 1
  }
}
/* humberger menu -------------------------------------*/
#cover {
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  transition: .4s;
  opacity: 0;
}
body.menu-open #cover {
  visibility: visible;
  opacity: .6;
  z-index: 1;
}
body.menu-open #menu {
  transform: translate(0, 0);
  position: absolute;
  top: 0;
  display: block;
}
#menu {
  position: fixed;
  top: 0;
  transform: translate(0, -500px);
  background: #F0F0F0;
  padding: 8px;
  box-sizing: border-box;
  width: 100%;
  transition: 0.55s;
}
.menuWrapper {
  transform: scale(0.6);
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  z-index: 5;
  /* border: 1px solid #ccc; */
  width: 50px;
  height: 50px;
}

#menuButton {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 4;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

#menuButton span,
#menuButton::before,
#menuButton::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left:0;
  right: 0;
  width: 36px;
  height: 1px;
  margin: auto;
  background: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#menuButton::before {
  z-index: 2;
  transform: translate(0, -12px);
  content: "";
}
#menuButton::after {
  z-index: 2;
  transform: translate(0, 12px);
  content: "";
}

#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before,
#menuButton::after {
  transition: transform 200ms;
}

#menuButton.active span {
  opacity: 0;
  transition: opacity 150ms;
}
#menuButton.active::before {
  transform: rotate(45deg);
}
#menuButton.active::after {
  transform: rotate(-45deg);
}
