@charset "UTF-8";

.company-list {
  text-align: center;
  padding: 40px 30px;
}

.company-list__top {
  position: relative;
}

.company-list__select {
  margin-top: 30px;
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #111111;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
}

.company-list__select-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #626262;
  border-radius: 5px;
  cursor: default;
  transition: 0.3s;
  border: none;
  pointer-events: none;
}

.company-list__select-btn span {
  position: absolute;
  left: 5px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}

/* 1本目（縦線） */
.company-list__select-btn span:nth-child(1) {
  top: 15px;
  transform: rotate(90deg);
}

/* 2本目（横線）*/
.company-list__select-btn span:nth-child(2) {
  top: 15px;
}

/* --- 開いたときは「－」にする --- */
.company-list__select-btn.open span:nth-child(1) {
  transform: rotate(0deg);
  opacity: 0;
}

.company-list__result {
  text-align: start;
  scroll-margin-top: 130px;
}

.company-list__all {
  margin-top: 30px;
  padding-right: 10px;
  text-align: end;
}

.company-list__genre {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-bottom: solid 2px #626262;
}

.company-list__icon {
  width: 30px;
  height: auto;
  margin-right: 20px;
  padding-bottom: 5px;
}

.company-list__contents {
  font-size: 1.25rem;
  font-weight: bold;
}

.company-list__item {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: dotted 3px #727171;
}

.company-list__item>.company-list__link:only-child {
  margin-bottom: 0;
}

.company-list__link {
  font-weight: 600;
}

.company-list__link--img {
  height: 1.25rem;
  vertical-align: -4px;
}

.company-list__status {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  text-align: center;
  column-gap: 10px;
}

.company-list__attribute {
  border: solid 1px #0098DB;
  border-radius: 12px;
  font-size: 13px;
  padding: 3px 10px;
  margin-top: 10px;
}
