.siteHeader {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  background: rgba(255,255,255,.92);
	backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}

.siteHeader__inner {
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.siteHeader__logo img {
  display: block;
  width: 220px;
  height: auto;
}
.globalNav a {
  color: #4a4544;
  text-decoration: none;
  font-size: 15px;
	font-weight: 500;
}
.globalNav a {
  transition:
    opacity .35s ease,
    transform .35s ease;
}

.globalNav a:hover {
  opacity: .55;
  transform: translateY(-1px);
}

.globalNav__list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.globalNav__item {
  position: relative;
}

.globalNav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a4544;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .3s ease;
}
.globalNav__item > a:hover {
  opacity: .6;
}
.globalNav__arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #4a4544;
  border-bottom: 1.5px solid #4a4544;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s ease;
}
.globalNav__subMenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  min-width: 180px;
/*
  padding: 14px 0;
*/
  background: #fff;
  border: 1px solid #ddd;
/*
  border-radius: 12px;
*/

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.globalNav__subMenu a {
  display: block;
  padding: 12px 20px;
  color: #4a4544;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
	opacity: 1 !important;
  transform: none !important;
}

.globalNav__subMenu a:hover {
  background: #f7f7f7;
	opacity: 1;
}
.globalNav__item--hasChild:hover .globalNav__subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/*
.globalNav__item--hasChild:hover .globalNav__arrow {
  transform: rotate(225deg) translateY(-1px);
}
*/
a.globalNav__recruit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  padding: 0 15px;
/*
  border-radius: 999px;
*/
  background: #595554;
  color: #fff !important;
	font-weight: 700;
  letter-spacing: .03em;
}

.menuBtn {
  display: none;
}

.siteMain {
  padding-top: 72px;
}

.mainVisual {
  height: 490px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #333;
  font-size: 42px;
}
.spMenu {
  display: none;
}
@media (max-width: 1200px) {
	.globalNav__list {
  	gap: 32px;
	}
}
@media (max-width: 1070px) {
  .globalNav {
    display: none;
  }
  .spMenu {
		display: block;
    position: fixed;
    inset: 52px 0 0;
    z-index: 999;
    background: rgba(255,255,255,.97);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .spMenu.is-open {
    transform: translateX(0);
  }

  .spMenu__nav {
    display: grid;
    padding: 32px 24px;
  }

  .spMenu__nav > a {
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 16px;
  }
	.spMenu__item {
	  border-bottom: 1px solid #ddd;
	}

	.spMenu__toggle {
	  width: 100%;
	  min-height: 60px;
	  padding: 0;

	  display: flex;
	  align-items: center;
	  justify-content: space-between;

	  background: none;
	  border: 0;

	  color: #4a4544;
	  font-size: 16px;
	  font-weight: 500;
	  text-align: left;
	}

	.spMenu__arrow {
	  width: 8px;
	  height: 8px;

	  border-right: 1.5px solid #4a4544;
	  border-bottom: 1.5px solid #4a4544;

	  transform: rotate(45deg);
	  transition: transform .3s ease;
	}

	.spMenu__item.is-open .spMenu__arrow {
	  transform: rotate(225deg);
	}

	.spMenu__subMenu {
	  display: none;
/*
	  padding-bottom: 12px;
*/
	}

	.spMenu__subMenu a {
	  display: block;
	  padding: 14px 20px;
		border-bottom: 1px solid #eee;
	  color: #666;
	  font-size: 15px;
	  text-decoration: none;
	}
	.spMenu__subMenu a:last-child {
 	 border-bottom: none;
	}
  .menuBtn {
    width: 52px;
    height: 52px;
    margin-right: -16px;
    border: 0;
    background: #595554;
    display: grid;
    place-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menuBtn span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s;
  }

  .menuBtn.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menuBtn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menuBtn.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

}
/* スマホ */
@media (max-width: 767px) {
  .siteHeader {
    height: 52px;
  }

  .siteHeader__inner {
    padding: 0 16px;
  }

  .siteHeader__logo img {
    width: 190px;
  }

  .globalNav {
    display: none;
  }


  .siteMain {
    padding-top: 52px;
  }

  .mainVisual {
    height: 220px;
    font-size: 22px;
  }

}