@charset "utf-8";
/* ---------------------------------------------------- */
/* ヘッダーメニュー */
/* ---------------------------------------------------- */
a {
  text-decoration: none;
}
#fixed-header {
  z-index: 100;
  position: fixed;
  top: -50px;  
  width: 100%;
  height: 50px;
  line-height: 70px;
  font-size: 2em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  transition: .5s;
  background-color: rgba(0, 0, 0, .85);
  border-bottom: 2px solid #DC6911;
}
@media screen and (min-width: 760px) {
  #fixed-header {
    top: -60px; 
    height: 50px;
  }
}
#fixed-header.is-show {
  top: 0;
}
#content {
  height: 2000px;
}
.header-item{
  margin-right: auto;
  align-items: center;
}
@media screen and (min-width: 760px) {
  .header-item{
    display: none;
  }
}
.header-item a{
  color: #fff;
  font-size: 1.5rem;
  font-family: 'BLG';
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 5px 0 5px 20px;
  background-image: url(../img/icon_arrowR1.svg);
  background-position: left center;
  background-repeat: no-repeat;
}
.header-item a:hover{
  color:#DC6911;
}
@media screen and (min-width: 760px) {
  .header-item a{
    font-size: 2.2rem;
  }
}
.header-inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* ヘッダーのロゴ部分 */
.header-title {
  width: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 760px) {
  .header-title {
    margin-right: 30px;
    width: 20px;
  }
}
.header-title:hover {
  opacity: 0.8;
}
.header-title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header-nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #000000;
  transition: ease .4s;
  display: flex;
}
@media screen and (min-width: 760px) {
  .header-nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 40%;
    transition: ease .0s;
  }
}
.nav-items {
  margin: auto;
  font-family: 'BLG';
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 760px) {
  .nav-items {
    margin: initial;
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: right;
  }
}

.nav-items__item {
  cursor: pointer;
  position: relative;
  /* height: auto; */
  display: flex;
  align-items: center;
  font-weight: bold;
}

/* ナビのリンク */
.nav-items__item a {
  color: rgb(255, 255, 255);
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 5px 0 5px 0px;
  background-image: url(../img/icon_arrowR1.svg);
  background-position: left center;
  background-repeat: no-repeat;
  width: 140px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (min-width: 760px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 1.4rem;
    width: 125px;
  }
}
.nav-items__item a:hover{
color:#DC6911;
}
/* ハンバーガーメニュー */
.header-hamburger {
  width: 48px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width: 760px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header-nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}