@charset "utf-8";
.fix_header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Edge / Chrome 用 */
  width: 500px;
  height: 60px;
  padding: 5px 10px;
  box-sizing: border-box; /* あると幅の計算が安定します */
  background: #05345f;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fix_header .logo {
  margin: 0 10px 0 0;
}
.fix_header .logo img {
  width: 165px;
}
.fix_header a {
  transition: .3s;
  display: block;
}
.fix_header a:hover {
  opacity: 0.7;
}
.fix_header .bt span {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 20px 5px 20px;
  border-radius: 20px;
}
/*
.fix_header .bt a:before {
  position: absolute;
  content: "";
  background: url("../images/shared/ico_home_w.svg") no-repeat center center/cover;
  width: 16px;
  height: 16px;
  left: 20px;
  top: 7px;
}
*/
.fix_header .bt span {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 11px;
}
/****公式サイト用****/
.fix_header.praie {
  transform: translateX(-48.6%); /* Edge / Chrome 用 */
}
/* Firefox だけ上書き（feature query） */
@supports (-moz-appearance: none) {
  .fix_header.praie {
    transform: translateX(-50%); /* Firefox 用 */
  }
}
.fix_header.praie .bt a {
  padding: 1px 20px 5px 20px;
}
@media only screen and (max-width: 800px) {
  .fix_header {
    width: 100%;
    left: 0%;
    transform: translateX(0%); /* Edge / Chrome 用 */
    height: 55px;
  }
  /* Firefox  */
  @supports (-moz-appearance: none) {
    .fix_header {
      transform: translateX(0%); /* Firefox 用 */
    }
  }
  /****/
  .fix_header .logo {
    margin: 0 0px 0 0;
  }
  .fix_header .logo img {
    width: 130px;
  }
  .fix_header .bt span {
    padding: 3px 10px 3px 10px;
  }
  .fix_header .bt a:before {
    width: 14px;
    height: 14px;
    left: 18px;
    top: 6px;
  }
  .fix_header .bt span {
    font-size: 11px;
  }
  /****公式サイト用****/
  .fix_header.praie {
    position: relative;
    z-index: 10;
    line-height: 1.4em;
    height: 50px;
    transform: translateX(0.0%); /* Edge / Chrome 用 */
  }
  /* Firefox だけ上書き（feature query） */
  @supports (-moz-appearance: none) {
    .fix_header.praie {
      transform: translateX(0%); /* Firefox 用 */
    }
  }
  .fix_header.praie .bt span {
    padding: 2px 10px 5px 10px;
  }
}