:root {
  --bg-color: #e5eef3;
  --hover-color: #e5eef3;
  --main-color: #247ee2;
  --btn-color: #247ee2;
  --bg-end-color: #e4e4e4;
  --bg-gradient: linear-gradient(90deg, #247ee2 0%, #0858af 100%);
}

@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap);
html, body, div, span, applet, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  color: #353535;
  font: inherit;
  line-height: inherit;
  vertical-align: baseline;
}
p {
  color: #353535;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
html {
  overflow-y: scroll;

  scroll-behavior: smooth;
}
img {
  vertical-align: middle;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
input, textarea {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
a {
  text-decoration: none;
}
button {
  border: none;
  border-radius: 0;
  background-color: inherit;
  cursor: pointer;
}
*, *::before, *::after {
          box-sizing: border-box;

  -webkit-box-sizing: border-box;
}
body * {
  -webkit-text-size-adjust: 100%;
}
a img {
          transition-property: opacity;
          transition-duration: .2s;

  -webkit-transition-property: opacity;
  -webkit-transition-duration: .2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a:hover img {
  opacity: .8;
}
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
input[type="checkbox"] {
  display: none;
}
label span {
  padding: 5px 15px;
  border: 1px solid #cccccc;
  border-radius: 100px;
  color: #333333;
  font-size: 12px;
}
input[type="checkbox"]:checked + span {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  label span {
    padding: 3px 10px;
    font-size: 10px;
  }
}
/*common*/
/*
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
body {
  color: #000000;
  font-size: 16px;
  font-size: 1.7rem;
  line-height: 1.8;
}
*/
.pc {
  display: block;
}
.sp, .tb {
  display: none;
}
a {
  color: #000000;
}
img {
  max-width: 100%;
  height: auto;
}
.c-btn a {
  display: block;
  position: relative;
  max-width: 330px;
  margin: auto;
  padding: 10px;
  border-radius: 30px;
  background: var(--btn-color);
  background-position: 1% 50%;
  background-size: 200% auto;
  color: #ffffff;
  text-align: center;
  transition: all .3s ease-out;
}
.c-btn a:hover {
  background: #0940a6;
}
.c-btn a::after, .c-btn_gray a::after {
  position: absolute;
  top: calc((100% - 6px) / 2);
  right: 20px;
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  content: "";

  -webkit-transform: rotate(45deg);
}
.c-btn_gray a {
  display: block;
  position: relative;
  max-width: 330px;
  margin: auto;
  padding: 10px;
  border-radius: 30px;
  background: #353535;
  background-position: 1% 50%;
  background-size: 200% auto;
  color: #ffffff;
  text-align: center;
  transition: all .3s ease-out;
}
.c-btn_gray a:hover {
  background: #000000;
}
.c-btn_end {
  max-width: 330px;
  margin: auto;
  padding: 10px;
  border: 2px solid #666666;
  border-radius: 100px;
  color: #353535;
  text-align: center;
}


/*NEEDS-----------------------*/

/*Tab----*/
.needs-tab {
  margin-top: 30px;
}
.needs-tab__title {
  margin-top: 20px;
  font-weight: bold;
  font-size: clamp(18px,1.875vw,28px);
  letter-spacing: .1em;
  text-align: center;
}
.needs-tab__text {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.needs-tab__update {
  margin-bottom: 1.2vw;
  font-size: 14px;
  text-align: center;
}
.needs-tab__status {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;

  gap: 1px;
}
.needs-tab__status__item {
  min-width: 180px;
  padding: 15px 20px;
  background: #e7e7e7;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  transition: all ease .3s;
}
.needs-tab__status__item:hover {
  background: var(--main-color);
  color: #ffffff;
  cursor: pointer;
}
.needs-tab__status__item.is-active {
  position: relative;
  background: var(--main-color);
  color: #ffffff;
}
.needs-tab__status__item.is-active::after {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border: 8px solid transparent;
  border-top: 8px solid var(--main-color);
  content: "";
}
.needs-tab__category {
  display: flex;
  justify-content: center;

  gap: 0 3px;
}
.needs-tab__category__item {
  margin-top: 10px;
  padding: 15px 1.5vw 0;
  border-radius: 3px 3px 0 0;
  background-color: #e7e7e7;
  font-size: 14px;
  line-height: 1.3em;
  text-align: center;
  cursor: pointer;
  transition: all ease .5s;
}
.needs-tab__category__item.is-active {
  margin-top: 0;
  background: var(--bg-color);
}
.needs-tab__category__item:hover {
  background: var(--hover-color);
}
.needs-tab__category__item:hover img {
  position: relative;
  animation: btn .5s ease-in-out 1 forwards;
}
@keyframes btn {
  0% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  50% {
    transform: scale(.98, 1.05) translate(0, -8px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
.needs-tab__label {
  margin: 5px 0;
}
.needs-tab__img {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 10px;
  transition: all ease .3s;
}
.needs-tab__img img {
  width: 50px;
}

/*Tag----*/
.needs-main {
  padding: 3vw 5vw 0;
  background-color: #2db1d2;
}
.needs-tag {
  padding: 15px 10px 15px 20px;
  border-radius: 5px;
  background: #ffffff;
  text-align: center;
}
.needs-tag__title {
  position: relative;
  font-weight: normal;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all .5s ease;
}
.needs-tag__title img {
  width: 20px;
  margin: -3px 5px 0 0;
}
.needs-tag__title::before, .needs-tag__title::after {
  position: absolute;
  top: 48%;
  right: 15px;
  width: 15px;
  height: 1px;
  background-color: #333333;
  content: "";
}
.needs-tag__title::before {
  transform: rotate(0deg);
}
.needs-tag__title::after {
  transform: rotate(90deg);
}
.needs-tag__title.close::before {
  transform: rotate(45deg);
}
.needs-tag__title.close::after {
  transform: rotate(-45deg);
}
.needs-tag__list {
  display: none;
  margin: 15px;
}
.needs-tag__list.is-active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

/*List----*/
.needs-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 3vw 0 5vw;
  gap: 30px;
}
.needs-card {
  position: relative;
  width: calc((100% - 30px) / 2);
  padding: 45px 30px 50px;
  border-radius: 5px;
  background: #ffffff;
}
.needs-card__end {
  opacity: .8;
  background: var(--bg-end-color);
}
.needs-card__end {
  color: #4f4f4f;
}
.needs-card__end .needs-card__box {
  background: #efefef;
}
/*CATEGORY----*/
.needs-card__category {
  display: flex;
  align-items: start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  text-align: center;
  gap: 3px;
}
.category_icon {
  min-width: 80px;
  padding: 8px 10px;
  background: #353535;
  color: #ffffff;
  font-size: 15px;
  line-height: 1em;
}
.category01 {
  background: #e66060;
}
.category02 {
  background: #53b1cc;
}
.category03 {
  background: #45b695;
}
.category04 {
  background: #ee882e;
}
.category05 {
  background: #7c57a0;
}
.category06 {
  background: #426fe3;
}
.category07 {
  background: #ecb719;
}
.category08 {
  background: #85b02c;
}
.category09 {
  background: #ea79a3;
}
.category10 {
  background: #3e4275;
}
.category_new {
  /*position: absolute;*/
  right: 0;
  margin-left: auto;
  padding: 6px 10px;
  line-height: 1em;
}
.category_new::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border-right: 50px solid #ffea00;
  border-bottom: 50px solid transparent;
  content: "";
}
.category_new span {
  position: absolute;
  top: 10px;
  right: 3px;
  z-index: 1;
  transform: rotate(45deg);
  font-size: 12px;
}
.needs-card__tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 3px;
}
.needs-card__tag li {
  padding: 6px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 100px;
  font-size: 12px;
  line-height: 1em;
}
.category_end {
  margin: 5px 5px  0 auto;
  padding: 3px 10px;
  background: #cccccc;
  font-size: 12px;
}
/*DETAIL----*/
.needs-card__title {
  display: flex;
  align-items: center;
  min-height: 3em;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
}
.needs-card__heading {
  width: 100%;
  color: var(--main-color);
  color: #4f4f4f;
  font-size: clamp(18px, 1.3vw,24px);
  line-height: 1.4;	
}
.needs-card__box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 10px;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--bg-color);
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}
.needs-id::after {
  margin: 0 10px;
  content: "/";
}
.needs-area img {
  width: 30px;
  vertical-align: top;
}
.needs-card__company {
  margin-bottom: 20px;
  padding-right: 5px;
  font-size: 12px;
  text-align: right;
  vertical-align: top;
}
.needs-card__company span {
  display: inline-block;
  padding: 0 8px 0;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  color: #666666;
}

.needs-card__company span::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-bottom: -2px;
  background: url(../images/icon_company.png) no-repeat center / cover;
  content: "";
}
.needs-card__detail {
  margin-bottom: 2vw;
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
  .needs-card__category {
    font-size: 10px;
  }
  .needs-card__box {
    display: block;
    text-align: center;
  }
  .needs-id, .needs-date {
    font-size: 12px;
    line-height: 1.5em;
  }
  .needs-card {
    padding: 50px 30px;
  }
  .needs-card__heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
  .needs-tab__text {
    font-size: 14px;
  }
  .needs-tab__update {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .needs-tab__bg {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .needs-tab__status__item {
    min-width: 100px;
    padding: 10px;
    font-size: 14px;
  }
  .needs-tab__status__item.is-active::after {
    bottom: -10px;
    border: 5px solid transparent;
    border-top: 5px solid var(--main-color);
  }
  .needs-tab__category {
    flex-wrap: nowrap;
    justify-content: center;
    width: 650px;
    margin-bottom: -1px;
    padding: 0 5px;
    overflow-x: scroll;
    gap: 0 2px;
  }
  .needs-tab__category__item {
    flex: 1;
    margin: 5px 0 0 0;
    padding: 8px 3px 5px;
    font-size: 12px;
  }
  .needs-tab__img img {
    width: 25px;
  }
  .needs-tab__label {
    font-size: 10px;
    line-height: 1.3em;
  }
  .needs-tag {
    margin: 10px 0;
    padding: 10px 10px 10px 15px;
  }
  .needs-tag__title {
    font-size: 12px;
  }
  .needs-tag__title::before, .needs-tag__title::after {
    right: 10px;
    width: 10px;
  }
  .needs-tag__title span {
    width: 20px;
    height: 20px;
  }
  .needs-tag__title img {
    width: 16px;
  }
  .needs-tag__list.is-active {
    justify-content: start;
    margin: 10px 0;
    gap: 3px;
  }
  .needs-tag__list span {
    width: 20px;
    height: 20px;
  }
  .needs-tag__list label span {
    display: inline;
  }
  .needs-card {
    width: 100%;
    padding: 30px 0 40px;
    padding: 35px 20px 30px;
    gap: 15px;
  }
  .needs-card__box {
    margin: 20px 0 5px;
    border-radius: 5px;
  }
  .needs-card__company {
    padding-right: 0;
  }
  .needs-card__detail {
    margin-bottom: 15px;
  }
  .needs-id::after {
    display: none;
  }
  .needs-card__tag li {
    padding: 5px 8px;
    font-size: 10px;
  }
  .category_end {
    margin: 5px 5px 0 auto;
    padding: 0 10px 0;
    font-size: 12px;
  }
  .category_icon {
    padding: 7px 10px;
    font-size: 12px;
  }
  .category_new {
    /*position: absolute;*/
    right: 0;
    margin-left: auto;
    padding: 0;
    line-height: 1em;
  }
  .category_new::before {
    border-right: 40px solid #ffea00;
    border-bottom: 40px solid transparent;
  }
  .category_new span {
    font-size: 10px;
  }
}
@media screen and (max-width: 320px) {
  .needs-tab__title {
    margin: 40px 5vw 15px;
    line-height: 1.5em;
  }
  .needs-tab__category__item {
    padding: 10px 3px;
    font-size: 10px;
  }
}

.needs-card__tag {
  display: none !important;
}