
template {
  display: none;
}

#searchOptionForm {
  display: none;
}

#searchOptionElements {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  height: 100%;
  background: #fff;
}
#searchOptionElements.optShow {
  display: block;
  -webkit-animation: showOptions .3s ease-out;
  animation: showOptions .3s ease-out;
}
#searchOptionElements.optHide {
  display: block;
  -webkit-animation: hideOptions .3s ease-in forwards;
  animation: hideOptions .3s ease-in forwards;
}

@-webkit-keyframes showOptions {
  0% {
    -webkit-transform: translate3d(0, 120%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes showOptions {
  0% {
    transform: translate3d(0, 120%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes hideOptions {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 120%, 0);
  }
}
@keyframes hideOptions {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 120%, 0);
  }
}

/* ヘッダー */
.optionHeader {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 50px;
  background: #0a50a1;
}
.optionHeader h2 {
  flex: 1;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
}
.android .optionHeader h2 {
  line-height: 52px;
}
.optionHeader > span {
  display: block;
  position: relative;
  z-index: 0;
  width: 50px;
}

.optionBack span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  visibility: hidden;
  pointer-events: none;
}
.optionBack .active {
  visibility: visible;
  pointer-events: initial;
}
.optionBack span::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 9px;
  height: 9px;
  margin: auto;
  border-left: 2px #fff solid;
  border-bottom: 2px #fff solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  box-sizing: content-box;
  content: "";
}

.optionClose {
  cursor: pointer;
}
.optionClose::before,
.optionClose::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background: #fff;
  content: "";
}
.optionClose::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.optionClose::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 擬似フォーム */
.optionForms {
  height: 100%;
}

.pesudoFrom {
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 0 0 110px;
  border-top: 50px #fff solid;
  background: #fff;
  pointer-events: none;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.pesudoFrom.active {
  z-index: 0;
  pointer-events: initial;
}
.pesudoFrom.standby {
  -webkit-transform: translate3d(110%, 0, 0);
  transform: translate3d(110%, 0, 0);
  transition: all .3s ease-in;
}
.pesudoFrom.standby.active {
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all .3s ease-out;
}
.pesudoFrom.disable {
  -webkit-transform: translate3d(110%, 0, 0) !important;
  transform: translate3d(110%, 0, 0) !important;
  transition: none !important;
}

.pesudoFrom ul,
.pesudoFrom ul li {
  list-style: none;
  margin: 0;
}

/* ------ フリーワード検索 ------ */
#searchKeyword {
  background: #d2e5fa;
  border-color: #d2e5fa;
  padding: 20px 15px 110px;
}
.searchKeywordBlock {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 0;
  background: #fff;
  border: 1px #d1d1d1 solid;
  border-radius: 4px;
  transition: border-color .2s;
}
.searchKeywordBlock.focus {
  border-color: #0a50a1;
}
.searchKeywordBlock.open {
  border-radius: 4px 4px 0 0;
}
#selectKeywordOption {
  position: relative;
  z-index: 0;
  width: 45px;
  min-width: 45px;
  background: #ededed;
  border-right: 1px #d1d1d1 solid;
  box-sizing: border-box;
  cursor: pointer;
}
#selectKeywordOption::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 10px #7d7d7d solid;
  border-left: 8px rgba(0, 0, 0, 0) dashed;
  border-right: 8px rgba(0, 0, 0, 0) dashed;
  content: '';
}
.open #selectKeywordOption::before {
  border-top: none;
  border-bottom: 10px #7d7d7d solid;
}
.searchKeywordBlock label {
  display: block;
  flex: 1;
  position: relative;
  z-index: 0;
  background: #fff;
}
.selectedKeywordOption {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  z-index: 1;
  width: 40px;
  height: 20px;
  margin: auto 0;
  background: #ededed;
  border-radius: 3px;
  border: 1px #d1d1d1 solid;
  font-size: 11px;
  line-height: 19px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}
#optKeyword {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 12px 36px 12px 52px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  outline: none;
  box-shadow: none;
}
.android #optKeyword {
  padding: 13px 36px 11px 52px;
}
#clearSearchKeyword {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 30px;
  background: url(/cmn_web/img/shu/icon_delete_pass.svg) no-repeat 0 50%;
  background-size: 20px;
  opacity: 0;
  cursor: pointer;
  transition: opacity .2s;
  pointer-events: none;
}
#clearSearchKeyword.visible {
  opacity: 1;
  pointer-events: auto;
}
#searchKeyword .keywordOptions {
  display: none;
  position: absolute;
  z-index: 1;
  width: calc(100% - 30px);
  background: #fff;
  border: 1px #d1d1d1 solid;
  border-top: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-sizing: border-box;
}
#searchKeyword .keywordOptions li {
  border-color: #d1d1d1;
}
#searchKeyword .keywordOptions label {
  display: block;
  position: relative;
  z-index: 0;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  cursor: pointer;
}
#searchKeyword .keywordOptions label::before {
  font-size: 12px;
  font-weight: normal;
  vertical-align: top;
  content: "検索範囲： ";
}
#searchKeyword .keywordOptions :checked + label::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  z-index: 0;
  height: 18px;
  margin: auto 0;
  padding: 0 6px;
  background: #82ad2b;
  border-radius: 1px;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  line-height: 19px;
  content: "設定中";
}
.android #searchKeyword .keywordOptions :checked + label::after {
  line-height: 20px;
}

#srSuggest {
  position: static !important;
  background: #fff;
  border: 1px #d1d1d1 solid;
  border-bottom: none;
}
#srSuggest > div {
  padding: 12px 10px 12px 46px;
  background: url(/cmn_web/img/shu/icon_suggest.svg) no-repeat 15px 50%;
  background-size: 16px;
  border-bottom: 1px #d1d1d1 solid;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.android #srSuggest > div {
  padding: 13px 10px 11px 46px;
}
#srSuggest .SuggestAPI {
  font-weight: bold;
}

/* ---------- 職種/業種 ---------- */
.pesudoFrom li {
  border-bottom: 1px #e6e6e6 solid;
}
.pesudoFrom li:last-child {
  border: none;
}
.pesudoFrom li input {
  position: absolute;
  z-index: -1;
  visibility: hidden;
  background: url(/cmn_web/img/shu/icon_checkbox_on.svg) no-repeat, url(/cmn_web/img/shu/icon_checkbox_half.svg) no-repeat;
}
.pesudoFrom .labelBlock {
  display: block;
  position: relative;
  z-index: 0;
  /* line-height: 1.4; */
}
.pesudoFrom .labelBlock .dummyCheckbox {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 20px;
  height: 20px;
  margin: auto 0;
  background: url(/cmn_web/img/shu/icon_checkbox_off.svg) no-repeat;
  background-size: cover;
  opacity: .5;
}
.pesudoFrom :checked + .labelBlock .dummyCheckbox {
  background-image: url(/cmn_web/img/shu/icon_checkbox_on.svg);
  opacity: 1;
}
.pesudoFrom .half .labelBlock .dummyCheckbox {
  background-image: url(/cmn_web/img/shu/icon_checkbox_half.svg) !important;
  opacity: 1;
}
.pesudoFrom .labelText {
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

.pesudoFrom .total,
.pesudoFrom .total::before,
.pesudoFrom .total::after {
  display: inline-block;
  color: #0a50a1;
  font-size: 10px;
  font-weight: normal;
  line-height: 1;
}
.pesudoFrom .total::before {
  content: "（";
}
.pesudoFrom .total::after {
  content: "件）";
}

.upperLists {
  background: #fff;
  border-top: 1px #e6e6e6 solid;
  border-bottom: 1px #e6e6e6 solid;
}
.upperTitle {
  display: block;
  position: relative;
  z-index: 0;
  padding: 17px 69px 17px 15px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  /* line-height: 1.4; */
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
}
.android .upperTitle {
  padding: 18px 69px 16px 15px;
}
.upperTitle.open {
  background: #fafafa;
}
.upperTitle .arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 54px;
  background: #fff;
  cursor: pointer;
  transition: all .3s;
}
.upperTitle.open .arrow {
  background: #eee;
}
.upperTitle .arrow::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 7px;
  left: 0;
  right: 0;
  z-index: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-right: 2px #0a50a1 solid;
  border-bottom: 2px #0a50a1 solid;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
.upperTitle.open .arrow::before {
  top: 7px;
  bottom: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.middleLists {
  display: none;
  background: #fff;
  border-top: 1px #e6e6e6 solid;
}
.middleTitle {
  display: flex;
  align-items: stretch;
}
.middleTitle .title {
  flex: 1;
  background: #fff;
  transition: all .3s;
}
.middleTitle.open .title,
.middleTitle.openLocation .title {
  background: #fafafa;
}
.middleParent {
  font-weight: bold;
}
.middleParent .labelBlock,
.middleTitle .title .labelBlock {
  padding: 17px 15px 17px 46px;
}
.android .middleParent .labelBlock,
.android .middleTitle .title .labelBlock {
  padding: 18px 15px 16px 46px;
}
.middleParent .labelBlock .dummyCheckbox,
.middleTitle .title .labelBlock .dummyCheckbox {
  left: 15px;
}
.middleTitle .arrow {
  display: block;
  position: relative;
  z-index: 0;
  width: 54px;
  background: #eee;
  cursor: pointer;
}
.middleTitle .arrow::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 7px;
  left: 0;
  right: 0;
  z-index: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-right: 2px #0a50a1 solid;
  border-bottom: 2px #0a50a1 solid;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
.middleTitle.open .arrow::before {
  top: 7px;
  bottom: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* 小分類 */
.lowerLists {
  display: none;
  background: #fff;
  border-top: 1px #e6e6e6 solid;
}
.lowerLists .labelBlock,
.middleParent ~ li > .labelBlock {
  padding: 17px 15px 17px 66px;
}
.android .lowerLists .labelBlock,
.android .middleParent ~ li > .labelBlock {
  padding: 18px 15px 16px 66px;
}
.lowerLists .labelBlock .dummyCheckbox,
.middleParent ~ li > .labelBlock .dummyCheckbox {
  left: 35px;
}

/* 勤務地用小分類 */
.middleLists.flex {
  display: block;
  border: none;
}
.middleLists.flex .lowerLists {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.middleLists.flex .lowerLists li {
  width: 50%;
  box-sizing: border-box;
}
.middleLists.flex .lowerLists li:nth-of-type(odd) {
  border-right: 1px #e6e6e6 solid;
}
.middleLists.flex .lowerLists li:nth-of-type(odd):nth-last-of-type(2) {
  border-bottom: none;
}
.middleLists.flex .lowerLists .labelBlock {
  padding: 17px 15px 17px 46px;
}
.android .middleLists.flex .lowerLists .labelBlock {
  padding: 18px 15px 16px 46px;
}
.middleLists.flex .lowerLists .labelBlock .dummyCheckbox {
  left: 15px;
}

/* 詳細条件 */
.checkboxListField,
.optionBlockField {
  margin: 0;
  padding: 0;
  border: none;
}
.checkboxListField:last-of-type {
  border-bottom: 1px #e6e6e6 solid;
}
.checkboxListField legend,
.optionBlockField legend {
  display: block;
  width: 100%;
  height: 34px;
  margin: 0;
  padding: 0 15px;
  background: #eee;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  line-height: 35px;
  box-sizing: border-box;
}
.android .checkboxListField legend,
.android .optionBlockField legend {
  line-height: 37px;
}
.checkboxListField ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.checkboxListField ul li {
  display: flex;
  align-items: stretch;
  width: 50%;
  height: 55px;
  box-sizing: border-box;
}
.checkboxListField ul li:nth-of-type(odd) {
  border-right: 1px #e6e6e6 solid;
}
.checkboxListField ul li:last-of-type,
.checkboxListField ul li:nth-of-type(odd):nth-last-of-type(2) {
  border-bottom: none;
  height: 54px;
}
.checkboxListField ul li:nth-of-type(odd):last-of-type {
  border: none;
  width: 100%;
  height: 54px;
}
.checkboxListField .labelBlock {
  flex: 1;
  padding: 0 15px 0 46px;
}
.checkboxListField .labelBlock .dummyCheckbox {
  left: 15px;
}
.checkboxListField .labelText {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 0;
  padding-right: 8px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.optionBlockField .fieldsetBody {
  padding: 20px 15px;
}
.optionBlockField .fieldsetBody.modalSelect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px;
}

.optionBlockField .fieldsetBody input[type="text"],
.optionBlockField .fieldsetBody select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 10px;
  border: 1px #d1d1d1 solid;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.android .optionBlockField .fieldsetBody input[type="text"] {
  padding: 13px 10px 11px;
}
.optionBlockField .fieldsetBody select {
  padding: 8px 10px;
}
.android .optionBlockField .fieldsetBody select {
  padding: 9px 10px 7px;
}
.optionBlockField .fieldsetBody input[type="text"]:focus,
.optionBlockField .fieldsetBody select:focus {
  border-color: #0a50a1;
}

.optionBlockField .selectTitle {
  flex: 1;
  padding-right: 10px;
  color: #000;
  font-size: 14px;
}
.optionBlockField .selectButton {
  height: 38px;
}
.optionBlockField .selectButton span {
  display: block;
  width: 102px;
  height: 38px;
  color: #000;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  box-shadow: #dcdcdc 0 -2px inset;
  box-sizing: border-box;
  cursor: pointer;
}
.android .optionBlockField .selectButton span {
  line-height: 37px;
}
.optionBlockField .selectButton span:active {
  height: 35px;
  border-bottom: none;
  box-shadow: rgba(0, 0, 0, .25) 0 0 1px inset, rgba(0, 0, 0, .18) 0 -1px 1px inset;
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}

.optionBlockField .fieldsetBody.income {
  display: flex;
  align-items: center;
}
.optionBlockField .fieldsetBody.income div:first-of-type,
.optionBlockField .fieldsetBody.income div:last-of-type {
  flex: 1;
}
.optionBlockField .fieldsetBody.income div:first-of-type + div {
  padding: 0 10px;
  color: #000;
  font-size: 14px;
}

/* フッター */
.optionFooter {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  padding: 20px 10px;
  background: rgba(0, 0, 0, .8);
  box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition: all .2s;
}
.optionFooter.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.optionFooter.focusHide {
  display: none;
}
.optionFooter div {
  flex: 1;
  padding: 0 5px;
}
.optionSelectCounter {
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}
#selectCounter {
  color: #f60;
  font-size: 20px;
  font-weight: bold;
}
.optionAttach {
  height: 50px;
}
.optionAttach span {
  display: none;
  height: 50px;
  padding: 5px 6px 7px 12px;
  color: #0a50a1;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  box-shadow: #dcdcdc 0 -2px inset;
  box-sizing: border-box;
  cursor: pointer;
}
.android .optionAttach span {
  padding: 6px 6px 6px 12px;
}
.optionAttach span.active {
  display: block;
}
.optionAttach span:active {
  height: 47px;
  border-bottom: none;
  box-shadow: rgba(0, 0, 0, .25) 0 0 1px inset, rgba(0, 0, 0, .18) 0 -1px 1px inset;
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}
.optionSubmit {
  position: relative;
  z-index: 1;
  height: 50px;
}
.optionSubmit span {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  z-index: 0;
  width: calc(100% - 10px);
  height: 47px;
  padding: 6px 7px 5px 13px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  text-decoration: none;
  background: #82ad2b;
  border-radius: 4px;
  box-shadow: #678a22 0 3px;
  cursor: pointer;
  transition: width .2s;
}
.android .optionSubmit span {
  padding: 6px 7px 5px 13px;
}
.optionSubmit.widthFull span {
  width: calc(200% - 10px);
  padding: 6px 0 5px;
  line-height: 36px;
  text-align: center;
}
.android .optionSubmit.widthFull span {
  line-height: 38px;
}
.optionSubmit.widthFull span br {
  display: none;
}
.optionSubmit span:active {
  box-shadow: rgba(0, 0, 0, .25) 0 1px 1px inset, rgba(255, 255, 255, .4) 0 -1px 1px inset;
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}



