/* ハンバーガーメニュー */
.header__hamburger {
  display: none;
  position: fixed;
  top: 40px;
  right: 20px;
  width: 40px;
  height: 18px;
  cursor: pointer;
  z-index: 1000;
}

.header__hamburger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}

.header__hamburger-line:nth-child(1) {
  top: 0;
}

.header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger-line:nth-child(3) {
  bottom: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* スマホメニュー */
.header__hamburger-target {
  display: none;
  position: fixed;
  /* top: 90px; */
  top: 0px;
  padding-top: 90px;
  padding-bottom: 90px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

  /* ハンバーガーメニューのスクロール制御 */
  body.header__hamburger-open {
    overflow: hidden;
  }



.header__hamburger-target.active {
  display: block;
}

.header__hamburger-target-inner {
  padding: 0px 0px 20px;
}
.header__hamburger-target__logo{
  
}
.header__hamburger-target__logo-link{
  display: block;
  width:80px;
  position: absolute;
  top: 10px;
  left: 20px;
}
.header__hamburger-target-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__hamburger-target-item {
  position: relative;
}



.header__hamburger-target-link {
  display: block;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  font-weight:bold;
}

.header__hamburger-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transform: translateY(10%) rotate(-180deg); /* デフォルトで開いた状態に */
}

.header__hamburger-arrow::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.header__hamburger-arrow.closed {
  transform: none; /* 閉じた状態のスタイル */
}

.header__sp-submenu-list {
  list-style: none;
  padding-left: 0px;
  margin-top: 0px;
  display: block; /* デフォルトで表示 */
  background: #f3f3f3;
}

.header__sp-submenu-list.closed {
  display: none; /* 閉じた状態で非表示 */
}

.header__sp-submenu-item {
  margin-bottom: 0px;
}

.header__sp-submenu-link {
  display: block;
  font-size: 16px;
  text-decoration: none;
  padding: 1em 20px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
  }

  .header__main-nav {
    display: none;
  }
}
