@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* # =================================================================
# Style
# ================================================================= */
/*-------- search  --------*/
.search__heading {
  background-color: #ffffff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 16px 21px 36px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.search__heading:hover .search__heading-text::after {
  width: 100%;
}
.search__heading.is-open .search__arrow {
  -webkit-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
}
.search__heading-text {
  font-size: 22px;
  color: #348ddf;
}
.search__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: auto;
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #348ddf;
}
.search__item {
  margin-top: 20px;
}
.search .c-form-item__checkbox input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.search .c-form-item__checkbox input[type=checkbox]::before {
  top: 2px;
  left: 6px;
  width: 8px;
  height: 12px;
}
.search .c-form-item__checkbox label {
  font-weight: bold;
}
.search .c-form-item__label + * {
  margin-top: 20px;
}
.search .c-form-item__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
  cursor: pointer;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.search .c-form-item__button:hover {
  opacity: 0.7;
}
.search .c-pill-button .c-pill-button__text {
  padding-left: 28px;
  margin: 0 auto;
}

.search-item {
  position: relative;
  width: 100%;
  border-radius: 30px;
  background-color: rgba(225, 238, 250, 0.7568627451);
  padding: 40px 70px 50px;
}
.search-item__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/*-------- result  --------*/
.result__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.result-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% - 60px) / 3);
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.result-card__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 30px;
}
.result-card__image-wrap {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.result-card__text-wrap {
  width: 100%;
  padding-top: 15px;
}
.result-card__image-wrap + .result-card__text-wrap {
  width: calc(60% - 15px);
}
.result-card__title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.result-card__name {
  font-size: 22px;
  margin-top: 8px;
}
.result-card__gender {
  font-size: 13px;
  margin-top: 12px;
}
.result-card__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #ffffff;
  background-color: #333333;
  padding: 2px 4px;
  margin-top: 30px;
}
.result-card__target {
  font-size: 15px;
  margin-top: 8px;
}
.result-card__target span {
  display: inline-block;
  line-height: 1.5;
}
.result-card__target span + span::before {
  content: " / ";
}
.result-card__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 180px;
  padding: 11px 10px 9px;
  margin: 0 auto;
}
.result-card__button .c-pill-button__text {
  font-size: 14px;
  padding-left: 20px;
}

/*-------- team-result  --------*/
.team-result__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
}

.team-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
}
.team-card__image-wrap {
  width: 400px;
  aspect-ratio: 400/260;
  border-radius: 20px;
  overflow: hidden;
}
.team-card__image-wrap + .team-card__text-wrap {
  width: calc(100% - 660px);
}
.team-card__title {
  font-size: 14px;
  font-weight: 400;
}
.team-card__team {
  font-size: 22px;
  margin-top: 8px;
}
.team-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.team-card__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #ffffff;
  background-color: #333333;
  padding: 2px 4px;
}
.team-card__detail {
  font-size: 15px;
}
.team-card__detail span + span::before {
  content: " / ";
}
.team-card__info + .team-card__info {
  margin-top: 10px;
}
.team-card__button-wrap {
  width: 100%;
  max-width: 180px;
  margin-top: auto;
  margin-left: auto;
}
.team-card__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 11px 10px 9px;
}
.team-card__button .c-pill-button__text {
  font-size: 14px;
  padding-left: 20px;
}

@media screen and (max-width: 1024px) {
  .result-card {
    width: calc((100% - 30px) / 2);
  }
  .team-card__image-wrap {
    width: 50%;
  }
  .team-card__text-wrap {
    width: calc(50% - 40px);
  }
  .team-card__button-wrap {
    width: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .search-item {
    padding: 40px 30px;
  }
  .result-card__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
  .result-card__image-wrap {
    width: 50%;
    min-width: 130px;
    margin: 0 auto;
  }
  .team-card__image-wrap + .team-card__text-wrap,
  .result-card__text-wrap {
    width: 100%;
  }
  .team-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
  }
  .team-card__image-wrap {
    max-width: 500px;
    width: 100%;
  }
  .team-card__text-wrap {
    width: 100%;
  }
  .team-card__button-wrap {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .result-card {
    width: 100%;
  }
}