@charset "UTF-8";

/**/
.header{
  background-color: rgba(255, 255, 255, 0.5);
  position: sticky;
  top: 0;
  /* padding-left: var(--margin-h-pc); */
  padding: 0 var(--margin-h-pc);
  z-index: 100;
}

.header__logo{
  /* width: 161px; */
  /* height: 65px; */
  position: absolute;
  left: 26px;
  width: 300px;
  aspect-ratio: 400/80;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__logo-img{
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header{
    padding: 0 16px;
  }
  .header__logo{
    position: absolute;
    left: 16px;
    width: 200px;
    aspect-ratio: 400/80;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.header__inner{
  max-width: var(--max-width-pc);
  display: flex;
  justify-content: end;
  align-items: center;
  height: 85px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .header__inner{
    height: 60px;
  }
}


.header__nav{
  font-size: 14px;
  font-weight: 700;
}
.header__nav-list{
  list-style: none;
  display: flex;
  /*width: 400px;*/
  justify-content: end;
  align-items: center;
  margin-right: 80px;
}
.header__nav-item{
  color: var(--color-black);
  /*スタック外とはブレンドできない>>ヘッダー背景薄塗で
  mix-blend-mode: difference;
  mix-blend-mode: exclusion;
  */
  margin-left: 24px;
  line-height: 1.75;
}
@media screen and (max-width: 1024px) {
  .header__nav{
    display: none;
  }
}

.header__contact{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-lightgray);
  width: 160px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 1024px) {
  .header__contact{
    display: none;
  }
}

.sp-menu-icon{
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp-menu-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    aspect-ratio: 18/14;
  }
  .sp-menu-icon > span{
    display: block;
    width: 100%;
    border-bottom: solid 2px var(--color-black);
  }
}


/**/
.sp-menu{
  background-color: var(--color-white);
  position: fixed;
  top: 0px;
  width: 100%;
  height: 0%;
  z-index: 200;
  opacity: 0;
  transition: 0.3s ease-in;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .sp-menu.is-opened{
    height: 100%;
    opacity: 1;
  }
}

.sp-menu__header{
  display: flex;
  justify-content: end;
  align-items: center;
  height: 60px;
  margin: 0 auto;
  padding: 0 16px;
}
.sp-menu__body{
}
.sp-menu__body-inner{
  padding: 64px 16px;

}
.sp-menu__nav{
  border-bottom: 112px;
}
.sp-menu__nav-list{
  list-style: none;
}
.sp-menu__nav-item{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.56px;
  margin-bottom: 24px;
}
.sp-menu__contact{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-lightgray);
  width: 160px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  margin: 113px auto 0 ;
}

