@charset "UTF-8";
/* --------------------------------------- */
/* --------------------------------------- */
.pageMenu-list .hasSub button, .pageMenu-close, .pageMenu-btn .line, .pageMenu-btn, #pageMenu, .page {
  transition: 0.2s;
}

/* --------------------------------------- */
/* page */
/* --------------------------------------- */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.page_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background: rgba(3, 2, 1, 0.3);
  z-index: -2;
}

.openmenu {
  transform: translateX(260px);
}

.page.openmenu .page_cover {
  z-index: 1001;
  top: 0;
  transition: background-color 0.2s;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background: #fff;
}

a{color: #333;}

/* --------------------------------------- */
/* menu */
/* --------------------------------------- */
#pageMenu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0;
  width: 0;
  max-height: 100vh;
  background: #fff;
}

.openmenu ~ #pageMenu {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  left: 0;
  width: 260px;
  display: none;
  overflow-y: auto;
}

.openmenu ~ #pageMenu {
  display: block;
}

/* menu_按鈕 */
.pageMenu-btn {
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  background-color: #fff;
  display: none;
}

.pageMenu-btn .line {
  display: block;
  position: absolute;
  left: calc(50% - 12px);
  width: 24px;
  height: 3px;
  background-color: #007D7D;
  border-radius: 2px;
}

.pageMenu-btn .line01 {
  top: calc(50% - 4.5px - 5px);
}

.pageMenu-btn .line02 {
  top: calc(50% - 1.5px);
}

.pageMenu-btn .line03 {
  top: calc(50% + 1.5px + 5px);
}

.pageMenu-close {
  position: absolute;
  top: 0;
  right: 3px;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: url(../images/head-pagemenu-close.svg) center center no-repeat;
  background-size: auto;
}

.openmenu .pageMenu-close {
  z-index: 2;
}

/* --------------------------------------- */
.pageMenu-nav {
  display: flex;
  gap: 0 12px;
  padding: 0 20px;
}


@media screen and (max-width: 900px) {
    .pageMenu-btn{display: block;}
  .pageMenu-head {
    height: 50px;
    padding: 8px 12px;
  }
  .pageMenu-logo {
    display: block;
    width: 120px;
    height: 34px;
  }
  .pageMenu-btnBox {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px 0;
    padding: 16px 16px 0;
  }
  .pageMenu-btnBox .bt {
    display: block;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
    padding: 4px;
    border-radius: 20px;
  }
  .pageMenu-btnBox .login {
    color: #fff;
    background-color: #007D7D;
  }
}

@media screen and (max-width: 540px) {
  .pageMenu-nav {
    gap: 0 6px;
  }
}
@media screen and (max-width: 374px) {
  .pageMenu-nav {
    gap: 0 3px;
    padding: 0 12px;
  }
}
.pageMenu-nav a {
  flex: 1 1 auto;
  display: block;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  letter-spacing: 0;
  text-align: center;
  border-bottom: solid 4px transparent;
}
@media screen and (max-width: 374px) {
  .pageMenu-nav a {
    font-size: 17px;
  }
}
.pageMenu-nav a.open {
  font-weight: 500;
  color: #007D7D;
  border-bottom-color: #007D7D;
}

/* menu_清單 */
.pageMenu-list {
  padding-left: 0;
  list-style: none;
}
.pageMenu-list > li {
  list-style: none;
}
.pageMenu-list .first {
  display: block;
  position: relative;
  z-index: 2;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  font-weight: 500;
  padding: 0 16px;
  text-decoration: none;
}
.pageMenu-list .list-sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}
.pageMenu-list .list-sub a {
  display: block;
  height: auto;
  line-height: 1.5em;
  padding: 4px 24px;
  border-bottom: none;
}

.pageMenu-list a{color: #333;}

/* --------------------------------------- */
/* --------------------------------------- */
.pageMenu-list .hasSub {
  position: relative;
}
.pageMenu-list .hasSub button {
  position: absolute;
  top: 0;
  right: 3px;
  z-index: 3;
  width: 50px;
  height: 50px;
  cursor: pointer;
  outline: none;
  background: url(../images/header-arrow-down.svg) center center no-repeat;
  border: none;
}
.pageMenu-list .hasSub.open {
  background-color: #E6F0F1;
}
.pageMenu-list .hasSub.open .hasSub-btn button {
  transform: scaleY(-1);
}
.pageMenu-list .hasSub.open .list-sub {
  padding: 4px 0;
}/*# sourceMappingURL=global.css.map */