@charset "utf-8";

@media screen and (min-width: 768px) {
  .pcBr{ display: none;}
}

.hsub{
  font-size: 12px;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 768px) {
  .hsub{
    font-size: 14px;
  }
}

.CRWrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

.CRWrap .researchItem {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .CRWrap .researchItem {
    width: 50%;
  }
}

.CRWrap .productCard {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: #333;
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
  transition: border 0.2s linear;
}

.CRWrap .productCard::before {
  content: "";
  width: 0;
  height: 0;
  background: #F2FBFA;
  border-radius: 20px 0 20px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: width 0.2s linear, height 0.2s linear;
}

.CRWrap .productCard__inner {
  position: relative;
  z-index: 2;
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: transform 0.2s linear;
}

.CRWrap .productCard__text {
  flex: 1;
  font-weight: bold;
  line-height: 1.5;
  transition: color 0.2s linear;
  font-size: 1.8rem;
  letter-spacing: 1.2px;
  color: #7d7d7d;
}

.CRWrap .productCard__img {
  width: 100px;
  flex-shrink: 0;
}

.CRWrap .productCard__img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.head_caption {
  margin: 30px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.19;
  text-align: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .productCard:hover {
    border-width: 3px;
    border-color: #7ed3c8;
  }
  
  .productCard:hover::before {
    width: 100%;
    height: 100%;
  }
  
  .productCard:hover .productCard__text {
    color: #06c1aa;
  }
  
  .productCard:hover .productCard__inner {
    transform: translate(-3px, -3px);
  }

  .CRWrap .productCard__img {
    width: 150px;
  }

  .head_caption {
    font-size: 16px;
    font-size: 1.6rem;
  }
}


/*-----------------------------------------
　記事
-----------------------------------------*/
.CRarticle .topic{
  margin-top: 30px;
}

.CRarticle .topic .drname{
  font-size: 86%;
}

.CRarticle .topic p{
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .CRarticle .topic p{
    font-size: 16px;
  }
}

.CRarticle .drprofile{
  max-width: 60%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .CRarticle .drprofile{
    width: 210px;
  }
}