@charset "UTF-8";
.c-breadcrumbs {
  background-color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
    padding-inline: 10px;
    width: 100%;
  }
}
.c-breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 2em;
  padding: 1px 0 11px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs__list {
    overflow-x: scroll;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 4px 0 10px;
  }
}
.c-breadcrumbs__list > li {
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs__list > li {
    display: inline-block;
  }
}
.c-breadcrumbs__list > li + li::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -1em;
  width: 1px;
  height: 14px;
  background-color: #fff;
}
.c-breadcrumbs__list > li a,
.c-breadcrumbs__list > li span {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}
.c-breadcrumbs__list > li a:hover {
  text-decoration: underline;
  opacity: 1;
}

.c-clinic-card {
  width: 360px;
  /* 色変更 */
}
@media screen and (max-width: 767px) {
  .c-clinic-card {
    width: 100%;
  }
}
.c-clinic-card__thumb {
  display: flex;
}
.c-clinic-card__item01 {
  width: 56.9444444444%;
  height: auto;
}
.c-clinic-card__item01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 205/155;
}
.c-clinic-card__item02 {
  width: 43.0555555556%;
  height: auto;
}
.c-clinic-card__item02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 155/155;
}
.c-clinic-card__content {
  padding-top: 10px;
}
.c-clinic-card__clinic {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: bold;
}
.c-clinic-card__name {
  font-size: 14px;
}
.c-clinic-card__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-clinic-card__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-clinic-card__place > li + li {
  margin-left: -3px;
}
.c-clinic-card__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-clinic-card__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-clinic-card__category {
    padding: 0 16px 0 0;
  }
}
.c-clinic-card__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-clinic-card__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-clinic-card__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-clinic-card__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-clinic-card__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-clinic-card--clinic .c-clinic-card__category {
  color: var(--orange-dark);
}
.c-clinic-card--clinic .c-clinic-card__category > li {
  color: var(--orange-dark);
}
.c-clinic-card--dental .c-clinic-card__category {
  color: var(--green-dark);
}
.c-clinic-card--dental .c-clinic-card__category > li {
  color: var(--green-dark);
}
.c-clinic-card--animal .c-clinic-card__category {
  color: var(--blue-dark);
}
.c-clinic-card--animal .c-clinic-card__category > li {
  color: var(--blue-dark);
}

.c-clinic-info {
  padding: 40px;
  background-color: #fff;
  border-top: solid 10px #e0e0e0;
  /* 色変更 */
}
@media screen and (max-width: 767px) {
  .c-clinic-info {
    padding: 40px 10px 10px;
  }
}
.c-clinic-info__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.c-clinic-info__left {
  width: 560px;
}
.c-clinic-info__right {
  width: 560px;
}
.c-clinic-info__title-link {
  display: inline-block;
  text-decoration: underline;
}
.c-clinic-info__title-link:hover {
  text-decoration: underline;
}
.c-clinic-info__title {
  margin-bottom: 6px;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-clinic-info__title {
    font-size: 22px;
    line-height: 1.2;
  }
}
.c-clinic-info__category {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}
.c-clinic-info__category > li {
  position: relative;
  font-size: 14px;
  color: var(--gray-dark);
}
.c-clinic-info__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  content: "●";
}
.c-clinic-info--clinic .c-clinic-info__category > li {
  color: var(--orange-dark);
}
.c-clinic-info--dental .c-clinic-info__category > li {
  color: var(--green-dark);
}
.c-clinic-info--animal .c-clinic-info__category > li {
  color: var(--blue-dark);
}

.c-clinic-neighbor {
  padding: 0 40px 40px;
  background-color: var(--border-gray);
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor {
    padding: 0 10px 10px;
  }
}
.c-clinic-neighbor__title {
  padding: 40px 0;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor__title {
    padding: 30px 0;
    font-size: 20px;
  }
}
.c-clinic-neighbor__title > span {
  position: relative;
}
.c-clinic-neighbor__title > span::before {
  position: absolute;
  top: 50%;
  left: -25px;
  width: 15px;
  height: 2px;
  content: "";
  background-color: #000;
}
.c-clinic-neighbor__title > span::after {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 15px;
  height: 2px;
  content: "";
  background-color: #000;
}
.c-clinic-neighbor__subtitle {
  margin-bottom: 6px;
  font-weight: bold;
}
.c-clinic-neighbor__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}
.c-clinic-neighbor__item {
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor__item {
    line-height: 1.6;
  }
}
.c-clinic-neighbor__item > a:hover {
  text-decoration: underline;
  opacity: 1;
}

.c-clinic-neighbor-block01 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor-block01 {
    margin-bottom: 30px;
  }
}
.c-clinic-neighbor-block01__item {
  width: 360px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor-block01__item {
    width: 100%;
  }
}
.c-clinic-neighbor-block01__thumb {
  display: flex;
}
.c-clinic-neighbor-block01__item01 {
  width: 205px;
  height: 155px;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor-block01__item01 {
    width: 56.9444444444%;
    height: auto;
  }
}
.c-clinic-neighbor-block01__item01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 205/155;
}
.c-clinic-neighbor-block01__item02 {
  width: 155px;
  height: 155px;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor-block01__item02 {
    width: 43.0555555556%;
    height: auto;
  }
}
.c-clinic-neighbor-block01__item02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 155/155;
}
.c-clinic-neighbor-block01__content {
  padding-top: 10px;
}
.c-clinic-neighbor-block01__clinic {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: bold;
}
.c-clinic-neighbor-block01__name {
  font-size: 14px;
}
.c-clinic-neighbor-block01__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-clinic-neighbor-block01__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-clinic-neighbor-block01__place > li + li {
  margin-left: -3px;
}
.c-clinic-neighbor-block01__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-clinic-neighbor-block01__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor-block01__category {
    padding: 0 16px 0 0;
  }
}
.c-clinic-neighbor-block01__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-clinic-neighbor-block01__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-clinic-neighbor-block01__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-clinic-neighbor-block01__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-clinic-neighbor-block01__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-clinic-neighbor-block01__category::before {
  background-color: var(--border-gray);
}
.c-clinic-neighbor-block01__category::after {
  background-color: var(--border-gray);
}
.c-clinic-neighbor-block01__category--clinic {
  color: var(--orange-dark);
}
.c-clinic-neighbor-block01__category--clinic li {
  color: var(--orange-dark);
}
.c-clinic-neighbor-block01__category--dental {
  color: var(--green-dark);
}
.c-clinic-neighbor-block01__category--dental li {
  color: var(--green-dark);
}
.c-clinic-neighbor-block01__category--animal {
  color: var(--blue-dark);
}
.c-clinic-neighbor-block01__category--animal li {
  color: var(--blue-dark);
}

.c-clinic-various-link {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  /* 色変更 */
}
.c-clinic-various-link__item {
  width: calc(20% - 1.6px);
}
.c-clinic-various-link__item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  background-color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-clinic-various-link__item > a {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .c-clinic-various-link__item > a {
    font-size: 12px;
  }
}
.c-clinic-various-link__item > a[href=""] {
  pointer-events: none;
  background-color: #ccc !important;
}
.c-clinic-various-link--clinic .c-clinic-various-link__item > a {
  background-color: var(--orange-dark);
}
.c-clinic-various-link--dental .c-clinic-various-link__item > a {
  background-color: var(--green-dark);
}
.c-clinic-various-link--animal .c-clinic-various-link__item > a {
  background-color: var(--blue-dark);
}

.c-clinicList-info {
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  border: none;
}
.c-clinicList-info th {
  width: 96px;
  padding: 10px;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  background-color: var(--bg-gray);
  border: none;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}
@media screen and (max-width: 767px) {
  .c-clinicList-info th {
    width: 80px;
  }
}
.c-clinicList-info th h2 {
  font-size: 14px;
  font-weight: 400;
}
.c-clinicList-info td {
  padding: 10px;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: none;
  border-top: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}
.c-clinicList-info td a {
  color: var(--main-color);
}
.c-clinicList-info td a:hover {
  text-decoration: underline;
  opacity: 1;
}
.c-clinicList-info__body-tel {
  font-size: 22px;
  font-weight: bold;
  color: var(--main-color);
}
.c-clinicList-info__body-tel > a {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-clinicList-info__body-tel > a {
    position: relative;
  }
  .c-clinicList-info__body-tel > a::after {
    content: "";
    position: absolute;
    top: calc(50% - 14px);
    right: 0;
    width: 28px;
    height: 28px;
    background: url("../img/icon_tel.png") no-repeat 0% 0%;
    background-size: cover;
  }
}
.c-clinicList-info__body-feature01 {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-clinicList-info__body-feature01 li {
  position: relative;
  margin-right: 1em;
}
.c-clinicList-info__body-feature01 li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-clinicList-info__body-feature02 {
  padding: 0;
  margin: 0;
  list-style: none;
}

.c-clinicList-interview-banner {
  margin-bottom: 20px;
  background-color: var(--gray-dark);
  /* 色変更 */
}
.c-clinicList-interview-banner__link {
  display: flex;
}
.c-clinicList-interview-banner__img {
  width: 105px;
}
.c-clinicList-interview-banner__img img {
  width: 100%;
  aspect-ratio: 105/140;
  object-fit: cover;
  object-position: center;
}
.c-clinicList-interview-banner__content {
  width: calc(100% - 105px);
  padding: 21px 30px;
}
@media screen and (max-width: 767px) {
  .c-clinicList-interview-banner__content {
    padding: 21px 20px;
  }
}
.c-clinicList-interview-banner__lead {
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 16px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-clinicList-interview-banner__name {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.c-clinicList-interview-banner--clinic {
  background-color: var(--orange-light);
}
.c-clinicList-interview-banner--dental {
  background-color: var(--green-light);
}
.c-clinicList-interview-banner--animal {
  background-color: var(--blue-light);
}

.c-clinicList-hours {
  margin-bottom: 20px;
}
.c-clinicList-hours__table {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: 14px;
}
.c-clinicList-hours__table caption {
  margin-bottom: 5px;
  text-align: left;
}
.c-clinicList-hours__table caption > h2 {
  font-size: 14px;
}
.c-clinicList-hours__table thead th {
  padding: 10px 5px;
  font-weight: normal;
  text-align: left;
  text-align: center;
  white-space: nowrap;
  background-color: var(--bg-gray);
  border: none;
  border: 1px solid var(--border-gray);
}
.c-clinicList-hours__table thead td {
  padding: 10px 5px;
  text-align: left;
  text-align: center;
  background-color: var(--bg-gray);
  border: none;
  border: 1px solid var(--border-gray);
}
.c-clinicList-hours__table tbody th {
  width: 96px;
  padding: 10px 5px;
  font-weight: normal;
  text-align: left;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: none;
  border: 1px solid var(--border-gray);
}
.c-clinicList-hours__table tbody td {
  padding: 10px 5px;
  text-align: left;
  text-align: center;
  background-color: #fff;
  border: none;
  border: 1px solid var(--border-gray);
}
.c-clinicList-hours__table tfoot td {
  padding: 10px;
  text-align: left;
  background-color: #fff;
  border: none;
  border: 1px solid var(--border-gray);
}
.c-clinicList-hours__more {
  padding-top: 5px;
  text-align: right;
  color: var(--main-color);
}
.c-clinicList-hours__more a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* クリニック一覧　サムネイル画像 */
.c-clinicList-thumb {
  margin-bottom: 20px;
}
.c-clinicList-thumb__link {
  display: flex;
}
.c-clinicList-thumb__item01 {
  width: 320px;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .c-clinicList-thumb__item01 {
    width: 57.1428571429%;
    height: auto;
  }
}
.c-clinicList-thumb__item01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 320/240;
}
.c-clinicList-thumb__item02 {
  width: 240px;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .c-clinicList-thumb__item02 {
    width: 42.8571428571%;
    height: auto;
  }
}
.c-clinicList-thumb__item02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 240/240;
}

.c-condition-card {
  background-color: var(--gray-exlight);
}
.c-condition-card__img {
  position: relative;
  width: 100%;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .c-condition-card__img {
    width: 100%;
    height: auto;
  }
}
.c-condition-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 360/130;
}
.c-condition-card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  inset: 0 auto auto 0;
  width: 130px;
  height: 130px;
  margin: auto;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-condition-card__title {
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
  }
}
.c-condition-card__content {
  padding: 20px;
}
.c-condition-card__list {
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
  list-style: none;
}
.c-condition-card__list > li {
  display: inline-block;
  position: relative;
  margin: 0 5px 6px 0;
  padding-left: 1em;
}
.c-condition-card__list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.c-condition-card__list > li > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.c-condition-card__more > a {
  color: var(--main-color);
  font-size: 14px;
  font-weight: bold;
}
.c-condition-card__more > a:hover {
  text-decoration: underline;
  opacity: 1;
}

.c-condition-detail-card {
  /* 色変更 */
}
.c-condition-detail-card__head {
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--orange-light);
}
.c-condition-detail-card__head::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-condition-detail-card__head-title {
  margin-bottom: 10px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-condition-detail-card__head-title {
    display: block;
  }
}
.c-condition-detail-card__head-text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-condition-detail-card__head-text {
    display: block;
  }
}
.c-condition-detail-card__link {
  display: block;
}
.c-condition-detail-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 15px;
}
.c-condition-detail-card__thumb {
  width: 100px;
  height: auto;
}
.c-condition-detail-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}
.c-condition-detail-card__content {
  width: calc(100% - 100px - 15px);
}
.c-condition-detail-card__clinic {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.c-condition-detail-card__name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.c-condition-detail-card__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-condition-detail-card__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-condition-detail-card__place > li + li {
  margin-left: -3px;
}
.c-condition-detail-card__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-condition-detail-card__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-condition-detail-card__category {
    padding: 0 16px 0 0;
  }
}
.c-condition-detail-card__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-condition-detail-card__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-condition-detail-card__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-condition-detail-card__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-condition-detail-card__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-condition-detail-card--clinic .c-condition-detail-card__head {
  background-color: var(--orange-light);
}
.c-condition-detail-card--clinic .c-condition-detail-card__head::after {
  content: "";
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-condition-detail-card--clinic .c-condition-detail-card__category {
  color: var(--orange-dark);
}
.c-condition-detail-card--clinic .c-condition-detail-card__category > li {
  color: var(--orange-dark);
}
.c-condition-detail-card--dental .c-condition-detail-card__head {
  background-color: var(--green-light);
}
.c-condition-detail-card--dental .c-condition-detail-card__head::after {
  content: "";
  background: url("../img/triangle-down-green.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-condition-detail-card--dental .c-condition-detail-card__category {
  color: var(--green-dark);
}
.c-condition-detail-card--dental .c-condition-detail-card__category > li {
  color: var(--green-dark);
}
.c-condition-detail-card--animal .c-condition-detail-card__head {
  background-color: var(--blue-light);
}
.c-condition-detail-card--animal .c-condition-detail-card__head::after {
  content: "";
  background: url("../img/triangle-down-blue.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-condition-detail-card--animal .c-condition-detail-card__category {
  color: var(--blue-dark);
}
.c-condition-detail-card--animal .c-condition-detail-card__category > li {
  color: var(--blue-dark);
}

.c-disease-card {
  /* 色変更 */
}
.c-disease-card__link {
  display: block;
}
.c-disease-card__fukidashi {
  margin-bottom: 20px;
}
.c-disease-card__fukidashi-head {
  padding: 20px;
  background-color: var(--orange-dark);
  color: #fff;
}
.c-disease-card__fukidashi-lead {
  line-height: 1.3;
  margin-bottom: 6px;
}
.c-disease-card__fukidashi-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.c-disease-card__fukidashi-body {
  position: relative;
  padding: 20px;
  background-color: var(--orange-light);
  height: 140px;
}
.c-disease-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-disease-card__fukidashi-text01 {
  margin-bottom: 10px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.c-disease-card__fukidashi-text02 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.c-disease-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 15px;
}
.c-disease-card__thumb {
  width: 100px;
  height: 75px;
}
.c-disease-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 100/75;
}
.c-disease-card__content {
  width: calc(100% - 100px - 15px);
}
.c-disease-card__clinic {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.c-disease-card__name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.c-disease-card__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-disease-card__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-disease-card__place > li + li {
  margin-left: -3px;
}
.c-disease-card__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-disease-card__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-disease-card__category {
    padding: 0 16px 0 0;
  }
}
.c-disease-card__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-disease-card__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-disease-card__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-disease-card__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-disease-card__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-disease-card--clinic .c-disease-card__fukidashi-head {
  background-color: var(--orange-dark);
}
.c-disease-card--clinic .c-disease-card__fukidashi-body {
  background-color: var(--orange-light);
}
.c-disease-card--clinic .c-disease-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-disease-card--clinic .c-disease-card__category {
  color: var(--orange-dark);
}
.c-disease-card--clinic .c-disease-card__category li {
  color: var(--orange-dark);
}
.c-disease-card--dental .c-disease-card__fukidashi-head {
  background-color: var(--green-dark);
}
.c-disease-card--dental .c-disease-card__fukidashi-body {
  background-color: var(--green-light);
}
.c-disease-card--dental .c-disease-card__fukidashi-body::after {
  background: url("../img/triangle-down-green.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-disease-card--dental .c-disease-card__category {
  color: var(--green-dark);
}
.c-disease-card--dental .c-disease-card__category li {
  color: var(--green-dark);
}
.c-disease-card--animal .c-disease-card__fukidashi-head {
  background-color: var(--blue-dark);
}
.c-disease-card--animal .c-disease-card__fukidashi-body {
  background-color: var(--blue-light);
}
.c-disease-card--animal .c-disease-card__fukidashi-body::after {
  background: url("../img/triangle-down-blue.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-disease-card--animal .c-disease-card__category {
  color: var(--blue-dark);
}
.c-disease-card--animal .c-disease-card__category li {
  color: var(--blue-dark);
}

.c-interviewList-card {
  /* 色変更 */
}
.c-interviewList-card__thumb {
  width: 100%;
}
.c-interviewList-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 100/75;
}
.c-interviewList-card__content {
  padding-top: 10px;
}
.c-interviewList-card__clinic {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: bold;
}
.c-interviewList-card__name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.c-interviewList-card__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-interviewList-card__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-interviewList-card__place > li + li {
  margin-left: -3px;
}
.c-interviewList-card__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-interviewList-card__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-interviewList-card__category {
    padding: 0 16px 0 0;
  }
}
.c-interviewList-card__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-interviewList-card__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-interviewList-card__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-interviewList-card__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-interviewList-card__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-interviewList-card--clinic .c-interviewList-card__category {
  color: var(--orange-dark);
}
.c-interviewList-card--clinic .c-interviewList-card__category > li {
  color: var(--orange-dark);
}
.c-interviewList-card--dental .c-interviewList-card__category {
  color: var(--green-dark);
}
.c-interviewList-card--dental .c-interviewList-card__category > li {
  color: var(--green-dark);
}
.c-interviewList-card--animal .c-interviewList-card__category {
  color: var(--blue-dark);
}
.c-interviewList-card--animal .c-interviewList-card__category > li {
  color: var(--blue-dark);
}

.c-jobList-card {
  /* 色変更 */
}
.c-jobList-card__link {
  display: block;
}
.c-jobList-card__fukidashi {
  margin-bottom: 20px;
}
.c-jobList-card__fukidashi-head {
  padding: 20px;
  background-color: var(--orange-dark);
  color: #fff;
}
.c-jobList-card__fukidashi-lead {
  line-height: 1.3;
  margin-bottom: 6px;
}
.c-jobList-card__fukidashi-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.c-jobList-card__fukidashi-body {
  position: relative;
  padding: 20px;
  background-color: var(--orange-light);
}
.c-jobList-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-jobList-card__fukidashi-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.c-jobList-card__fukidashi-list > li {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.c-jobList-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 15px;
}
.c-jobList-card__thumb {
  width: 100px;
  height: 75px;
}
.c-jobList-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 100/75;
}
.c-jobList-card__content {
  width: calc(100% - 100px - 15px);
}
.c-jobList-card__clinic {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.c-jobList-card__name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.c-jobList-card__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-jobList-card__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-jobList-card__place > li + li {
  margin-left: -3px;
}
.c-jobList-card__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-jobList-card__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-jobList-card__category {
    padding: 0 16px 0 0;
  }
}
.c-jobList-card__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-jobList-card__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-jobList-card__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-jobList-card__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-jobList-card__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-jobList-card--clinic .c-jobList-card__fukidashi-head {
  background-color: var(--orange-dark);
}
.c-jobList-card--clinic .c-jobList-card__fukidashi-body {
  background-color: var(--orange-light);
}
.c-jobList-card--clinic .c-jobList-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-jobList-card--clinic .c-jobList-card__category {
  color: var(--orange-dark);
}
.c-jobList-card--clinic .c-jobList-card__category li {
  color: var(--orange-dark);
}
.c-jobList-card--dental .c-jobList-card__fukidashi-head {
  background-color: var(--green-dark);
}
.c-jobList-card--dental .c-jobList-card__fukidashi-body {
  background-color: var(--green-light);
}
.c-jobList-card--dental .c-jobList-card__fukidashi-body::after {
  background: url("../img/triangle-down-green.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-jobList-card--dental .c-jobList-card__category {
  color: var(--green-dark);
}
.c-jobList-card--dental .c-jobList-card__category li {
  color: var(--green-dark);
}
.c-jobList-card--animal .c-jobList-card__fukidashi-head {
  background-color: var(--blue-dark);
}
.c-jobList-card--animal .c-jobList-card__fukidashi-body {
  background-color: var(--blue-light);
}
.c-jobList-card--animal .c-jobList-card__fukidashi-body::after {
  background: url("../img/triangle-down-blue.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-jobList-card--animal .c-jobList-card__category {
  color: var(--blue-dark);
}
.c-jobList-card--animal .c-jobList-card__category li {
  color: var(--blue-dark);
}

.c-newsList-card__thumb {
  width: 100%;
}
.c-newsList-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 260/195;
}
.c-newsList-card__content {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  height: 144px;
  padding: 20px;
  border-top: 10px solid var(--blue-dark);
  background-color: var(--bg-gray);
}
.c-newsList-card__title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}
.c-newsList-card__date {
  font-size: 12px;
  color: var(--gray-text);
}
.c-newsList-card__new {
  padding-right: 0.5em;
  color: #900;
}

.c-pagenation {
  border-top: solid 1px var(--border-gray);
  border-bottom: solid 1px var(--border-gray);
  font-size: 16px;
}
.c-pagenation__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 480px;
  max-width: 100%;
  height: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-pagenation__inner {
    height: 50px;
  }
}
.c-pagenation__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  border-right: solid 2px var(--border-gray);
  color: var(--main-color);
}
.c-pagenation__item:first-of-type {
  border-left: solid 2px var(--border-gray);
}
@media screen and (max-width: 767px) {
  .c-pagenation__item {
    width: 50px;
    font-size: 14px;
  }
}
.c-pagenation__item > a {
  color: var(--main-color);
}
.c-pagenation__info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 158px;
  border-right: solid 2px var(--border-gray);
  color: #000;
  background-color: var(--bg-gray);
}
@media screen and (max-width: 767px) {
  .c-pagenation__info {
    width: 110px;
    font-size: 14px;
  }
}

.c-patient-card {
  /* 色変更 */
}
.c-patient-card__link {
  display: block;
}
.c-patient-card__fukidashi {
  margin-bottom: 20px;
}
.c-patient-card__fukidashi-head {
  padding: 20px;
  background-color: var(--orange-dark);
  color: #fff;
}
.c-patient-card__fukidashi-lead {
  line-height: 1.3;
  margin-bottom: 6px;
}
.c-patient-card__fukidashi-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.c-patient-card__fukidashi-body {
  position: relative;
  padding: 20px;
  background-color: var(--orange-light);
  height: 108px;
}
.c-patient-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-patient-card__fukidashi-text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.c-patient-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 15px;
}
.c-patient-card__thumb {
  width: 100px;
  height: 75px;
}
.c-patient-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 100/75;
}
.c-patient-card__content {
  width: calc(100% - 100px - 15px);
}
.c-patient-card__list {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  list-style: none;
}
.c-patient-card__list-item {
  display: inline;
  position: relative;
  padding: 0;
  font-weight: bold;
}
.c-patient-card__list-item + li {
  margin-left: -5px;
}
.c-patient-card__list-item + li::before {
  position: relative;
  top: 0;
  left: 2.5px;
  width: 0;
  height: 0;
  content: "／";
}
.c-patient-card--clinic .c-patient-card__fukidashi-head {
  background-color: var(--orange-dark);
}
.c-patient-card--clinic .c-patient-card__fukidashi-body {
  background-color: var(--orange-light);
}
.c-patient-card--clinic .c-patient-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-patient-card--dental .c-patient-card__fukidashi-head {
  background-color: var(--green-dark);
}
.c-patient-card--dental .c-patient-card__fukidashi-body {
  background-color: var(--green-light);
}
.c-patient-card--dental .c-patient-card__fukidashi-body::after {
  background: url("../img/triangle-down-green.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-patient-card--animal .c-patient-card__fukidashi-head {
  background-color: var(--blue-dark);
}
.c-patient-card--animal .c-patient-card__fukidashi-body {
  background-color: var(--blue-light);
}
.c-patient-card--animal .c-patient-card__fukidashi-body::after {
  background: url("../img/triangle-down-blue.png") no-repeat 0% 0%;
  background-size: cover;
}

.c-pickupList-card {
  /* 色違い */
}
.c-pickupList-card__thumb {
  width: 100%;
}
.c-pickupList-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 260/195;
}
.c-pickupList-card__content {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  height: 144px;
  padding: 20px;
  border-top: 10px solid var(--border-gray);
  background-color: var(--bg-gray);
}
@media screen and (max-width: 767px) {
  .c-pickupList-card__content {
    height: auto;
    padding: 10px;
  }
}
.c-pickupList-card__title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}
.c-pickupList-card__date {
  font-size: 12px;
  color: var(--gray-text);
}
.c-pickupList-card__new {
  padding-right: 0.5em;
  color: #900;
}
.c-pickupList-card--beauty .c-pickupList-card__content {
  border-top: 10px solid var(--orange);
}
.c-pickupList-card--women .c-pickupList-card__content {
  border-top: 10px solid var(--pink);
}
.c-pickupList-card--sick .c-pickupList-card__content {
  border-top: 10px solid var(--green);
}
.c-pickupList-card--pet .c-pickupList-card__content {
  border-top: 10px solid var(--purple);
}

.c-recommend-card {
  /* 色変更 */
}
.c-recommend-card__link {
  display: block;
}
.c-recommend-card__fukidashi {
  margin-bottom: 20px;
}
.c-recommend-card__fukidashi-head {
  padding: 20px;
  background-color: var(--orange-dark);
  color: #fff;
}
.c-recommend-card__fukidashi-lead {
  line-height: 1.3;
  margin-bottom: 6px;
}
.c-recommend-card__fukidashi-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.c-recommend-card__fukidashi-body {
  position: relative;
  padding: 20px;
  background-color: var(--orange-light);
}
.c-recommend-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-recommend-card__fukidashi-text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.c-recommend-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 15px;
}
.c-recommend-card__thumb {
  width: 100px;
  height: 75px;
}
.c-recommend-card__thumb > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 100/75;
}
.c-recommend-card__content {
  width: calc(100% - 100px - 15px);
}
.c-recommend-card__clinic {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.c-recommend-card__name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}
.c-recommend-card__place {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}
.c-recommend-card__place > li {
  display: inline;
  position: relative;
  padding: 0;
}
.c-recommend-card__place > li + li {
  margin-left: -3px;
}
.c-recommend-card__place > li + li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "／";
}
.c-recommend-card__category {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .c-recommend-card__category {
    padding: 0 16px 0 0;
  }
}
.c-recommend-card__category::before {
  content: "...";
  position: absolute;
  top: -11px;
  right: 0;
  width: 1.8em;
  height: 3em;
  font-size: 1.428em;
  background-color: #fff;
  text-align: center;
  color: inherit;
}
.c-recommend-card__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-recommend-card__category > li {
  display: inline;
  position: relative;
  padding: 0 0.3em 0 0;
  color: var(--gray-dark);
}
@media screen and (max-width: 767px) {
  .c-recommend-card__category > li {
    padding: 0 0.53em 0 0;
  }
}
.c-recommend-card__category > li::before {
  position: relative;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "●";
}
.c-recommend-card--clinic .c-recommend-card__fukidashi-head {
  background-color: var(--orange-dark);
}
.c-recommend-card--clinic .c-recommend-card__fukidashi-body {
  background-color: var(--orange-light);
}
.c-recommend-card--clinic .c-recommend-card__fukidashi-body::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 15px;
  height: 17px;
  background: url("../img/triangle-down-orange.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-recommend-card--clinic .c-recommend-card__category {
  color: var(--orange-dark);
}
.c-recommend-card--clinic .c-recommend-card__category li {
  color: var(--orange-dark);
}
.c-recommend-card--dental .c-recommend-card__fukidashi-head {
  background-color: var(--green-dark);
}
.c-recommend-card--dental .c-recommend-card__fukidashi-body {
  background-color: var(--green-light);
}
.c-recommend-card--dental .c-recommend-card__fukidashi-body::after {
  background: url("../img/triangle-down-green.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-recommend-card--dental .c-recommend-card__category {
  color: var(--green-dark);
}
.c-recommend-card--dental .c-recommend-card__category li {
  color: var(--green-dark);
}
.c-recommend-card--animal .c-recommend-card__fukidashi-head {
  background-color: var(--blue-dark);
}
.c-recommend-card--animal .c-recommend-card__fukidashi-body {
  background-color: var(--blue-light);
}
.c-recommend-card--animal .c-recommend-card__fukidashi-body::after {
  background: url("../img/triangle-down-blue.png") no-repeat 0% 0%;
  background-size: cover;
}
.c-recommend-card--animal .c-recommend-card__category {
  color: var(--blue-dark);
}
.c-recommend-card--animal .c-recommend-card__category li {
  color: var(--blue-dark);
}

.c-search-area {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-area {
    padding: 20px 10px 0 20px;
  }
}
.c-search-area__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-area__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-area__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-area__body {
    display: none;
  }
}

.c-search-area-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-area-list__item {
  position: relative;
}
.c-search-area-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-area-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-area-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-area-list__item > label:hover {
  opacity: 0.7;
}

.c-search-detail {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-detail {
    padding: 20px 10px 0 20px;
  }
}
.c-search-detail__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-detail__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-detail__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-detail__body {
    display: none;
  }
}

.c-search-detail-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-detail-list__item {
  position: relative;
}
.c-search-detail-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-detail-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-detail-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-detail-list__item > label:hover {
  opacity: 0.7;
}

.c-search-employment {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-employment {
    padding: 30px 10px 10px;
  }
}
.c-search-employment__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-employment__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-employment__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-employment__body {
    display: none;
  }
}

.c-search-employment-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-employment-list__item {
  position: relative;
}
.c-search-employment-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-employment-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-employment-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-employment-list__item > label:hover {
  opacity: 0.7;
}

.c-search-features {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-features {
    padding: 30px 10px 10px;
    border-bottom: solid 2px #e0e0e0;
  }
}
.c-search-features__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-features__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-features__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-features__body {
    display: none;
  }
}

.c-search-features-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-features-list__item {
  position: relative;
}
.c-search-features-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-features-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-features-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-features-list__item > label:hover {
  opacity: 0.7;
}

.c-search-freeword {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-freeword {
    padding: 20px 20px 0;
  }
}
.c-search-freeword__inner {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-search-freeword__inner {
    margin-bottom: 0;
  }
}
.c-search-freeword__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-freeword__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-freeword__body {
  display: block;
}
.c-search-freeword__input {
  width: 800px;
  max-width: 100%;
  height: 50px;
  padding: 10px;
  border: none;
  border-radius: 0;
  background-color: var(--gray-light);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-search-freeword__input {
    margin-bottom: 20px;
  }
}

.c-search-medical {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-medical {
    padding: 20px 10px 0 20px;
  }
}
.c-search-medical__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-medical__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-medical__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-medical__body {
    display: none;
  }
}

.c-search-medical-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-medical-list__head-text {
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
}
.c-search-medical-list__head-text::before {
  content: "■";
  position: relative;
  top: 0;
  left: 0;
}
.c-search-medical-list__body {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-search-medical-list__body--clinic .c-search-medical-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--orange-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-medical-list__body--clinic .c-search-medical-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-medical-list__body--clinic .c-search-medical-list__item > label:has(input:checked) {
  background-color: var(--orange-dark);
  color: #fff;
}
.c-search-medical-list__body--clinic .c-search-medical-list__item > label:hover {
  opacity: 0.7;
}
.c-search-medical-list__body--dental .c-search-medical-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--green-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-medical-list__body--dental .c-search-medical-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-medical-list__body--dental .c-search-medical-list__item > label:has(input:checked) {
  background-color: var(--green-dark);
  color: #fff;
}
.c-search-medical-list__body--dental .c-search-medical-list__item > label:hover {
  opacity: 0.7;
}
.c-search-medical-list__body--animal .c-search-medical-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--blue-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-medical-list__body--animal .c-search-medical-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-medical-list__body--animal .c-search-medical-list__item > label:has(input:checked) {
  background-color: var(--blue-dark);
  color: #fff;
}
.c-search-medical-list__body--animal .c-search-medical-list__item > label:hover {
  opacity: 0.7;
}
.c-search-medical-list__item {
  position: relative;
}
.c-search-medical-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--orange-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-medical-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-medical-list__item > label:has(input:checked) {
  background-color: var(--orange-dark);
  color: #fff;
}
.c-search-medical-list__item > label:hover {
  opacity: 0.7;
}

.c-search-occupation {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-occupation {
    padding: 30px 10px 10px;
  }
}
.c-search-occupation__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-occupation__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-occupation__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-occupation__body {
    display: none;
  }
}

.c-search-occupation-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-occupation-list__item {
  position: relative;
}
.c-search-occupation-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-occupation-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-occupation-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-occupation-list__item > label:hover {
  opacity: 0.7;
}

.c-search-salary {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-salary {
    padding: 30px 10px 10px;
  }
}
.c-search-salary__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-salary__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-salary__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-salary__body {
    display: none;
  }
}

.c-search-salary-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-salary-list__item {
  position: relative;
}
.c-search-salary-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-salary-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-salary-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-salary-list__item > label:hover {
  opacity: 0.7;
}

.c-search-station {
  border-top: solid 2px #e0e0e0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-station {
    padding: 20px 10px 0 20px;
  }
}
.c-search-station__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .c-search-station__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.c-search-station__body {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-search-station__body {
    display: none;
  }
}

.c-search-station-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.c-search-station-list__head-text {
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
}
.c-search-station-list__head-text::before {
  content: "■";
  position: relative;
  top: 0;
  left: 0;
}
.c-search-station-list__body {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-search-station-list__item {
  position: relative;
}
.c-search-station-list__item > label {
  display: block;
  padding: 8px 16px 9px;
  background-color: var(--gray-light);
  text-align: center;
  color: var(--gray-dark);
  cursor: pointer;
}
.c-search-station-list__item > label > input {
  position: absolute;
  opacity: 0;
}
.c-search-station-list__item > label:has(input:checked) {
  background-color: var(--main-color);
  color: #fff;
}
.c-search-station-list__item > label:hover {
  opacity: 0.7;
}

.c-search-submit {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: solid 2px #e0e0e0;
  background-color: #fff;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-search-submit {
    border-top: none;
    padding: 15px 10px 30px;
  }
}
.c-search-submit__input {
  display: block;
  width: 240px;
  transition: 0.3s;
  position: relative;
  height: 50px;
  margin-inline: auto;
  padding: 10px 20px 12px;
  color: #fff;
  background-color: var(--btn-blue);
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-search-submit__input {
    width: 100%;
    border-radius: 0;
  }
}
