/* ----------------------------------------

- card common

---------------------------------------- */
.card {
  height: 100%;
  border-bottom: 1px dashed #000;
  counter-increment: rankNum;
 padding-bottom: clamp(20px, 1.5vw, 25px);
  position: relative;
}
.card:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
/* link
---------------------------------------- */
.card_link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

/*  thumnail
---------------------------------------- */
.thumbnail {
  background-image: url(../../img/icon/thumbnail_slash.svg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 10% auto;
  overflow: hidden;
  position: relative;
}
.thumbnail > .img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1 / 1;
}
.inview .thumbnail.inview-thumbnail > .img {
  -webkit-animation: none;
  animation: none;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  opacity: 0;
}
.thumbnail.inview-thumbnail > .img {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: filter_blur;
  animation-name: filter_blur;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  opacity: 1;
}
.is-wellulu-talk .thumbnail { background-color: #96d3e5; }
.is-well-being-challenge .thumbnail { background-color: #f28e8e; }
.is-well-being-tech .thumbnail { background-color: #74da7e; }
.is-biz4-well-being .thumbnail { background-color: #e7cc6c; }
.is-wellulu-academy .thumbnail { background-color: #c47ce7; }
.is-area-wellbeing .thumbnail { background-color: #364BB3; }
@-webkit-keyframes filter_blur {
  0% {
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0;
  }
  25% {
    -webkit-filter: blur(25px);
    filter: blur(25px);
  }
  50% {
    -webkit-filter: blur(80px);
    filter: blur(80px);
  }
  75% {
    -webkit-filter: blur(40px);
    filter: blur(40px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes filter_blur {
  0% {
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0;
  }
  25% {
    -webkit-filter: blur(25px);
    filter: blur(25px);
  }
  50% {
    -webkit-filter: blur(80px);
    filter: blur(80px);
  }
  75% {
    -webkit-filter: blur(40px);
    filter: blur(40px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .thumbnail.inview-thumbnail > .img {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
  }
}
/*  icon-star
---------------------------------------- */
.card_head .icon-star {
  display: none;
  width: 30%;
  max-width: 34px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50px;
  background-image: url(../../img/icon/star_active.svg);
  background-size: 83%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 10px;
  bottom: 10px;

}


/* articreCard_body
---------------------------------------- */
.card_body  {
  font-size: clamp(14px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5em 0;
  margin-top: 1em;
}
/* ttl
---------------------------------------- */
.card_body .ttl {
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
/* cat
---------------------------------------- */
.card_body .cat_curation_site {
  font-size: clamp(10px, .99vw, 12px);
  font-size: 66.66%;
  font-weight: bold;
  color: #888;
  position: relative;
  z-index: 4;
  cursor: pointer;
}
.card_body .cat {
  font-size: clamp(12px, 1.25vw, 15px);
  font-size: 83.33%;
  padding-left: 1.2em;
  position: relative;
}
.card_body .cat:before {
  background: #5b5b5b;
  border-radius: 50%;
  content: "";
  height: 0.8em;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.8em;
}

/* tags
---------------------------------------- */
.card_body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1em;
  font-size: clamp(10px, 1vw, 12px);
  font-size: 66.66%;
  font-weight: 500;
  margin-top: 1em;
}
.card_body .tags .tag {
  display: inline-block;
  position: relative;
  z-index: 4;
}
.is-wellulu-talk .cat:before {
  background: #96d3e5;
}
.is-well-being-challenge .cat:before {
  background: #f28e8e;
}
.is-well-being-tech .cat:before {
  background: #74da7e;
}
.is-biz4-well-being .cat:before {
  background: #e7cc6c;
}
.is-wellulu-academy .cat:before {
  background: #c47ce7;
}
.is-area-wellbeing .cat:before {
  background: #364BB3;
}
/* sponsored
---------------------------------------- */
.card_head {
  position: relative;
}
.inview .sponsored {
  opacity: 0;
}
.card_head  .sponsored {
  font-size:10px;
  color: rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.7);
  font-family:roboto;
  border-radius: 50px;
  padding: 0 1em;
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out 0.5s; 
}
/* ----------------------------------------

- grid

---------------------------------------- */
/* gap
---------------------------------------- */
.articreList.grid {
  gap: clamp(30px, 4vw, 120px) clamp(15px, 2vw, 50px);
}
.externalList.grid {
  gap: clamp(30px, 4vw, 120px) clamp(15px, 2vw, 50px);
}
.expertList.grid {
  gap: clamp(10px, 1.5vw, 25px);
}

.blogList.grid {
  gap: clamp(10px, 1.5vw, 25px);
}
.regularsList.grid-pc {
  gap:  clamp(15px, 1.7vw, 30px);
}
@media screen and (max-width: 767px) {
  
.regularsList.grid-pc {
    gap:  none;
  }
}
/* ----------------------------------------

- layout common

---------------------------------------- */

/* side
---------------------------------------- */
.is-side.grid {
  gap: clamp(20px, 1.5vw, 25px);
}
.is-side .card {
  display: flex;
  flex-direction: row;
  margin-top: 0;
  padding-bottom:clamp(20px, 1.5vw, 25px);
}
.is-side .card_head {
  margin-right: 5%;
  width: 23%;
}
.is-side .card_head .sponsored{
  display: none;
}
.is-side .card_body {
  /* align-self: center; */
  width: 72%;
  margin-top: 0;
}

.is-side .card_body .cat {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .is-side-sp.grid,
   .is-side-sp.grid_sp  {
      gap: clamp(15px, 2.5vw, 25px);
  }
  .is-side-sp .card {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    padding-bottom:clamp(15px, 2.5vw, 25px);
    width: 100%;
  }
  .is-side-sp  .card_head {
    margin-right: 5%;
    width: 23%;
  }
  .is-side-sp  .card_body {
    align-self: center;
    width: 72%;
    margin-top: 0;
  }
  .is-side-sp  .card_body .cat {
    margin-top: 0;
  }
}
/* borderNone
---------------------------------------- */
.borderNone .card {
  padding-bottom: 0;
  border-bottom: none;
}
/* ranking
---------------------------------------- */
.is-ranking {
  counter-reset: rankNum;
}
.is-ranking .card {
  counter-increment: rankNum;
}
.is-ranking .card_head:before {
  content: counter(rankNum, decimal-leading-zero);
  font-family: Roboto;
  font-size: clamp(17px, 1.75vw, 21px);
  font-weight: 400;
}

/* ----------------------------------------

- articreCard

---------------------------------------- */



/* ----------------------------------------

- expertCard

---------------------------------------- */

/* ----------------------------------------

- expertCard

---------------------------------------- */
.expertCard .card_head .thumbnail > .img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
.expertCard .card_body .name {
  font-size: clamp( 15px, 1.583vw, 19px );
  font-weight: 500;
}
.expertCard .card_body .position {
  font-size: clamp( 10px, 1.083vw, 13px );

}
.expertCard .card_body .profile {
  font-size: clamp( 10px, 1.083vw, 13px );
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 行数 */
  margin-top: 1em;
}

/* ----------------------------------------

- regularsCard

---------------------------------------- */

.regularsCard .card_head .thumbnail {
  position: relative;
}
.regularsCard .card_head .thumbnail > .img {
  /* padding-top: 74.9185%; */
  aspect-ratio: 100 / 74.918;
}
.regularsCard .card_body {
  margin-top: .5em;
}
.regularsCard .card_body .cat {
  font-size: clamp(16px, 1.667vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 0.5em;
}
.regularsCard .card_body .copy {
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
}


/* ----------------------------------------

- blogCard

---------------------------------------- */
.blogCard .card_head {
  margin-bottom: 2em;
}
.blogCard .card_head  .time {
  color: #949494;
  font-size: clamp( 12px, 1.25vw, 15px );
}
.blogCard .card_head .ttl {
  font-size: clamp( 15px, 1.583vw, 19px );
}

/* editor
---------------------------------------- */
.editor {
  display: flex;
  align-items: center;
}
.editor_imgArea {
  width: 64px;
  margin-right: 1em;
}
.editor_imgArea .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.editor_imgArea .thumbnail > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
}
.editor_txtArea .position {
  font-size: 81%;
  color: #949494;
}


/* ----------------------------------------

- externalCard 外部ページ

---------------------------------------- */

.externalCard .card_body .tag-gray {
  font-size: clamp(11px, 1.167vw, 14px);
  font-size: 77%;
  font-weight: 600;
  background: #CCCCCC;
  padding: .15em .7em;
}

.externalCard .card_body .time {
  display: inline-block;
  border: 1px solid #000;
  padding: 0.2em 1.5em;
}


/* ----------------------------------------

- .modal externalCard 外部ページモーダル

---------------------------------------- */
.modal .externalCard {
  display: flex;
  justify-content: space-between;
  border: none;
}
.modal .externalCard .card_head {
  width: 40%;
}
.modal .externalCard .card_body {
  font-size: clamp(13px, 1.333vw, 24px);
  width: 57%;
  margin-top: 0;
}
.modal .externalCard .card_body .ttl {
}
.modal .external_ogp_description{
  margin-top: 50px;
}
/* read
---------------------------------------- */
.modal .read {
  width: 100%;
  margin-top: 50px;
}
.modal .read_btn {
  display: block;
  font-weight: bold;
}
/* share
---------------------------------------- */
.modal .share {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  text-align: center;
  margin-top: 20px;
}
.modal .share .shareBtn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  aspect-ratio: 1 / 1;
}
.modal .share .shareBtn.is-facebook {
  background-color: #1877f2;
}
.modal .share .shareBtn.is-twitter {
  background-color: #1d9bf0;
}
.modal .share .shareBtn.is-x {
  background-color: #000000;
}
.modal .share .shareBtn img {
  width: calc(100% - 12px);
}
.modal .share .shareBtn.is-x img {
  width: calc(100% - 20px);
}
