@charset "UTF-8";
/* CSS Document */
#fixed-header {
  position: fixed;
  top: -70px;
  width: 100%;
  height: 1.2em;
  line-height: 70px;
  font-size: 2em;
  text-align: center;
  z-index: 50 !important;
  color: #fff!important;
  background: rgba(0, 0, 0, 0.50);
  box-sizing: border-box;
  transition: .5s; /* アニメーションタイミング */
}
#fixed-header.is-show {
  top: 0;
}
.headeritem a:hover {
  opacity: 0.5
}
.headeritem a{
    color: inherit;
} 
.headeritem {
  height: 1.2em;
  display: flex;
  line-height: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.headeritem img {
  width: 3.3em;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.headeritem p {
  color: #fff!important;
  margin: auto;
  text-align: center;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  font-size: 0.42em;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}