@charset "utf-8";

/* CSS Document */

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

/* その他事例カード */
.interview-cards {
  padding: 40px 20px;
  }

.interview-cards__inner {
  max-width: 1200px;
  margin: 50px 0 auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.interview-card {
  width: calc((100% - 72px) / 3);
  background: #ffffff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.interview-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.interview-card__image {
  /* aspect-ratio: 16 / 10; */
  overflow: hidden;
  /* background: #e9e9e9; */
}

.interview-card__image img {
  max-width: 100%;
  object-fit: cover;
  display: block;
    padding: 0 10px 5px;
    width: 86%;
    margin: 8px auto;
    height: auto;
    transition: .5s all;
    overflow: hidden;
    border: 1px solid #eee;
}

.interview-card__link time {
    font-size: .5rem;
    text-align: right;
    display: block;
    padding-right: 14px;
    color: #232323;
}

.interview-card__content {
  padding: 10px 18px 18px;
}

.interview-card__company {
  margin: 0 0 18px!important;
  font-size: 1rem!important;
  line-height: 1.4!important;
  font-weight: 700!important;
  color: #1f2d3d!important;
  text-align: center!important;
  padding: 10px 5px!important;
  border-radius: 5px 10px 5px 10px!important;
  background: #e3f5d8!important;
  background-image: none;
  height: auto!important;
  width: auto!important;
  text-indent: 0!important;

}

.interview-card__title {
  margin: 0 0 34px;
  font-size: 1rem;
  line-height: 2;
  color: #2d3a45;
  min-height: 8em;
}

.interview-card__meta {
  margin-bottom: 18px;
}

.interview-card__meta p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.9;
  color: #2d3a45;
}

.interview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.interview-card__tag {
  display: inline-block;
  padding: 7px 12px;
  font-size: 0.8rem;
  line-height: 1.2;
  background: #d8ebf4;
  border-radius: 4px;
  font-weight: 600;
  color: #232323;
}
.tag-sangyoui {
    background-color: #e9f7e4;
}
.tag-sc {
    background-color: #f0f6ff;
}
.tag-seminar {
    background-color: #fff6e9;
}
.tag-hokenshi {
    background-color: #ffebeb;
}
.tag-anri {
    background-color: #fffcee;
}
.tag-hokenshidou {
    background-color: #fbeeff;
}

/* hover */
.interview-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* ボタン */
.cta-wrap {
    text-align: center;
    margin-top: 50px;
}
.c-btn {
    display: inline-block;
    line-height: 1;
    padding: 18px 20px;
    border-radius: 40px;
    min-width: 200px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    border: 2px solid #006633;
    color: #FFFFFF!important;
    background-color: #006633;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* tablet */
@media screen and (max-width: 1024px) {
  .interview-cards__inner {
    flex-wrap: wrap;
  }

  .interview-card {
    width: calc((100% - 36px) / 2);
  }
}

/* sp */
@media screen and (max-width: 767px) {
  .interview-cards {
    padding: 30px 15px;
  }

  .interview-cards__inner {
    display: block;
  }

  .interview-card {
    width: 100%;
    margin-bottom: 24px;
  }

  .interview-card:last-child {
    margin-bottom: 0;
  }

  .interview-card__content {
    padding: 18px 15px 16px;
  }

  .interview-card__company {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }

  .interview-card__title {
    font-size: 0.95rem;
    line-height: 1.8;
    min-height: auto;
    margin-bottom: 22px;
  }

  .interview-card__meta p {
    line-height: 1.8;
  }

  .interview-card__tag {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
}