/* ===============================
companyprofile / index
=============================== */

/* ===============================
pg_cf_lists
=============================== */
.pg_cf_lists {
  margin-bottom: 105px;
}
.pg_cf_lists_inner {
  max-width: 978px;
  margin: 0 auto;
  padding: 12px 0;
}
.pg_cf_pr {
  margin-bottom: 70px;
  color: var(--color_green);
  text-align: center;
}
.pg_cf_pr .ja {
  display: block;
  margin-bottom: 12px;
  padding-left: 0.1em;
  font-size: calc(17 / 16 * 1rem);
  letter-spacing: 0.1em;
}
.pg_cf_pr .en {
  display: block;
  padding-left: 0.1em;
  font-size: calc(35 / 16 * 1rem);
  letter-spacing: 0.1em;
}
.pg_cf_item_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, 224px);
  justify-content: center;
  align-items: stretch;
  width: min(978px, 100%);
  gap: 35px 26px;
  margin: 0 auto;
}
.pg_cf_item_link {
  position: relative;
  display: block;
}
.pg_cf_item_img {
  position: relative;
  margin-bottom: 36px;
  border-radius: 28px;
  overflow: hidden;
}
.pg_service_item_text {
  position: absolute;
  display: grid;
  place-content: center;
  inset: 63% 0 auto 0;
  width: 192px;
  height: 42px;
  margin: auto;
  background: var(--color_grad);
  border: 1px solid #fff;
  border-radius: 12px;
  color: #fff;
  font-size: calc(14 / 16 * 1rem);
}
.pg_cf_item_readmore {
  width: fit-content;
  margin: 0 auto;
}

/* hoverデバイス ----------- */
@media (any-hover: hover) {
  .pg_cf_item_link:hover {
    opacity: 1;
  }
  .pg_cf_item_link .pg_cf_item_img img {
    transition: transform .3s;
  }
  .pg_cf_item_link:hover .pg_cf_item_img img {
    transform: scale(1.12, 1.12);
    opacity: 1;
  }
  .pg_cf_item_link .pg_service_item_text {
    transition: filter .2s;
  }
  .pg_cf_item_link:hover .pg_service_item_text {
    filter: var(--color_grad_filter);
  }
  .pg_cf_item_link .pg_cf_item_readmore {
    transition: opacity .2s;
  }
  .pg_cf_item_link:hover .pg_cf_item_readmore {
    opacity: .7;
  }
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_cf_lists {
    margin-bottom: 42px;
  }
  .pg_cf_lists_inner {
    padding: 18px var(--sp_side_gap);
  }
  .pg_cf_pr {
    margin-bottom: 30px;
  }
  .pg_cf_pr .ja {
    margin-bottom: 12px;
  }
  .pg_cf_pr .en {
    font-size: calc(28 / 16 * 1rem);
    line-height: 1.4;
  }
  .pg_cf_item_wrap {
    grid-template-columns: repeat(auto-fit, 140px);
    gap: 35px 10px;
  }
  .pg_cf_item_img {
    margin-bottom: 20px;
  }
  .pg_service_item_text {
    inset: 60% 0 auto 0;
    width: 130px;
    height: 42px;
    font-size: calc(13 / 16 * 1rem);
  }
  .pg_cf_item_readmore {
    width: 140px;
    padding: 0;
  }
  .pg_cf_item_readmore .md_readmore {
    width: 140px;
  }

	/*トキワ追加*/
	.pg_cf_lists_inner{
		padding: 18px 25px;
	}
	.pg_cf_item_wrap {
		grid-template-columns: repeat(auto-fit, 224px);
		gap: 35px 26px;
	}
	.pg_service_item_text {
		width: 90%;
	}

	.pg_cf_item_readmore {
		display: none;
	}
}