@charset "UTF-8";
/*　────────────────────────────────────────────
 ヘッダーcss
 ────────────────────────────────────────────　*/
.header {
  border-top: 3px solid #b6e400;
  background: #fff;
  position: relative;
  z-index: 3;
}
.header__container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  width: 980px;
  margin-right: auto;
  margin-left: auto;
  height: 74px;
  z-index: -1;
}
.header__logo {
  display: block;
  width: 150px;
}
.header__logo a {
  display: block;
  text-decoration: none;
}
.header__logo a div {
  font-size: 11px;
  text-align: center;
  margin-bottom: 3px;
}
.header__description {
  position: absolute;
  width: 400px;
  top: 29px;
  left: 168px;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.header__description a {
  text-decoration: none;
}
.header__switch {
  position: absolute;
  top: 28px;
  text-align: right;
  right: 0;
}
.header__search__container {
  position: relative;
  width: 420px;
  height: 42px;
  margin-left: 82px;
}
.header__search__container input {
  border: none;
  outline: none;
  text-decoration: none;
  border-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header__nav {
  width: 280px;
  margin-top: 7px;
  margin-left: 36px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.header__nav > li {
  width: 52px;
  position: relative;
}
.header__nav > li > a,
.header__nav > li > p {
  text-decoration: none;
  text-align: center;
  font-size: 11px;
  color: #4d4d4d;
  width: 60px;
  display: block;
  height: 50px;
  position: relative;
  background-repeat: no-repeat;
  background-position: top 1px center;
  background-size: 32px;
  cursor: pointer;
}
.header__nav > li > a:hover,
.header__nav > li > p:hover,
.header__nav > li.is-opened > p {
  color: #b6e400;
}
.header__nav > li:nth-child(1) > a {
  background-size: auto;
  background-image: url("../../images/common/common_header_login.svg");
}
.header__nav > li:nth-child(1) > a:hover {
  background-image: url("../../images/common/common_header_login_hover.svg");
}
.header__nav > li:nth-child(1).logout > a {
  background-size: auto;
  background-image: url("../../images/common/common_header_logout.svg");
}
.header__nav > li:nth-child(1).logout > a:hover {
  background-image: url("../../images/common/common_header_logout_hover.svg");
}
.header__nav > li:nth-child(2) > a {
  background-size: auto;
  background-image: url("../../images/common/common_header_mypage.svg");
}
.header__nav > li:nth-child(2) > a:hover {
  background-image: url("../../images/common/common_header_mypage_hover.svg");
}
.header__nav > li:nth-child(3) > a {
  background-size: auto;
  background-image: url("../../images/common/common_header_notice.svg");
}
.header__nav > li:nth-child(3) > a:hover {
  background-image: url("../../images/common/common_header_notice_hover.svg");
}
.header__nav > li:nth-child(4) > p {
  background-image: url("../../images/common/common_header_guide.svg");
  background-size: auto;
}
.header__nav > li:nth-child(4) > p:hover {
  background-image: url("../../images/common/common_header_guide_hover.svg");
}
.header__nav > li:nth-child(4).is-opened > p {
  background-image: url("../../images/common/common_header_guide_hover.svg");
}
.header__nav > li > a > span,
.header__nav > li > p > span {
  display: block;
  position: absolute;
  bottom: 2px;
  margin-left: 0;
  margin-right: 0;
  left: 0;
  right: 0;
}
.header__nav > li > .guideMenu {
  display: none;
  position: absolute;
  top: 50px;
  left: -65px;
  z-index: 10;
  width: 200px;
  padding: 17px 15px 9px 20px;
  background-color: rgba(0,0,0,0.85);
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.header__nav > li .guideMenu {
  display: none;
}
.header__nav > li .guideMenu > ul > li {
  margin-bottom: 10px;
}
.header__nav > li .guideMenu > ul > li > p > a,
.header__nav > li .guideMenu > ul > li > p > span {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
.header__nav > li .guideMenu > ul >li p a:hover {
  text-decoration: underline;
}
.header__search__field {
  position: absolute;
  top: 0;
  left: 0;
}
.header__search__field input[type="text"] {
  width: 420px;
  height: 42px;
  padding: 0 42px 0 15px;
  color: #828282;
  font-size: 14px;
  line-height: 30px;
  border: 1px solid #4d4d4d;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  letter-spacing: -1px;
}
.header__search__field input[type="text"]:focus {
  outline: none;
  text-decoration: none;
}
.header__search__btn {
  position: absolute;
  top: 0;
  right: 0;
}
.header__search__btn input[type="submit"] {
  width: 40px;
  height: 40px;
  text-indent: 100%;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 140%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  background: url("../../images/common/common_header_search_icon.svg") 8px 11px no-repeat;
}

/* トレンドワード */
.ui-menu .ui-menu-item {
  margin: 0 8px !important;
}

/* サジェスト機能 */
.ui-menu.ui-autocomplete {
  width: 420px!important;
  padding: 4px 0;
  font-size: 12px;
}
.ui-menu.ui-autocomplete .ui-menu-item {
  margin: 8px 10px !important;
  color: #aaaaaa !important;
}
.ui-menu.ui-autocomplete .ui-menu-item-wrapper {
  width: 100%;
  padding: 0 0 !important;
  box-sizing: border-box;
}
.ui-menu.ui-autocomplete a.ui-menu-item-wrapper {
  text-decoration: none;
  color: #828282;
  font-size: 14px;
}
.ui-menu.ui-autocomplete li.ui-menu-item .relation {
  color: #b7e22e;
}
.ui-menu.ui-autocomplete li.category.category__border {
  border-top: 1px dotted #d6d6d6;
  padding-top: 5px;
  margin-top: 5px !important;
}
.ui-menu.ui-autocomplete .ui-state-active {
  background: none;
  border: 1px solid #ffffff;
  border-bottom: 1px solid #aaaaaa;
}