@charset "utf-8";

/* パンくずリスト */
ul.pankuzu {
  @media only screen and (min-width: 1024px) {
    position: fixed;
    width: 100%;
    height: 45px;
    z-index: 800;
  }
}

/* ヘッダーメニュー下検索メニュー */
.search-header__wrap {
  position: fixed;
  top: 105px;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 900;

  &.scrolled {
    top: 60px;
  }

  .search-header__list {
    display: flex;
    justify-content: center;
    align-items: center;

    .search-header__item {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.75rem;

      .separator {
        height: 20px;
        border-left: 1px dashed #707070;
        padding: 0 0.5rem;

        @media only screen and (min-width: 1280px) {
          padding: 0 0.75rem;
        }
      }

      .search-header__col {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;

        p {
          color: #333;
          margin: 0 0.6rem;
          font-size: 1.2rem;
          font-weight: bold;
          text-wrap: nowrap;

          @media only screen and (min-width: 1280px) {
            font-size: 1.4rem;
          }
        }

        .search-header__input {
          font-size: 1.3rem;
          height: 40px;
          border: 1px solid #e5e5e5;
          border-radius: 2px 0 0 2px;
          width: 120px;

          & > input {
            appearance: none;
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            padding: 0;
            text-overflow: ellipsis;
            padding-left: 1rem;
          }

          @media only screen and (min-width: 1280px) {
            width: 180px;
          }
        }

        .search-header__dropdown-container {
          position: relative;
          font-size: 1.3rem;

          .search-header__dropdown {
            .dropdown-window {
              display: flex;
              justify-content: center;
              align-items: center;
              width: 100px;
              height: 40px;
              padding: 0 15px;
              text-overflow: ellipsis;
              background: #f3f3ef;
              color: #666;
              cursor: pointer;
              border: 1px solid #e5e5e5;
              border-left: none;
              border-radius: 0 2px 2px 0;

              .fa-caret-down {
                margin-left: 0.5rem;
                transition: transform 0.3s ease;

                &.rotated {
                  transform: rotate(180deg);
                }
              }
            }

            .dropdown-menu {
              position: absolute;
              top: 100%;
              left: 0;
              width: 100%;
              overflow-y: auto;
              padding: 0;
              list-style: none;
              background: #fff;
              border: 1px solid #e5e5e5;
              z-index: 100;

              & > li {
                padding: 1rem;
                border-bottom: 1px solid #e5e5e5;
                cursor: pointer;

                &:last-child {
                  border-bottom: none;
                }

                &:hover {
                  background: #f2f2f2;
                }
              }
            }
          }
        }

        .btn-search {
          appearance: none;
          width: 118px;
          height: 45px;
          background: #444;
          color: #fff;
          border: none;
          border-radius: 24px;
          outline: none;
          padding: 13px;
          font-size: 1.6rem;
          font-weight: 700;
          letter-spacing: 0.1em;
          line-height: 1;
          cursor: pointer;
          border-bottom: solid 3px #000000;
          transition: all 0.3slinear;

          @media only screen and (min-width: 1280px) {
            width: 148px;
          }
        }
      }
    }
  }
}

.search-options-modal__row {
  display: flex;

  .search-options-modal__item {
    flex: 1;
    margin: 20px;
  }

  .search-options-modal__checkbox {
    display: flex;
  }
}

.search-box_label {
  font-weight: bold;
}

.is-hide {
  display: none;
}

.sidebar_introduction {
  margin: 20px auto 0;
  width: 90%;
}

.sidebar_introduction img {
  width: 100%;
}

.sidebar_webinar {
  text-align: center;
  margin-top: 20px;
}

.only_img_banr {
  transition: none;
  background: hsl(0deg 0% 0%);
  display: block;
}

.only_img_banr:hover img {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  .sidebar_introduction {
    width: 240px;
  }
}

.checkbox {
  display: none;
}

.checkbox:checked + label::before {
  border: 1px solid #e82212;
  background: #e82212;
}

.checkbox:checked + label::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.checkbox__label {
  font-size: 1.2rem;
  margin-left: 2em;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox__label::before,
.checkbox__label::after {
  position: absolute;
  content: '';
  transition: all 0.2s;
}

.checkbox__label::before {
  top: 50%;
  left: -21px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.checkbox__label::after {
  opacity: 0;
  top: 50%;
  left: -18px;
  width: 8px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0.5);
}

.radio {
  display: none;
}

.radio:checked + label::before {
  border: 1px solid #e82212;
  background: #e82212;
}

.radio:checked + label::after {
  opacity: 1;
}

.radio__label {
  font-size: 1.2rem;
  margin-left: 2em;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
}

.radio__label::before,
.radio__label::after {
  position: absolute;
  content: '';
  transition: all 0.2s;
}

.radio__label::before {
  top: 50%;
  left: -21px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.radio__label::after {
  opacity: 0;
  top: 50%;
  left: -17px;
  margin-top: -3px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.main {
  margin-top: 60px;
}

.topicPath__wrap {
  margin-top: 60px;
}

@media only screen and (max-width: 1023px) {
  .topicPath__wrap.f-auth {
    margin-top: 100px;
  }
}

.searchArea__wrapper {
  width: 1015px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 10px;
  display: flex;

  @media screen and (max-width: 768px) {
    width: 100%;
    padding: 0;
    display: block;
  }

  @media only screen and (min-width: 1024px) {
    padding-top: 125px;

    &.scrolled {
      padding-top: 80px;
    }
  }
}

.searchArea {
  width: 280px;
  min-width: 280px;
  border-right: 1px solid #ddd;
}

@media only screen and (min-width: 769px) {
  .searchArea {
    height: 100vh;
    overflow-y: scroll;
  }
}

.searchArea__header {
  padding: 0 20px 20px 0;
}

.searchArea__header .wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

@media only screen and (max-width: 768px) {
  .searchArea__header .wrapper {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .searchArea__header__r {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 15px;
  }
}

.searchArea__number {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.searchArea__main--ttl {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.searchArea__historyBtn p {
  display: block;
  background-color: #777;
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 18px 2px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s linear;
  border-radius: 10px;
  border-bottom: solid 3px #666666;
}

.searchArea__historyBtn p:hover {
  background: #666666;
  cursor: pointer;
}

.searchArea__historyBtn:active {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  border-bottom: none;
}

.searchArea__number--num {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  color: #e82212;
  font-size: 48px;
  text-align: right;
  flex-grow: 2;
  padding-right: 5px;
  letter-spacing: -0.8px;
}

.searchArea__number__download {
  font-size: 1.1rem;
  color: #777;
}

.searchArea__selected {
  margin-top: 15px;
  position: relative;
}

.searchArea__selected--ttl,
.searchArea__selected__item {
  font-size: 11px;
  color: #333333;
  line-height: 1;
  margin-bottom: 1rem;
  width: 100%;
}

.searchArea__selected--ttl {
  margin: 0 0 10px;
  padding: 7px 0 0;
}

.more_box {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 20px;
}

.more_box label {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  text-align: center;
}

.more_box input:checked + label {
  text-align: left;
}

.more_box label:after {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 120px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 18px;
  letter-spacing: 0.1em;
  border-radius: 24px;
  content: '全表示';
  background: #000;
  color: #fff;
}

input.more_check {
  display: none;
}

input.more_check:checked ~ .more_box label:after {
  content: '閉じる';
}

.cp_container {
  overflow: hidden;
  height: 20rem;
  /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
  position: relative;
}

.cp_container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(250, 252, 252, 0) 0%,
    rgba(250, 252, 252, 0.95) 90%
  );
}

input.more_check:checked ~ .cp_container {
  height: auto;
  transition: all 0.5s;
}

input.more_check:checked ~ .cp_container::after {
  background: unset;
}

.searchArea__selected__item {
  display: block;
  padding-left: 3.8rem;
  text-indent: -3.8rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.searchArea__selected__more {
  display: none;
}

@media only screen and (max-width: 768px) {
  .searchArea__selected__more {
    display: block;
    color: #e82212;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}

.searchArea__except {
  text-align: center;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .searchArea__except .checkbox__label {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.searchArea__btn,
.list-dl__btn,
.charge__btn {
  margin: 20px auto;
  color: #fff;
}

.searchArea__btn a,
.list-dl__btn a,
.charge__btn a {
  display: block;
  background: #e82212;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: 15px 0 13px;
  text-decoration: none;
  border-radius: 24px;
  transition: all 0.3s linear;
  border-bottom: solid 3px #c02518;
}

.searchArea__btn a:active,
.list-dl__btn a:active,
.charge__btn a:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
  transition: none;
}

.searchArea__btn a:hover,
.list-dl__btn a:hover,
.charge__btn a:hover {
  background-color: #c02518;
  cursor: pointer;
}

.searchArea__btn a i,
.searchArea__btn a svg,
.list-dl__btn a i,
.list-dl__btn a svg {
  font-size: 1.3rem;
  margin-right: 8px;
}

.charge__btn a img {
  width: 13px;
  margin-right: 8px;
}

@media only screen and (max-width: 768px) {
  .searchArea__btn,
  .list-dl__btn,
  .charge__btn {
    width: 240px;
    margin: 10px auto;
  }

  .searchArea__btn a,
  .list-dl__btn a,
  .charge__btn a {
    width: 100%;
    height: 40px;
    font-size: 1.6rem;
    border-radius: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
}

.searchArea__number--bottom {
  border-bottom: 1px solid #ddd;
}

.searchArea__freeword input[type='text'],
.searchArea__exception input[type='text'] {
  -webkit-appearance: none;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.4rem;
  padding: 0;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 768px) {
  .searchArea__freeword input[type='text'],
  .searchArea__exception input[type='text'] {
    width: 100%;
    text-overflow: ellipsis;
  }
}

.searchArea__freeword input[type='text']::placeholder,
.searchArea__exception input[type='text']::placeholder {
  opacity: 0.5;
}

.searchArea__main {
  padding: 20px;
}

.searchArea__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.searchArea__list.bg-gray {
  background: #f3f3f3;
  margin: 15px -15px;
  padding: 10px 15px 20px;
}

.searchArea__item {
  width: 100%;
  margin-top: 25px;
}

.searchArea__item.single {
  text-align: right;
}

.searchArea__item.title {
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 768px) {
  .searchArea__item canvas {
    width: 100% !important;
  }
}

.searchArea__item.doubleArea {
  width: 640px;
}

@media only screen and (max-width: 768px) {
  .searchArea__item.doubleArea {
    width: 100%;
  }
}

.searchArea__title {
  color: #333;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.searchArea__card {
  width: 100%;
  padding-right: 10px;
  font-size: 1.3rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.searchArea__card--graph {
  overflow: unset;
}

.searchArea__card__freeword,
.searchArea__card__exception {
  width: 100%;
  font-size: 1.3rem;
  color: #999;
}

.searchArea__cardWrap {
  background: #fff;
  font-size: 1.3rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 8px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  border-bottom: solid 3px #c4c4c4;
}

.searchArea__cardWrap:hover:not(.input__freeword):not(.input__exceptionword) {
  background: #f8f8f8;
  cursor: pointer;
}

.searchArea__cardWrap--originalTag {
  padding: 2px 0 3px;
}

.searchArea__item--link {
  font-size: 10px;
  padding-top: 3px;
}

.searchArea__item--link a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 768px) {
  .searchArea__item--link a {
    letter-spacing: -1px;
  }
}

.searchArea__item--link a:hover {
  color: #e82212;
}

.searchArea__cardWrap--selectbox {
  position: relative;
  background: #fff;
  font-size: 1.3rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 8px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  width: -webkit-fill-available;
  width: -moz-max-content;
  border-bottom: solid 3px #c4c4c4;

  &:hover {
    background: #f8f8f8;
    cursor: pointer;
  }
}

.searchArea__resetBtn p {
  display: block;
  background-color: #777;
  font-size: 1rem;
  line-height: 1;
  padding: 3px 15px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s linear;
  border-radius: 10px;
  border-bottom: solid 3px #666666;
  white-space: nowrap;
}

.searchArea__resetBtn:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
}

.searchArea__resetBtn p:hover {
  background: #666666;
  cursor: pointer;
}

.searchArea__slider {
  width: 220px;
}

@media only screen and (max-width: 768px) {
  .searchArea__slider {
    width: 100%;
  }
}

.doubleArea .searchArea__slider {
  width: 620px;
}

@media only screen and (max-width: 768px) {
  .doubleArea .searchArea__slider {
    width: 100%;
  }
}

.searchArea__checkbox_with_no_data {
  padding: 10px 0 20px;
  border-bottom: 1px dashed #ddd;
}

.searchArea__numberForm_short {
  margin-top: 10px;
  white-space: nowrap;

  input[type='text'],
  input[type='number'] {
    appearance: none;
    width: 65px;
    border: #ddd 1px solid;
    border-radius: 5px;
    outline: none;
    font-size: 1.2rem;
    padding: 5px;
  }

  input[type='number'] {
    &::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
  }
}

.searchArea__numberForm_long {
  margin-top: 10px;
  white-space: nowrap;

  input[type='text'],
  input[type='number'] {
    appearance: none;
    width: 90px;
    border: #ddd 1px solid;
    border-radius: 5px;
    outline: none;
    font-size: 1.2rem;
    padding: 5px;
  }

  input[type='number'] {
    &::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
  }
}

.searchArea__numberForm--unit {
  margin: 0 2px;
  font-size: 11px;
}

.searchArea__option.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchArea__option__item {
  padding: 10px 0 0;
  margin: 0 25px 0 0;
  display: inline-block;
}

.searchArea__option__item.small {
  margin: 0 10px 0 0;
}

.searchArea__option__item--block {
  margin: 5px 0 0 0;
  display: block;
}

.searchArea__option__item--2cols {
  width: 50%;
  display: inline-block;
}

.searchArea .select-wrap {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.searchArea .select-wrap::before {
  font-family: 'Ionicons';
  font-weight: 900;
  content: '\f280';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 2rem;
  pointer-events: none;
}

.searchArea .select-wrap select {
  outline: none;
  text-indent: 12px;
  text-overflow: '';
  background: #fff;
  vertical-align: middle;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  border: 1px solid #ddd;
  color: #777;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4rem;
  cursor: pointer;
}

.searchArea .select-wrap select option {
  outline: 0;
  background-color: #fff;
  color: #777;
}

.searchArea__footer {
  padding: 30px 0 15px;
  text-align: center;
}

.searchArea__footer button {
  -webkit-appearance: none;
  width: 238px;
  height: 48px;
  background: #444444;
  color: #fff;
  border: none;
  border-radius: 24px;
  outline: none;
  padding: 13px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  cursor: pointer;
  border-bottom: solid 3px #000000;
  transition: all 0.3s linear;
}

.searchArea__footer:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
}

.searchArea__footer button:hover {
  background: #000000;
}

.searchArea__toggle {
  width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .searchArea__toggle {
    width: 100%;
    background: #f3f3ef;
    padding: 15px;
  }
}

.searchArea__toggle__btn {
  width: 200px;
  text-align: center;
  background: #f3f3ef;
  border-radius: 0 0 10px 10px;
  color: #333;
  padding: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  margin: 0 0 0 auto;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .searchArea__toggle__btn {
    width: 100%;
    background: #fff;
    border-radius: 0;
    font-size: 1.6rem;
    margin: 0 auto;
    box-shadow: none;
    border: #ccc 1px solid;
  }

  .searchArea__toggle__btn .side__open {
    font-size: 1.4rem;
  }
}

.searchArea__spClose {
  display: none;
}

.searchArea__spClose__outer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.searchArea__spClose__l {
  background: #e82212;
  padding: 5px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 66%;
}

.searchArea__spCloseBlack__l {
  background: #333;
  padding: 5px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 66%;
}

.searchArea__spClose__except {
  border: #fff 1px solid;
  background: #f3f3ef;
  text-align: left;
  width: 50%;
  padding: 5px;
  border-radius: 5px;
  color: #7b7b7b;
}

.searchArea__spClose__except .checkbox__label {
  display: block;
  font-size: 1.4rem;
  line-height: 1.25;
}

.searchArea__spClose__btn {
  width: 65%;
  display: flex;
}

.searchArea__spClose__btn a {
  background: #e82212;
  color: #fff;
  font-weight: 400;
  text-align: left;
  line-height: 1;
  padding: 5px;
  text-decoration: none;
  transition: all 0.3s linear;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.searchArea__spClose__btn a:hover {
  opacity: 0.8;
}

.searchArea__spClose__btn a i {
  font-size: 1.8rem;
  margin-right: 8px;
}

.searchArea__spClose .searchArea__toggle__btn {
  width: 34%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.searchArea__spClose .checkbox:checked + label {
  color: #e82212;
}

.mask {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 39px;
  left: 0;
  z-index: 100;
  background: -webkit-linear-gradient(
    top,
    rgba(243, 243, 239, 0) 0%,
    #f3f3ef 80%
  );
  display: none;
}

@media only screen and (max-width: 768px) {
  .mask {
    bottom: 71px;
  }
}

.is-top .mask {
  display: block;
}

.is-top .mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
}

.is-top .close {
  display: none;
}

.is-open .open {
  display: none;
}

@media only screen and (max-width: 768px) {
  .is-close .searchArea__header__r,
  .is-close .searchArea__toggle {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .is-close .searchArea__spClose {
    display: block;
  }
}

.is-close .mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
}

.is-close .close {
  display: none;
}

.noUi-target {
  background: #adadad;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-top: -5px;
}

.noUi-horizontal {
  height: 4px;
}

.noUi-handle:before {
  display: none;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  left: -10px;
  top: -8px;
}

.noUi-handle {
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
  cursor: default;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
}

.noUi-handle:after {
  content: '';
  display: block;
  position: absolute;
  height: 8px;
  width: 8px;
  background: #ddd;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.noUi-connect {
  background: #f48b85;
}

html:not([dir='rtl']) .noUi-horizontal .noUi-handle {
  right: -10px;
}

#pageTop.is-top {
  padding-top: 480px;
}

@media only screen and (max-width: 768px) {
  #pageTop.is-top {
    padding-top: 500px;
  }
}

#pageTop.is-close {
  padding-top: 280px;
}

@media only screen and (min-width: 769px) {
  .results {
    width: 715px;
    padding: 0 0 0 15px;
  }

  .resultsWrapper {
    height: 100vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .resultsWrapper::-webkit-scrollbar {
    display: none;
  }

  .resultsWrapper > .pagination__wrap {
    margin: 10px 0 0 0;
  }
}

.no-result__txt {
  text-align: center;
  margin: 10px auto;
}

.results__list {
  border-top: #ddd 1px solid;
}

.results__list:first-child {
  border-top: none;
}

.results__item {
  border-bottom: #ddd 1px solid;
  padding: 30px 0;
}

@media only screen and (max-width: 768px) {
  .results__item {
    padding-bottom: 2rem;
  }
}

.results__item a {
  text-decoration: none;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 768px) {
  .results__item a {
    display: block;
  }
}

.results__item a:hover .results__name {
  color: #e82212;
}

.results__headArea--wrap {
  display: flex;
}

.results__img {
  width: 158px;
  height: 158px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border: #ddd 1px solid;
  padding: 20px;
  align-self: flex-start;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .results__img {
    width: 13vw;
    height: 13vw;
    padding: 5px;
  }
}

.results__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.results__textArea {
  align-self: flex-start;
  width: calc(100% - 180px);
}

.results__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 768px) {
  .results__name {
    font-size: 2rem;
  }
}

.results__closed {
  padding: 0.25em 0.5em;
  margin: 2em 0;
  font-weight: bold;
  color: #777;
  border: solid 2px #777;
  border-radius: 6px;
  font-size: 0.75em;
  vertical-align: text-bottom;
}

.results_keyman_number_container {
  margin: -5px 10px 0;
  display: flex;
  justify-content: flex-end;
}

.results_keyman_number {
  width: 15rem;
  line-height: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: baseline;
}

.results_keyman_number--num {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  color: #e82212;
  font-size: 3.5rem;
  text-align: right;
  flex-grow: 2;
  padding-right: 5px;
  letter-spacing: -0.8px;
}

.results__text {
  font-size: 1.3rem;
  color: #777;
  line-height: 1.75;
}

.results__tableArea {
  background: #f3f3ef;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .results__tableArea {
    width: 100%;
    padding: 10px 20px;
  }
}

.results__table {
  width: calc((100% - 20px) / 2);
  border-collapse: collapse;
  margin-right: 20px;
}

.results__table:last-child {
  margin-right: 0;
}

.results__table--ttl {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 3px;
  width: 6em;
}

@media only screen and (max-width: 768px) {
  .results__table--ttl {
    font-size: 1.4rem;
  }
}

.results__table--txt {
  font-size: 1.2rem;
  padding: 0 3px;
  position: relative;
  padding-left: 1em;
}

@media only screen and (max-width: 768px) {
  .results__table--txt {
    font-size: 1.4rem;
  }
}

.results__table--TagTxt {
  font-size: 1.2rem;
  position: relative;
  word-wrap: break-word;
  max-width: 100%;
  /* 3点リーダ */
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 768px) {
  .results__table--TagTxt {
    font-size: 1.4rem;
    -webkit-line-clamp: 9;
  }
}

.results__table td::before {
  content: ':';
  position: absolute;
  left: 0;
}

@media only screen and (min-width: 1024px) {
  .results__item {
    padding: 20px 0;
  }

  .results__name_wrapper {
    display: flex;
    justify-content: space-between;
    width: 525px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .results__name {
    max-width: 68%;
    line-height: 2.5rem;
    padding-top: 1rem;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .results_keyman_number--num {
    line-height: 4rem;
  }

  .results__text {
    line-height: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .results__table.left .results__table--ttl {
    width: 5em;
  }

  .results__table.right .results__table--ttl {
    width: 8em;
  }
}

td .dl_required__inner {
  width: fit-content;
  color: #e82212;
  background: #feebe9;
  font-size: 1.1rem;
  padding: 3px 5px;
  border: #fff 1px solid;
  border-radius: 5px;
  box-shadow: 0 0 12px rgb(0 0 0 / 12%);
}

@media only screen and (max-width: 768px) {
  td .dl_required__inner {
    font-size: 1.4rem;
  }
}

.homeCategory {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .homeCategory {
    display: block;
  }
}

.homeCategory__area {
  width: 32%;
}

@media only screen and (max-width: 768px) {
  .homeCategory__area {
    width: 100%;
  }
}

.homeCategory__outer {
  border-top: #ededed 1px solid;
}

.homeCategory__title {
  position: relative;
  padding: 10px 15px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  transition: all 0.3s linear;
  border-bottom: #ededed 1px solid;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .homeCategory__title {
    padding: 15px;
    font-size: 1.6rem;
  }
}

.searchBanner {
  width: 90%;
  margin: 20px auto;
}

.searchBanner img {
  width: 100%;
}

.homeCategory__title:hover {
  color: #e82212;
}

.homeCategory__title:hover::after {
  color: #333;
}

.homeCategory__title::after {
  font-family: 'Ionicons';
  font-weight: 900;
  content: '\f280';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.homeCategory__title.is-active {
  background: #f3f3ef;
  font-weight: 700;
}

.homeCategory__title.is-active .counts {
  background: #fff;
}

.homeCategory__title.is-active::after {
  content: '\f286';
}

.homeCategory__inner {
  display: none;
}

.homeCategory__item .counts {
  background: #e7e8e2;
}

.homeCategory__item:first-child a {
  padding-top: 20px;
}

.homeCategory__item a {
  text-decoration: none;
  display: block;
  font-size: 1.3rem;
  color: #777;
  padding: 10px 15px;
  transition: all 0.3s linear;
  background: #fafaf8;
}

@media only screen and (max-width: 768px) {
  .homeCategory__item a {
    padding: 15px;
    font-size: 1.4rem;
  }
}

.homeCategory__item a:hover {
  color: #e82212;
}

.pc-hidden1 .searchArea__toggle__btn a,
.searchArea__spClose__outer .searchArea__toggle__btn a {
  position: relative;
  display: block;
  text-decoration: none;
  width: 100%;
}

.pc-hidden1 .searchArea__toggle__btn a::after,
.searchArea__spClose__outer .searchArea__toggle__btn a::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f054';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* 4月の施策_詳細検索エリア必要な項目だけにする */
.searchArea__item--hidden {
  display: none;
}

@media only screen and (max-width: 959px) {
  .results__img {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .results__textArea {
    width: calc(100% - 100px);
  }

  .results__tableArea {
    display: block;
  }

  .results__table {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .searchArea {
    width: 100%;
    border: 1px solid #ddd;
  }

  .searchArea__main {
    padding: 20px;
  }

  .searchArea__header {
    padding: 10px 20px;
  }

  .searchArea__selected {
    margin-top: 8px;
  }

  .searchArea__list {
    display: flex;
  }

  .searchArea__item,
  .searchArea__option__item {
    margin-top: 15px;
  }

  .searchArea__item_double {
    width: calc((100% - 20px) / 2);
  }

  .searchArea__numberForm_short input[type='text'] {
    -webkit-appearance: none;
    width: 88px;
    border: #ddd 1px solid;
    border-radius: 5px;
    outline: none;
    font-size: 1.2rem;
    padding: 5px;
  }

  .searchArea__numberForm_long input[type='text'] {
    -webkit-appearance: none;
    width: 110px;
    border: #ddd 1px solid;
    border-radius: 5px;
    outline: none;
    font-size: 1.2rem;
    padding: 5px;
  }

  .searchArea__cardWrap {
    padding: 6px;
  }

  .searchArea__card--graph {
    display: none;
  }

  .searchArea__header__r {
    margin-top: 10px;
  }

  .searchArea__resetBtn a {
    padding: 3px 10px;
  }

  .onsphidden {
    display: none;
  }

  .searchArea__resetBtn p {
    padding: 3px 12px;
  }

  .searchArea__freeword.originalTags__choiceArea,
  .searchArea__exception.originalTags__choiceArea {
    padding: 1px 0 1px;
  }

  .searchArea__numberForm {
    margin-top: 8px;
  }

  .searchArea__option__item {
    padding: 0;
  }

  .searchArea__option--check {
    margin-top: 5px;
    margin-right: 60px;
  }

  .searchArea__footer {
    padding: 10px 0 30px;
  }

  .results {
    padding-left: 0;
    width: 100%;
  }

  .results__headArea--wrap {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .searchArea__numberForm input[type='text'] {
    width: calc((100% - 50px) / 2);
  }
}

/*　トップの地域・業種・オリジナルタグを選ぶモーダル */

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 75%;
  max-width: 960px;
  padding: 60px 40px;
  background: #fff;
  box-sizing: border-box;
  color: #333;
}

.left_wrap {
  width: 48%;
  /*左カラム幅設定*/
  float: left;
  /*左にフロート配置*/
  height: 430px;
  overflow-y: auto;
  margin-bottom: 30px;
}

.right_wrap {
  width: 48%;
  /*右カラム幅設定*/
  float: right;
  /*右のフロート配置*/
  height: 430px;
  overflow-y: auto;
  margin-bottom: 30px;
}

.clear_wrap {
  content: '';
  clear: both;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.modal_decide_Btn {
  width: 168px;
  height: 50px;
  padding: 13px 0;
  margin-left: 10px;
  background-color: #e82212;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.modal_next_modal_Btn,
.btn-clear-all {
  width: 168px;
  height: 50px;
  padding: 13px 0;
  background-color: #333333;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.modal__scroll {
  height: 430px;
  overflow-y: auto;
}

.modal__half .modal__list,
.modal__full .modal__list,
.modal__oneThird .modal__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.modal__item_parent {
  display: list-item;
  /* 縦に並べる */
  list-style-type: none;
  text-transform: uppercase;
  padding: 13px 22px;
  background: #ffffff;
  border-top: #ddd 1px solid;
  border-left: #ddd 1px solid;
  border-right: #ddd 1px solid;
  cursor: pointer;
}

.modal__item_fonts {
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

.modal__item_parent:hover {
  font-weight: bold;
}

.modal__item_child:hover {
  font-weight: bold;
}

.modal__item_parent {
  position: relative;
}

.modal__item_parent.is-active {
  font-weight: bold;
  background: #feebe9;
}

.modal__item_child.is-hide {
  display: none;
}

.modal__item_child_init_background {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #eeeeee !important;
}

.modal__text_child_init_background {
  font-size: 0.7em;
  color: #999999;
}

.modal__item_child_init_background.is-hide {
  display: block !important;
  justify-content: normal;
  align-items: normal;
  height: 100%;
  width: 100%;
  background-color: #eeeeee;
}

.modal__text_child_init_background.is-hide {
  display: none;
}

.modal__item_ind_child_init_background {
  height: 100%;
  width: 100%;
  background-color: #eeeeee;
}

.modal__item_ind_child_init_background:after {
  font-size: 0.7em;
  color: #999999;
  position: relative;
  top: 40%;
  left: 35%;
  content: '業種を選択して下さい';
}

.modal__item_child {
  display: list-item;
  /* 縦に並べる */
  list-style-type: none;
  text-transform: uppercase;
  padding: 13px 22px;
  background: #ffffff;
  border-top: #ddd 1px solid;
  border-left: #ddd 1px solid;
  border-right: #ddd 1px solid;
  cursor: pointer;
}

.modal__item_end {
  list-style: none;
  display: list-item;
  /* 縦に並べる */
  background: #ffffff;
  border-top: #ddd 1px solid;
}

.modal__item_fonts {
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

.modal__item_child {
  position: relative;
}

.titlebar {
  display: table;
  width: 100%;
  font-weight: bold;
  /* 太字にする */
}

.subject {
  display: table-cell;
  font-size: 1em !important;
  text-align: left;
  /* 文章を左寄せする(※) */
}

.number_of_companies {
  display: table-cell;
  font-size: 1em !important;
  text-align: right;
  /* 文章を右寄せする */
}

.modal__listWrap {
  /* height: 406px;*/
  overflow-y: auto;
}

.modal_subtitle {
  font-size: 0.7em;
  font-weight: bold;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  transition: opacity 0.5s, transform 0s 0.5s;
}

.modal_content-closeBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

.fa-tachometer-alt {
  font-size: 60px;
  color: #c4c4c4;
}

.modal_box h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 50px auto 0;
  width: 76%;
}

.modal_box p {
  font-size: 13px;
  margin-top: 40px;
}

.checkbox {
  display: none;
}

.checkbox:checked + label::before {
  border: 1px solid #e82212;
  background: #e82212;
}

.checkbox:checked + label::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
  font-weight: bold;
}

.checkbox:checked + label {
  font-weight: bold;
}

.checkbox__label {
  font-size: 1.2rem;
  margin-left: 2em;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox__label::before,
.checkbox__label::after {
  position: absolute;
  content: '';
  transition: all 0.2s;
}

.checkbox__label::before {
  top: 50%;
  left: -21px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.checkbox__label::after {
  opacity: 0;
  top: 50%;
  left: -18px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0.5);
}

.checkbox:disabled + .checkbox__label {
  cursor: default;
  opacity: 0.3;
}

.top_searchArea__number_of_companies {
  display: inline;
  background: #f3f3ef;
  border-radius: 10px;
  color: #777777;
  padding: 3px 5px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.7em !important;
}

.modal__selected_Btn.is-active {
  display: inline;
  font-family: Hiragino Sans;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  width: 44px;
  height: 14px;
  background: #d9655c;
  border-radius: 10px;
  text-align: center;
}

ul > li[data-pref_parent] :first-child::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: #999999;
  content: '\f105';
  top: 50%;
  right: 20px;
  margin-top: -12px;
}

ul > li[data-ind_parent] :first-child::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: #999999;
  content: '\f105';
  top: 50%;
  right: 20px;
  margin-top: -12px;
}

ul > li[data-original1] :first-child::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: #999999;
  content: '\f105';
  top: 50%;
  right: 20px;
  margin-top: -12px;
}

ul > li[data-original2] :first-child::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: #999999;
  content: '\f105';
  top: 50%;
  right: 20px;
  margin-top: -12px;
}

/* オリジナルタグのモーダル */

.modal__item_child.is-active {
  font-weight: bold;
  background: #feebe9;
}

.modal__item_child.is-active {
  font-weight: bold;
}

.company__total__item {
  margin: 0 5px 9px 10px;
  padding: 3px 5px;
  line-height: 1;
  font-size: 1.1rem;
  color: #777777;
  border-radius: 8px;
  background: #f3f3ef;
}

/* SPのモーダル */
@media only screen and (max-width: 768px) {
  /*　トップの地域・業種を選ぶモーダル */

  .searchArea__card {
    width: 100%;
    padding-right: 10px;
    font-size: 1.4rem;
    color: #999;
    overflow: hidden;
    padding: 3px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .searchArea__card__freeword,
  .searchArea__card__exception {
    padding: 1px;
    width: 100%;
    font-size: 1.4rem;
    color: #999;
  }

  .modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 100%;
    height: 100%;
    max-width: 768px;
    padding: 30px 20px;
    background: #fff;
    box-sizing: border-box;
    color: #333;
  }

  .left_wrap {
    width: 48%;
    /*左カラム幅設定*/
    float: left;
    /*左にフロート配置*/
    height: 430px;
    overflow-y: auto;
    margin-bottom: 30px;
  }

  .right_wrap {
    width: 48%;
    /*右カラム幅設定*/
    float: right;
    /*右のフロート配置*/
    height: 430px;
    overflow-y: auto;
    margin-bottom: 30px;
  }

  .clear_wrap {
    content: '';
    clear: both;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
  }

  .modal_decide_Btn {
    width: 168px;
    height: 50px;
    padding: 14px 0;
    margin-left: 10px;
    background-color: #e82212;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }

  .modal_footerBtn--wrap {
    margin: 30px auto 80px;
  }

  .modal_next_modal_Btn {
    width: 168px;
    height: 50px;
    padding: 14px 0;
    background-color: #333333;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-left: 0;
    font-weight: bold;
  }

  .modal__scroll {
    height: 430px;
    overflow-y: auto;
  }

  .modal__half .modal__list,
  .modal__full .modal__list,
  .modal__oneThird .modal__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }

  .modal__item_parent {
    display: list-item;
    /* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    padding: 14px 20px;
    background: #ffffff;
    border-top: #ddd 1px solid;
    border-left: 0;
    border-right: 0;
    cursor: pointer;
  }

  .modal__item_parent.is-hide {
    display: none;
  }

  .modal__item_fonts {
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .modal__item_parent:hover {
    font-weight: bold;
  }

  .modal__item_child:hover {
    font-weight: bold;
  }

  .modal__item_parent {
    position: relative;
  }

  .modal__item_parent.is-active {
    font-weight: bold;
    background: #feebe9;
  }

  .modal__item_child.is-hide {
    display: none;
  }

  .modal__item_child_init_background {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
  }

  .modal__item_child_init_background:after {
    font-size: 0.7em;
    color: #999999;
    top: 40%;
    position: relative;
    left: 30%;
    content: '';
  }

  .modal__item_child {
    display: list-item;
    /* 縦に並べる */
    list-style-type: none;
    text-transform: uppercase;
    padding: 13px 22px;
    background: #ffffff;
    border-top: #ddd 1px solid;
    border-left: 0px;
    border-right: 0px;
    cursor: pointer;
  }

  .modal__item_fonts {
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .modal__item_child {
    position: relative;
  }

  .titlebar {
    display: table;
    width: 100%;
    font-weight: bold;
  }

  .company_big_number_outer {
    text-align: center;
  }

  .subject {
    display: table-cell;
    font-size: 1.3em !important;
    font-weight: bold;
    text-align: left;
  }

  .modal_subtitle {
    font-size: 0.7em;
    font-weight: bold;
    padding: 15px 20px;
  }

  .sp_scroll {
    overflow-y: auto;
    max-height: 90%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.4);
    transition: opacity 0.5s, transform 0s 0.5s;
  }

  .modal_content-closeBtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
  }

  .fa-tachometer-alt {
    font-size: 60px;
    color: #c4c4c4;
  }

  .modal_box h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 50px auto 0;
    width: 76%;
  }

  .modal_box p {
    font-size: 13px;
    margin-top: 40px;
  }

  .checkbox {
    display: none;
  }

  .checkbox:checked + label::before {
    border: 1px solid #e82212;
    background: #e82212;
  }

  .checkbox:checked + label::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
    font-weight: bold;
  }

  .checkbox:checked + label {
    font-weight: bold;
  }

  .checkbox__label {
    font-size: 1.2rem;
    margin-left: 2em;
    position: relative;
    line-height: 1.5;
    cursor: pointer;
  }

  .checkbox__label::before,
  .checkbox__label::after {
    position: absolute;
    content: '';
    transition: all 0.2s;
  }

  .checkbox__label::before {
    top: 50%;
    left: -21px;
    width: 14px;
    height: 14px;
    margin-top: -8px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
  }

  .checkbox__label::after {
    opacity: 0;
    top: 50%;
    left: -18px;
    width: 8px;
    height: 4px;
    margin-top: -4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0.5);
  }

  .top_searchArea__number_of_companies {
    display: inline;
    background: #f3f3ef;
    border-radius: 10px;
    color: #777777;
    padding: 3px 5px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.7em !important;
  }

  ul > li.modal__item_parent :first-child::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #999999;
    content: '\f105';
    top: 50%;
    right: 20px;
    margin-top: -10px;
  }

  ul > li[data-original_parent]::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #999999;
    content: '\f105';
    top: 50%;
    right: 20px;
    margin-top: -10px;
  }

  ul > li[data-original2_parent]::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #999999;
    content: '\f105';
    top: 50%;
    right: 20px;
    margin-top: -10px;
  }
}

/*　3001件以上のモーダル */

.modal_box__countover {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 75%;
  max-width: 480px;
  padding: 40px 0px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  color: #333;
  overflow-y: auto;
  height: 90%;
}

.modal_contents {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 0px 40px;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  transition: opacity 0.5s, transform 0s 0.5s;
}

.modal_content-closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

.modal_box__countover p {
  font-size: 13px;
  margin-top: 20px;
}

.modal_content-PrecautionaryStatementTxt {
  font-size: 15px !important;
}

.modal_content-downloadTxtWrap {
  margin: 0;
}

.modal_content-downloadTxtWrap p {
  margin-top: 10px;
}

.modal_content-downloadTxtWrap span {
  margin-right: 15px;
}

.modal_content-downloadTxtWrap .possible_number_txt {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.modal_content-downloadTxtWrap .possible_number {
  font-size: 200%;
  color: #d63130;
  margin-right: 5px !important;
}

.modal_content-downloadTxtWrap .row {
  display: flex;
  justify-content: space-around;
}

.modal_content-downloadTxtWrap .sub_box {
  width: 30%;
  font-size: 80%;
}

.modal_content-downloadTxtWrap .num_free_area {
  display: block;
  background: #bfbfbf;
  color: #fff;
  width: 142px;
  text-align: left;
  padding: 5px;
}

.modal_content-downloadTxtWrap .num_paid_area {
  display: block;
  background: #da6a61;
  color: #fff;
  width: 142px;
  text-align: left;
  padding: 5px;
}

.modal_content-downloadTxtWrap .num_user_paid_area {
  display: block;
  background: #ffb528;
  color: #fff;
  width: 142px;
  text-align: left;
  padding: 5px;
}

.modal_content-downloadTxtWrap .num {
  margin-right: 5px !important;
}

.modal_content-downloadTxtWrap .left_txt {
  margin-top: 45px;
  text-align: left;
}

.overlap-message__wrap {
  width: 100%;
  background-color: #e7e7e7;
  margin: 0 auto;
  border-radius: 3px;
  padding: 10px 15px;
}

.modal__checkbox {
  padding: 5px 0;
}

.modal__checkbox label {
  font-style: normal;
  font-size: 12px;
  color: #333333;
}

.possible_number {
  font-style: normal;
  font-weight: bold;
  color: #000000;
  font-size: 100%;
}

.modal_box__countover .announcement_txt {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  color: #999999;
  text-decoration: none;
  text-align: right;
}

.modal_box__countover .list-dl__btn,
.modal_box__countover .charge__btn {
  width: 100%;
}

.buyAnnouncement_txt {
  position: absolute;
  bottom: -20px;
  left: 45px;
}

.buyAnnouncement_txt:hover {
  color: #e82212;
}

.modal_box__countover .prompt-txt {
  color: #e82212;
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: bold;
  margin: 5px 0;
}

.modal_box__countover .prompt-txt p {
  font-size: 12px;
  margin: 0;
}

.modal_content-cBtn {
  display: block;
  width: 320px;
  height: 70px;
  margin: 60px auto 20px;
  padding: 17px 0;
  background-color: #e82212;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.modal_content-cBtn i {
  margin-right: 10px;
}

.modal_content-cBtn a {
  text-decoration: none;
  color: #fff;
}

a[href^='tel:'] {
  pointer-events: none;
}

/*  アウトソーシングボタンのスタイル  */
.searchArea__btn a.sarchArea__btn--os {
  margin-top: 10px;
  background-color: #0066cc;
  border-bottom: 3px solid #00509f;
  font-size: 14px;
}

.searchArea__btn a.sarchArea__btn--os:hover {
  background: #00509f;
  cursor: pointer;
}

a.sarchArea__btn--os:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(3px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
  transition: none;
}

/*　以下コンタクトフォームのモーダル */

.cf-modal-mask {
  position: fixed;
  z-index: 6666;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  transition: opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: opacity 0.5s, transform 0s 0.5s;
  transition: opacity 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  display: table;
}

.cf-modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.cf-modal-container {
  position: relative;
  max-width: calc(100% - 120px);
  height: 86%;
  margin: 60px auto;
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  color: #333;
  display: flex;
}

.cf-modal-container .modal_content-closeBtn {
  top: -46px;
  right: 0px;
  color: #fff;
}

.cf-modal-container__leftWrap {
  width: 30%;
  max-width: 390px;
  min-width: 130px;
  margin-right: 20px;
  overflow-y: scroll;
}

.cf-modal-container__rightWrap {
  width: 70%;
  overflow-y: scroll;
}

.tab-container {
  width: 100%;
  list-style-type: none;
  padding: 0;
  position: relative;
  background: #fff;
}

.tab-container ul {
  list-style-type: none;
  padding: 0;
}

.tab-container .tab-content-container {
  height: 0;
  display: none;
  background: #fff;
  position: absolute;
  top: 30px;
  padding: 20px 20px 20px 0;
  border: 1px solid #ccc;
  border-left: none;
  border-top: 0;
  width: 100%;
}

/* .tab-container .tab-content-container .tab-content {
  opacity: 0;
} */

.tab-container .tab {
  outline: 0;
  float: left;
  cursor: pointer;
  display: block;
  width: 33.3333%;
  line-height: 29px;
  display: block;
  margin: 0;
  position: relative;
  background: #f8f8f8;
  color: #aaa;
  text-align: center;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 13px;
}

.tab-container .tab:hover {
  background: #fff;
}

.tab-container .tab-toggle {
  display: none;
}

.tab-container .tab-toggle.active + .tab,
.tab-container .tab-toggle:checked + .tab {
  background: #fff;
  color: #333;
  font-weight: bold;
}

.tab-container .tab-toggle.active ~ .tab-content-container,
.tab-container .tab-toggle:checked ~ .tab-content-container {
  height: auto;
  display: block;
}

.tab-container .tab-toggle.active ~ .tab-content-container .tab-content,
.tab-container .tab-toggle:checked ~ .tab-content-container .tab-content {
  display: block;
}

.tab-container .tab-toggle.active ~ .tab-content-container .tab-content label,
.tab-container .tab-toggle:checked ~ .tab-content-container .tab-content label {
  display: block;
}

.tab-content__form {
  margin-top: 10px;
}

.tab-content__form:first-child {
  margin-top: 0;
}

.tab-content__form--ttl {
  font-size: 13px;
  line-height: 1;
  display: block;
  padding-bottom: 5px;
}

.tab-content__form--txtarea {
  width: calc(100% - 40px);
  height: 30px;
  font-size: 13px;
  color: #333;
  padding: 0 6px;
  border: 1px solid #ccc;
}

textarea.tab-content__form--txtarea {
  max-width: 275px;
  min-height: 30px;
  padding: 6px;
}

.tab-content__form--btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
  border-bottom: 2px solid #ccc;
  background-color: #fff;
  position: relative;
  top: -2px;
}

.tab-content__form--btn.textareaBtn {
  top: -11px;
}

.tab-content__form--btn:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  /*下に動く*/
  border-bottom: 1px solid #ccc;
}

button.tab-content__form--btn:hover {
  background: #f8f8f8;
}

button.tab-content__form--btn:focus,
.tab-content__form input:focus {
  outline: 0;
}

.fa-clipboard {
  font-size: 13px;
}

.cf-ttl__wrap {
  background-color: #333;
  height: 30px;
  color: #fff;
  display: flex;
  font-size: 13px;
  padding: 5px 0;
}

.cf-ttl,
.cf-ttl-back,
.cf-ttl-next {
  line-height: 1;
  border-right: 1px solid #666;
}

.cf-ttl {
  font-weight: bold;
  padding: 4px 20px;
}

.cf-ttl-back,
.cf-ttl-next {
  padding: 1px 20px;
}

a.cf-ttl-back,
a.cf-ttl-next {
  color: #fff;
  display: block;
}

a.cf-ttl-back:hover,
a.cf-ttl-next:hover {
  text-decoration: none;
  opacity: 0.5;
}

.cf-ttl-back p,
.cf-ttl-next p {
  display: inline;
  position: relative;
  top: -2px;
}

.fa-caret-left,
.fa-caret-right {
  font-size: 18px;
}

.fa-caret-left {
  margin-right: 8px;
}

.fa-caret-right {
  margin-left: 8px;
}

/*  ウィンドウサイズ769px以下の時のスタイル  */

@media only screen and (max-width: 768px) {
  .modal_box__countover {
    padding: 40px 0px;
  }

  .modal_contents {
    padding: 0px 20px;
  }

  .fa-tachometer-alt {
    font-size: 46px;
  }

  .modal_box__countover p {
    font-size: 13px;
    margin-top: 20px;
  }

  .modal_box__countover .list-dl__btn {
    margin: 15px auto;
  }

  .modal_content-cBtn {
    width: 100%;
    height: 70px;
    margin: 20px auto 20px;
    padding: 17px 0;
    font-size: 22px;
  }

  .modal_content-cBtn i {
    margin-right: 4px;
  }

  a[href^='tel:'] {
    pointer-events: auto;
  }

  .searchArea__btn:nth-child(2) {
    margin-top: 20px;
  }

  .modal_content-downloadTxtWrap {
    margin: 0;
  }

  .modal_content-downloadTxtWrap .possible_number {
    font-size: 20px;
    color: #d63130;
  }

  .modal_content-downloadTxtWrap span {
    display: block;
    margin-right: 0;
  }

  .modal_content-downloadTxtWrap .possible_number_txt {
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  .buyAnnouncement_txt {
    text-align: center;
    display: block;
    margin: 10px auto 0;
    position: relative;
    left: 0;
    bottom: 0;
  }

  .cf-modal-mask {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .modal_box__countover {
    padding: 40px 0px;
  }

  .modal_contents {
    padding: 0px 20px;
  }

  .modal_box__countover h2 {
    font-size: 16px;
    width: 100%;
  }

  .modal_box__countover p {
    margin-top: 14px;
  }

  .modal_content-cBtn {
    height: 62px;
    padding: 17px 0;
  }

  .fa-tachometer-alt {
    font-size: 40px;
  }

  .modal_content-cBtn {
    font-size: 20px;
  }

  .modal_content-closeBtn {
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 375px) {
  .list-dl__btn {
    width: 180px;
  }

  .charge__btn {
    width: 200px;
  }
}

.modal__header {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: left;
}

.dl-count__wrap {
  width: 100%;
  border: 1px solid rgba(131, 130, 130, 0.651);
}

.dl-count__inner {
  width: 83%;
  text-align: center;
  margin: 20px auto;
}

.dl-count__title {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
}

.dl-count__text {
  font-size: 14px;
  font-weight: 700;
}

.dl-count__num {
  font-size: 38px;
  color: #e82212;
  font-family: 'din-condensed', Bahnschrift !important;
}

.dl-charge__wrap {
  width: 100%;
  margin: 20px 0;
  padding-bottom: 10px;
  border: 1px solid rgba(131, 130, 130, 0.651);
}

.dl-charge__inner {
  width: 83%;
  margin: 0 auto;
  text-align: left;
}

.dl-possible-number {
  display: block;
}

.dl-possible-number span {
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 32px;
  padding-right: 5px;
  font-family: 'din-condensed', Bahnschrift !important;
}

.num-breakdown__border {
  height: 1px;
  border: none;
  border-top: 1px solid #adacac;
}

.num-breakdown a {
  color: #000000;
  text-decoration: underline;
  font-size: 13px;
}

.num-breakdown a:hover {
  color: #000000;
}

.num-breakdown a i,
.num-breakdown a svg {
  margin-left: 5px;
}

.num-breakdown-items {
  display: none;
}

.avoid_downloaded_txt {
  display: block;
  margin-top: 5px;
}

.avoid_downloaded_txt .download_label {
  text-align: center;
  font-size: 13px;
}

.overlap-message {
  display: flex;
  margin-top: 5px;
  justify-content: center;
  align-items: center;
}

.overlap-message .download_label {
  text-align: left;
}

.overlap-message img {
  padding-right: 5px;
}

.modal_box__countover .font_1 {
  font-size: 18px;
}

.modal_box__countover .font_2 {
  font-size: 16px;
}

.modal_box__countover .font_3 {
  font-size: 14px;
}

.modal_box__countover .font_4 {
  font-size: 12px;
}

.modal_box__countover .font_5 {
  font-size: 10px;
}

@media screen and (max-width: 480px) {
  .dl-charge__inner {
    width: 88%;
  }
}

@media only screen and (max-width: 768px) {
  .modal_box__countover .font_1 {
    font-size: 20px;
  }

  .modal_box__countover .font_2 {
    font-size: 18px;
  }

  .modal_box__countover .font_3 {
    font-size: 16px;
  }

  .modal_box__countover .font_4 {
    font-size: 14px;
  }

  .modal_box__countover .font_5 {
    font-size: 12px;
  }

  .dl-possible-number {
    text-align: center;
  }

  .num-breakdown a {
    font-size: 12px;
  }

  .dl-charge__title {
    text-align: center;
  }

  .overlap-message__wrap {
    padding: 5px 10px;
  }

  .overlap-message img {
    position: relative;
    top: 2px;
  }

  .modal__checkbox {
    padding: 5px 0;
  }

  .overlap-message {
    align-items: baseline;
  }

  .avoid_downloaded_txt .download_label {
    font-size: 12px;
  }
}

.searchStatus__listCount--txt {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1;

  @media only screen and (max-width: 768px) {
    .tooltip-mark {
      &::before {
        left: 0;
      }

      .tooltip-text {
        transform: translateX(-100%);

        &::after {
          content: none;
        }
      }
    }
  }
}

.searchStatus__listCount--num {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 8px;
}

.searchStatus__listCount--item {
  font-size: 13px;
  line-height: 1;
  color: #999;
  text-align: left;
  margin-bottom: 5px;
}

.searchStatus__listCount--item span {
  margin-left: 10px;
}

.searchStatus__listCount--btn {
  margin-top: 20px;
  margin-bottom: 30px;
}

.searchStatus__listCount--btn button {
  -webkit-appearance: none;
  width: 156px;
  height: 37px;
  background: #fff;
  color: #333;
  border: 1px solid #333;
  border-radius: 21px;
  outline: none;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  cursor: pointer;
}

.searchStatus__listCount--btn button:hover {
  background: #f8f8f8;
}

.searchStatus__listCount--btn button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: 3px solid #333;
}

.searchStatus__listCount--link {
  font-size: 10px;
  margin-top: 10px;
}

.searchStatus__listCount--link a {
  color: #999;
}

.searchStatus__listCount--link a:hover {
  text-decoration: none;
  color: #e82212;
}

.searchStatus__listCount--link .fa-chevron-right {
  font-size: 10px;
  margin-left: 3px;
}

/*  ウィンドウサイズ768px以下の時のスタイル  */
@media only screen and (max-width: 768px) {
  .searchStatus__listCount {
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 15px;
  }

  .searchStatus__listCount--num {
    margin-left: 0;
  }

  .searchStatus__listCount--num,
  .searchStatus__listCount--item {
    text-align: center;
  }

  .searchStatus__listCount--btn {
    margin-left: 0;
    margin-top: 20px;
  }

  .searchStatus__listCount--btn button {
    font-size: 14px;
  }
}

/*# sourceMappingURL=category.css.map */
.searchArea__header .searchArea__openclose {
  display: none;
}

@media only screen and (max-width: 768px) {
  .searchArea__header .searchArea__openclose {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    -webkit-appearance: none;
    width: 238px;
    height: 48px;
    background: #444444;
    color: #fff;
    border: none;
    border-radius: 24px;
    outline: none;
    padding: 13px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    cursor: pointer;
    border-bottom: solid 3px #000000;
    transition: all 0.3s linear;
  }
}

.searchArea__details {
  margin-bottom: 40px;
  padding: 15px 13px;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 768px) {
  .searchArea__details {
    margin-bottom: 20px;
  }
}

.searchArea__details dl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.searchArea__details dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.searchArea__details dt {
  font-size: 1.2rem;
  font-weight: 700;
  color: #9d9d9d;
}

@media only screen and (max-width: 768px) {
  .searchArea__details dt {
    font-size: 1.6rem;
  }
}

.searchArea__details dd {
  font-size: 1.6rem;
  font-weight: 700;
  color: #525252;
  font-feature-settings: 'palt';
}

@media only screen and (max-width: 768px) {
  .searchArea__details dd {
    font-size: 2rem;
  }
}

.searchArea__details-type dd {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .searchArea__details-type dd {
    font-size: 2rem;
  }
}

.abouttexts {
  padding-top: 20px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .abouttexts {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.abouttexts__item {
  margin-bottom: 7px;
}

.abouttexts__item dt {
  padding: 7px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #333;
}

@media only screen and (max-width: 768px) {
  .abouttexts__item dt {
    font-size: 1.9rem;
    padding: 4px 15px;
  }
}

.abouttexts__item dd {
  padding: 15px 5px 15px;
  font-size: 1.3rem;
  color: #000;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .abouttexts__item dd {
    padding: 10px 5px 15px;
    font-size: 1.5rem;
    line-height: 1.75;
  }
}
