@charset "shift_jis";
/* evetan_nav.incより移行 */
/* ===== イベたんページ専用スタイル ===== */
#headerArea,
.headerBg {
  display: none !important;
}
#mainImg {
  display: none !important;
}

/* ----- 新規ヘッダー ----- */
#evetanHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  box-sizing: border-box;
}
#evetanHeaderIn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 80px;
}
#evetanHeaderLogo {
  display: flex;
  align-items: center;
  gap: 16px;
}
#evetanHeaderLogo a:first-child {
  width: 134px;
}
#evetanHeaderLogo a:last-child {
  width: 105px;
}
#evetanHeaderLogo img {
  width: 100%;
  height: auto;
  display: block;
}
#evetanHeaderNav {
  display: flex;
  align-items: center;
  justify-content: end;
}
#evetanHeaderNavList {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
#evetanHeaderNavList li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
#evetanHeaderNavList li a:hover {
  color: #33b1d9;
  text-decoration: none;
}
#evetanHeaderContact {
  width: 154px;
  height: 49px;
  border-radius: 990px;
  background: linear-gradient(to right, #ff6e2e 0%, #ff3b00 100%);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  border: 1px solid #ff3b00;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 25px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}
#evetanHeaderContact:hover {
  background: #fff;
  color: #ff3b00;
  text-decoration: none;
}
#evetanHeaderContact:hover::before {
  background: url("/eve-full/img/common/button_icon_orange.svg") no-repeat
    center;
  background-size: contain;
}
#evetanHeaderContact::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 990px;
  background: url("/eve-full/img/common/button_icon.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(0, -50%);
}

/* ----- ハンバーガーボタン ----- */
#evetanMenuBtn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  margin-left: 12px;
}
#evetanMenuIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 24px;
}
#evetanMenuIcon span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transform-origin: center;
}
#evetanMenuBtn p {
  font-size: 10px;
  font-weight: bold;
  color: #333;
  margin: 3px 0 0;
  letter-spacing: 0.05em;
}

/* ----- ドロワーメニュー ----- */
#evetanDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-sizing: border-box;
}
body.evetan-open #evetanDrawer {
  transform: translateX(0);
}
body.evetan-open {
  overflow: hidden;
}

#evetanDrawerHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  height: 56px;
  border-bottom: 1px solid #eee;
}
#evetanDrawerLogo {
  display: flex;
  align-items: center;
  gap: 8px;
}
#evetanDrawerLogo img {
  height: 28px;
  width: auto;
  display: block;
}
#evetanDrawerRight {
  display: flex;
  align-items: center;
  gap: 10px;
}
#evetanDrawerContact {
  display: inline-flex;
  align-items: center;
  background-color: #ff7c21;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 10px 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}
#evetanDrawerContact .hBtnIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 8px;
  flex-shrink: 0;
}
#evetanDrawerContact .hBtnIcon::after {
  content: "\2192";
  color: #ff7c21;
  font-size: 11px;
  font-weight: bold;
}
#evetanDrawerClose {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
#evetanDrawerCloseIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 24px;
}
#evetanDrawerCloseIcon span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
}
#evetanDrawerCloseIcon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#evetanDrawerCloseIcon span:nth-child(2) {
  opacity: 0;
}
#evetanDrawerCloseIcon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
#evetanDrawerClose p {
  font-size: 10px;
  font-weight: bold;
  color: #333;
  margin: 3px 0 0;
  letter-spacing: 0.05em;
}

#evetanDrawerList {
  list-style: none;
  margin: 0;
  padding: 0;
}
#evetanDrawerList li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
#evetanDrawerList li a::after {
  content: "\2192";
  color: #bbb;
  font-size: 18px;
}
#evetanDrawerList li a:hover {
  background-color: #f9f9f9;
  text-decoration: none;
}

#evetanDrawerBottom {
  padding: 30px 5%;
  text-align: center;
}
#evetanDrawerCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff7c21;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 20px 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}
#evetanDrawerCta .hBtnIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 15px;
  flex-shrink: 0;
}
#evetanDrawerCta .hBtnIcon::after {
  content: "\2192";
  color: #ff7c21;
  font-size: 14px;
  font-weight: bold;
}
#evetanDrawerCta:hover {
  opacity: 0.8;
  text-decoration: none;
}

#evetanDrawerFootLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}
#evetanDrawerFootLogo img {
  height: 30px;
  width: auto;
}

/* ----- イベたんナビ フル幅 ----- */
#evetanNav {
  margin-top: 53px;
}
#evetanNav ul {
  width: 100%;
  max-width: none;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
}

/* ----- レスポンシブ ----- */
@media screen and (max-width: 1200px) {
  #evetanHeaderNavList {
    display: none;
  }
  #evetanMenuBtn {
    display: flex;
  }
  #evetanHeaderIn {
    padding: 0 10px;
    height: 53px;
  }
  #evetanHeaderLogo {
    gap: 11px;
  }
  #evetanHeaderLogo a:first-child {
    width: 96px;
  }
  #evetanHeaderLogo a:last-child {
    width: 75px;
  }
  #evetanHeaderContact {
    margin: 0;
    width: 96px;
    height: 31px;
    font-size: 11px;
  }
  #evetanHeaderContact::before {
    width: 10px;
    height: 10px;
    right: 7px;
  }
  #evetanNav {
    margin-top: 30px;
  }
  #evetanNav ul {
    padding: 0;
  }
}
#evetanNav {
  overflow: unset;
  margin-top: 80px;
  z-index: 4;
}
#article {
  clear: both;
}
.header {
  z-index: 6;
}
.drawer-menu {
  z-index: 101;
}
nav.header_nav a {
  color: #212121;
}
a.header_contact {
  color: #fff;
}
.drawer-menu_list li a {
  color: #212121;
}
#evetanMain .tabConts {
  clear: both;
}
@media screen and (max-width: 767px) {
  #evetanNav {
    margin-top: 30px;
    margin-bottom: 70px;
  }
  #evetanMain {
    margin-top: 80px;
  }
}

