@charset "UTF-8";
/* ハンバーガー（SPヘッダー右・メニュー開閉） */
.hamburger {
  display: block;
  position: fixed;
  z-index: 100001;
  right: 12px;
  top: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 8px;
  background: #3e6850;
  padding: 0;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 22px;
  height: 3px;
  left: 14px;
  background: #fff;
  transition: 0.35s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 16px;
}

.hamburger span:nth-child(2) {
  top: 24px;
}

.hamburger span:nth-child(3) {
  top: 32px;
}

.hamburger.active span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

/* ドロワー本体 */
nav.globalMenuSp {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #356347;
  color: #fff;
  text-align: left;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow: hidden;
  box-sizing: border-box;
  padding: 110px 0 0;
}

nav.globalMenuSp.active {
  transform: translateX(0);
}

/* スクロール領域 */
.globalMenuSp_scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* ナビ */
.globalMenuSp_nav {
  margin: 0;
  padding: 0 20px;
  list-style: none;
}

.globalMenuSp_nav li {
  border-bottom: 1px solid rgb(255, 255, 255);
}

.globalMenuSp_nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.08vw;
  padding: 5.13vw 0;
  color: #fff;
  font-size: 4.1vw;
  line-height: 1.5;
  letter-spacing: 0.09em;
  font-weight: 700;
  text-decoration: none;
}

.globalMenuSp_nav a::after {
  content: "";
  flex-shrink: 0;
  width: 2.05vw;
  height: 2.05vw;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(50%);
}

/* フッターと同じ contact_box（style.scss の .contact_box を流用） */
.globalMenuSp .contact_box {
  margin: 12.82vw 5.13vw 0;
  padding: 10.26vw 5.13vw 11.28vw;
  border-radius: 2.56vw;
}

.globalMenuSp_bottom {
  padding: 10.26vw 5.13vw 4.62vw;
}

.drawer_policy {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10.26vw;
}

.drawer_policy a {
  color: #fff;
  font-size: 3.59vw;
  line-height: 1.43;
  letter-spacing: 0.09em;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: block;
}

.drawer_policy a::after {
  content: "";
  position: absolute;
  right: -5.13vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3.59vw;
  background: rgb(255, 255, 255);
}

.drawer_policy li:last-child a::after {
  content: none;
}

/* コピーライト白帯（スクロール内・画面下に固定しない） */
.globalMenuSp_copybar {
  padding: 3.08vw 5.13vw 3.08vw;
  background: #fff;
  text-align: center;
}

.drawer_copyright {
  margin: 0;
  color: #2f2410;
  font-size: 2.82vw;
  line-height: 1.45;
  font-weight: 500;
}

.drawer_copyright small {
  font-size: inherit;
}
/*# sourceMappingURL=menu.css.map */