/*============================
	header
============================*/

.header {
    width: 100%;
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
  }
  /* スクロール後の背景色を設定 */
  /* .scrolled-header {
    background-color: #fff; 
  } */
  
  .hd__inner {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 0 0;
    position: relative;
  }
  .hd__flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .hd__left {
    width: 13%;
  }
  .hd__logo {
    width: 100%;
  }
  .hd__right {
    width: auto;
  }
  
  
  .hd_h1 p{
    font-size: 11px;
  }
  
  
  @media screen and (max-width:1024px) {
    .hd__right {
      display: none!important;
    }
    .hd__inner {
      padding: 20px 0 0;
    }
  }
  @media screen and (max-width:768px) {
    .hd_h1 p {
      font-size: 1.3vw;
    }
    .hd__inner {
      padding: 10px 0 0;
    }
  }
  
  
  /* 縦並びのナビゲーション */
  .hd__sns{
    column-gap: 10px;
  }
  .hd__nav{
    position: absolute;
    top: 125%;
    right: 0;
  }
  .hd__nav__item {
    text-align: center;
  }
  .hd__nav__item .font-en{
    font-size: 18px;
    color: #706656;
    text-transform: uppercase;
    font-family:'Lato', serif;
    font-weight: bold;
  }
  .hd__nav__item .font-jp{
    font-size: 14px;
  }
  .hd__nav__item a{
    position: relative;
    display: block;
    font-size: 15px;
    padding: 4px 0 4px 0;
  }
  .hd__nav__item a::after {
    content: '';
    display: block;
    position: absolute;
    top: -8rem;
    left: 50%;
    width: 1px;
    height: 100px;
    background-color: #767065;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .hd__nav__item a:hover::after {
    opacity: 1; /* ホバー時に表示 */
  }
  
  .hd__nav__item a p{
    display: inline-block;
  }
  .header .flex100{
    width: 75%;
    margin-bottom: 3rem;
  }
  
  .hd__nav__tel {
    display: none;
  }
  
  
  @media screen and (max-width:1469px) {
    .hd__nav__item {
      margin: 0 1vw;
  }
  }
  @media screen and (max-width:1150px) {
  .header .flex100 {
      width: 86%;
  }
    .hd__left {
      width: 13%;
  }
    .hd__nav__item {
      margin: 0 1px;
  }
  }
  @media screen and (max-width:1080px) {
    .header .flex100 {
      width: 80%;
  }
  
  }
  
  @media screen and (max-width:1024px) {
    
  .hd__nav__tel {
    display: block;
  }
  }
  @media screen and (max-width:414px) {
    .hd__left {
      width: 20%;
  }
  }
  /***** ハンバーガー ▼*****/
  
  .hd__hamburger {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    margin: auto;
    width: 50px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
  }
  .hd__hamburger::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    background: #0a0a0a
  }
  .hd__hamburger .span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #ffffff; 
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .hd__hamburger .span:nth-child(1) {
    top: 0;
  }
  .hd__hamburger .span:nth-child(2) {
    top: 15px;
  }
  .hd__hamburger .span:nth-child(3) {
    top: 30px;
  }
  
  
  /* open */
  .hd__nav--sp.open .hd__hamburger .span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
    background: #ffffff;
  }
  .hd__nav--sp.open .hd__hamburger .span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .hd__nav--sp.open .hd__hamburger .span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
    background: rgba(255, 255, 255, 0.4);
  }
  
  
  /* hamburger menu */
  .hamburger__inner {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 8% 5%;
    width: 100%;
    height: 100%;
    background:rgb(0 0 0 / 80%);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  }
  
  
  .nav__items--sp {
    display: grid;
    place-content: center;
    place-items: center;
    text-align: center;
    width: 100%;
    margin-top: 2rem;
  }
  .nav__item--sp{
    margin-bottom: 20px;
    color:#fff;
  }
  .nav__item--sp a {
    font-size: 14px;
    text-transform: uppercase;
  }
  .nav__item--sp a img{
  
  }
  .nav__item--sp .font-en{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .nav__item--sp .font-en::first-letter{
    text-transform: uppercase;
  }
  .hd__nav--sp.open .hamburger__inner {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
  }
  
  @media screen and (max-width:1024px) {
    .hd__hamburger {
      display: block;
      width: 40px;
      height: 30px;
      top: 25px;
      right: 20px;
    }
  }
  @media screen and (max-width:768px) {
    .hd__hamburger {
      width: 33px;
      height: 25px;
      top: 20px;
      right: 20px;
    }
    .hd__hamburger::before{
      height: 45px;
    }
    .hd__hamburger .span:nth-child(2) {
      top: 10px;
    }
    .hd__hamburger .span:nth-child(3) {
      top: 20px;
    }
  
    .hamburger__inner{
      width: 100%;
      padding:15% 8% 3%;
      text-align: center;
    }
  }
  
  
  
  /* sidebar */
  .sidebar{
    position: fixed;
    z-index: 100;
    right: 0;
    top: 20%;
  }
  .side__ig,
  .side__line{
    width:auto;
    text-align: center;
  }
  .side__ig{
    margin-top: 20px;
  }
  .side__line{
    margin-top: 10px;
  }
  