@charset "utf-8";
/* ---------------------------------------------------- */
/* ヘッダーメニュー */
/* ---------------------------------------------------- */
a {
  text-decoration: none;
}
#fixed-header {
  z-index: 100;
  position: fixed;
  top: -60px;  
  width: 100%;
  height: 60px;
  line-height: 70px;
  font-size: 2em;
  text-align: center;
  color: #000000;
  box-sizing: border-box;
  transition: .5s;
  background-color: rgb(255, 255, 255);
  border-bottom: 2px solid #000000;
}
@media screen and (min-width: 900px) {
  #fixed-header {
    top: -60px; 
    height: 60px;
  }
}
#fixed-header.is-show {
  top: 0;
}
#content {
  height: 2000px;
}
.header-item{
  margin-right: auto;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .header-item{
    display: none;
  }
}
.header-item a{
  color: #073046;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  padding: 5px 20px 5px 0px;
  background-image: url(../img/icon_arrowR.svg);
  background-size: 15px;
  background-position: right center;
  background-repeat: no-repeat;
}
.header-item a:hover{
  color:#073046;
}
@media screen and (min-width: 900px) {
  .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: 1000px;
  margin: 0 auto;
}

/* ヘッダーのロゴ部分 */
.header-title {
  width: 35px;
}
@media screen and (min-width: 900px) {
  .header-title {
    margin-right: 30px;
    width: 36px;
  }
}
.header-title:hover {
  opacity: 0.8;
}
.header-title img {
  display: block;
  width: 100%;
  height: auto;
}
/* ヘッダーのナビ部分 */
.header-nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #ffffff;
  transition: ease .4s;
  display: flex;
}
@media screen and (min-width: 900px) {
  .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;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 900px) {
  .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: #083046;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.3rem;
  padding: 5px 0 5px 0px;
  background-image: url(../img/icon_arrowR.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 15px;
  /* width: 180px; */
  width: auto; 

  width: 350px;
  padding: 5px 10px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 1.5rem;
    padding: 5px 20px;
     width: auto;
  }
}
.nav-items__item a:hover{
color:#000000;
}

.nav-items__item {
  margin: 0 6px;
}
/* ハンバーガーメニュー */
.header-hamburger {
  width: 48px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #073046;
  position: relative;
  transition: ease .4s;
  display: block;
  color: #9AC9BE;
}
.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);
}

.anker{
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}