@charset "utf-8";
/* ############################################################################################################################
#    リニューアル
#    v1 listファイル
############################################################################################################################ */

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax( 25% , 1fr ));
  gap: 0 ;
  margin-bottom: 56px;
}

.article-list .article-list__ad {
  grid-column: 1 / -1;
  display: block;
}

.article-list article {
  width: 100% ;
  vertical-align: bottom;
  line-height: 0;
}

.article-list.swiper-wrapper {
  display: flex;
  gap: 0;
  flex-direction: initial;
}

.article-list .article__box {
  width: auto;
  padding: 0 56px;
  border-right: 1px solid var(--color-gray1);
}

.article-list .article--bg .article__box {
  padding: 0 ;
}

.article-list .article-list__item:nth-of-type(4n) .article__box,
.article-list .article-list__item:last-child .article__box {
  border-right: none;
}

/* ------------------------------
   4カラム
------------------------------ */
.article-list--4column {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.article-list--4column .article-list__item{
  padding:34px 0;
}

.article-list--4column .article-list__item:nth-last-of-type(n+4) {
  border-bottom: 1px solid var(--color-gray1);
}

.article-list--4column .article-list__item:nth-last-of-type(-n+4) {
  border-bottom: none;
}

.article-list--4column .article-list__item+.article-list__ad+*,
.article-list--4column .article-list__item+.article-list__ad+*+*,
.article-list--4column .article-list__item+.article-list__ad+*+*+*,
.article-list--4column .article-list__item+.article-list__ad+*+*+*+* {
  border-top: 1px solid var(--color-gray1);
}


/* ------------------------------
   3カラム
------------------------------ */
.article-list--3column {
  grid-template-columns: repeat(3, 1fr);
}

/* ------------------------------
   2カラム
------------------------------ */
.article-list--2column {
  grid-template-columns: repeat(2, 1fr);
}

/* ------------------------------
   縦長
------------------------------ */
.article-list--vertical {
  .article__imgwrap {
    width: auto;
  }
}

/* ------------------------------
   本
------------------------------ */
.article-list--book {
  .article__img {
    background-size: contain;
    height: 100%;
    width: auto;
    background-position: center;
    display: block;
  }
}

/* ------------------------------
   ランキング
------------------------------ */
.article-list--ranking {
  counter-reset: rank;
  margin: 0;
  background: #fff;
  padding:32px 0;
  display: flex;
  flex-wrap: initial;
  gap:0;
}

.article-list--ranking .article-list__item {
  width: 100%;
/*
  max-width: 312px;
*/
  padding:0 ;
  counter-increment: count-number;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
}

.article-list--ranking.article-list .article__box {
  counter-increment: rank;
  border-right: 1px solid var(--color-gray1);
}

.article-list--ranking .article__imgwrap::before {
  content: "";
  bottom: -1px;
  left: -1px;
  border-top: 40px solid transparent;
  border-left: 40px solid #fff;
  position: absolute;
  z-index: 1;
}

.article-list--ranking .article__imgwrap::after {
  content: counter(rank); 
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-family: var(--font-figtree);
  font-weight: 500;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 100%;
  text-align: center;
  color: var(--color-text);
}

@media screen and (max-width: 1366px) {
  .article-list--ranking .article__imgwrap::after {
    font-size: 1.464vw;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
グリッド
---------------------------------------------------------------------------------------------------------------------------- */

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ------------------------------
   2column
------------------------------ */
.article-grid--2column-rtl  {
  grid-auto-flow: column;
}

.article-grid--2column-rtl .article-list:first-child {
  grid-column: 2;
}

.article-grid--2column-rtl .article-list:last-child {
  grid-column: 1;
}

.article-grid--2column .article-list ,
.article-grid--2column-rtl .article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax( 50% , 1fr ));
  gap: 0 ;
}

.article-grid--2column .article-list:first-child,
.article-grid--2column-rtl .article-list:first-child {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: start;
}

.article-grid--2column .article-list:last-child,
.article-grid--2column-rtl .article-list:last-child  {
  border-top: 1px solid var(--color-gray1);
  border-bottom: 1px solid var(--color-gray1);
}

.article-grid--2column .article-list:last-child .article-list__item ,
.article-grid--2column-rtl .article-list:last-child .article-list__item {
  border-bottom: 1px solid var(--color-gray1);
  padding-top:32px;
  padding-bottom:32px;
}

.article-grid--2column .article-list:last-child .article-list__item:nth-last-of-type(-n+2),
.article-grid--2column-rtl .article-list:last-child .article-list__item:nth-last-of-type(-n+2) {
  border-bottom: none;
}

.article-grid--2column .article-list:last-child .article-list__item:nth-of-type(2n) .article__box {
  border-right: none;
}

.article-grid--2column-rtl .article-list:last-child .article-list__item .article__box {
  border-right: none;
  border-left: 1px solid var(--color-gray1);
}

.article-grid--2column .article-list--book:first-child .article__box,
.article-grid--2column .article--bg:first-child .article__box,
.article-grid--2column-rtl .article--bg:first-child .article__box {
  padding: 0 ;
}

.article-grid--2column .article-list--book:first-child .article__box:before,
.article-grid--2column .article--bg:first-child .article__box:before,
.article-grid--2column-rtl .article--bg:first-child .article__box:before {
  content:'';
  background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.5) 100% );
  width: 100% ;
  height: 100% ;
  display: block;
  position: absolute;
}

.article-grid--2column-rtl .article-list--book .article__box .article__time:before {
  content: none;
}

.article-grid--2column .article-list--book:first-child .article__box,
.article-grid--2column-rtl .article-list--book:first-child .article__box  {
  background: #fff;
}

.article-grid--2column .article-list--book:first-child .article__imgwrap,
.article-grid--2column-rtl .article-list--book:first-child .article__imgwrap  {
  width: 79%;
  padding: 40px 0;
}

.article-grid--2column .article-list--book:first-child .article__content,
.article-grid--2column .article--bg:first-child .article__content,
.article-grid--2column-rtl .article--bg:first-child .article__content {
  bottom: 40px;
  top: initial;
  left:0;
  width: 100%;
  padding: 0 55px 0 40px;
}

.article-grid--2column .article-list--book:first-child .article__title,
.article-grid--2column .article--bg:first-child .article__title,
.article-grid--2column-rtl .article--bg:first-child .article__title {
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 160% ;
}

.--page{
  .article-grid--2column-rtl {
    direction: initial;
  }
}

@media screen and (max-width: 1366px) {
  .article-grid--2column .article--bg .article__title,
  .article-grid--2column-rtl .article--bg .article__title {
    font-size: 1.61vw;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
people
---------------------------------------------------------------------------------------------------------------------------- */
.people-list {
  overflow: hidden;
}

.people-list__items {
  display: flex;
  gap: 16px;
}

.people-list__item {
  width: 140px;
}

.people-list__icon {
  width: 140px;
  height: 140px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: rgb(217, 217, 217);
  background-image: url(/common/images/author/photo_base.jpg);
  border-radius: 50%;
  overflow: overlay;
  border-right: 1px solid var(--color-gray1);
}

.people-list__name {
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 160%;
  text-align: center;
  margin-top:12px;
}

.people-swiper .slider-pagination__scrollbar {
  width: 80% ;
  margin: 0;
}

@media screen and (min-width: 1366px) {
  .people-list__items {
    gap: 1.171vw;
  }

  .people-list__item {
    width: 10.249vw;
  }

  .people-list__icon {
    width: 10.249vw;
    height: 10.249vw;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------
essay
---------------------------------------------------------------------------------------------------------------------------- */
.essay-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}

.essay-list .article {
  width: 100%;
}

.essay-list .article__title {
  width: 100%;
}

.essay-list .article__box {
  width: 100%;
  padding: 0 56px;
}

.essay-list__box {
  padding: 0 56px 0 0;
}

.essay-list__title {
  font-family: var(--font-figtree);
  font-weight: 800;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 160%;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  margin: 0 0 12px;
}

.essay-list__title--icon {
  padding: 0 0 30px;
}

.essay-list__title--icon2 {
  padding: 0 0 25px;
}

.essay-list__title--icon:after,
.essay-list__title--icon2:after {
  content: " ";
  background: url(/common/crea/images/v1_1/icon/speech_balloon.svg) no-repeat center;
  background-size: contain;
  width: 100% ;
  aspect-ratio: 162 / 25;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.essay-list__title--icon2:after {
  background: url(/common/crea/images/v1_1/icon/speech_balloon2.svg) no-repeat center;
  aspect-ratio: 284 / 21;
}

.essay-list__title span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 160%;
  text-align: center;
  margin-top: 12px;
}

.essay-list__past {
  border-bottom: 1px solid #FFFFFF;
  padding:16px 0;
  display: block;
}

.essay-list__past a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

@media screen and (min-width: 1366px) {
  .essay-list__title {
    font-size: 1.757vw;
    margin: 0 0 0.878vw;
  }

  .essay-list__title--icon {
    padding: 0 0 2.196vw;
  }

  .essay-list__title--icon2 {
    padding: 0 0 1.83vw;
  }

  .essay-list__title span {
    font-size: 0.878vw;
    margin-top: 0.878vw;
  }

  .essay-list__past {
    padding:1.171vw 0;
  }

  .essay-list__past a {
    font-size: 1.025vw;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
category-list
---------------------------------------------------------------------------------------------------------------------------- */
.category-list .article__box {
  width: 313px;
  aspect-ratio: 313 / 264;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.category-list .article__box::before {
  backdrop-filter: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cat-bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: blur(150px);
}

.category-list .article__imgwrap {
  width: 200px;
  aspect-ratio: 200 / 200;
}

.category-list .article__content {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
}

.category-list .article__ename {
  position: absolute;
  top:15px;
  right:24.5px;
  z-index: 5;
}

.category-list .article__name {
  position: absolute;
  bottom:15px;
  left:24.5px;
  z-index: 5;
}

@media screen and (min-width: 1366px) {
  .category-list .article__box {
    width: 22.914vw;
  }

  .category-list .article__imgwrap {
    width: 14.641vw;
  }

  .category-list .article__ename {
    top:1.098vw;
    right:1.794vw;
  }

  .category-list .article__name {
    bottom:1.098vw;
    left:1.794vw;
  }
}
/* ----------------------------------------------------------------------------------------------------------------------------
.list-headline
---------------------------------------------------------------------------------------------------------------------------- */
.list-headline {
  margin-block: 40px 48px;
}

.list-headline__title {
  font-size: 40px;
  font-size: 4.0rem;
  font-weight: 600;
  letter-spacing: .04em;

  &.en {
    font-family: var(--font-figtree);
  }

  .-small & {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 500;
  }
}

.list-headline__sub-title {
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-default
---------------------------------------------------------------------------------------------------------------------------- */
.list-default {
  display: flex;
  column-gap: 8px;
  counter-increment: ranking-counter;
  padding-block: 40px;
  position: relative;

  /* 線 */
  &::before,
  &::after {
    width: calc(100% - 18px);
    height: 1px;
    background: #e7e7e7;
    position: absolute;
    right: 0;
  }

  &::after {
    content: "";
    display: block;
    bottom: 0;
  }

  *:not(.list-default) + &::before {
    content: "";
    display: block;
    top: 0;
  }
}

.list-default__item {
  display: flex;
  align-items: flex-start;
  column-gap: 32px;

  & + .list-default__item {
    border-top: 1px solid #ccc;
  }
}

.list-default__image {
  flex-shrink: 0;
  display: flex;
  width: 200px;
  height: 200px;
  position: relative;

  > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }
}

.list-default__item-num {
  position: absolute;
  bottom: 0;
  left: 0;

  /* 数値 */
  > span {
    display: inline-block;
    margin-bottom: 2px;
   font-weight: 500;
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 100%;
    font-family: var(--font-figtree);
    position: relative;
    z-index: 2;
  }

  /* アイコン */
  &::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
    -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 2;
  }

  > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }
}

.list-default__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.list-default__title {
  width: fit-content;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

.list-default__summary {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;

  > p {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.list-default__genres {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 24px;

  > li > a {
    padding: 3px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }
}

.list-default__date {
  font-size: 10px;
  font-size: 1.0rem;
  font-family: var(--font-figtree);
  color: #707070;
  line-height: 1;
  writing-mode: vertical-rl;

  /* 緑丸アイコン */
  &.new {
    display: inline-flex;
    column-gap: 4px;
    align-items: center;

    &::before {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-radius: 50vh;
      background: #23a662;
    }
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-search
---------------------------------------------------------------------------------------------------------------------------- */
.list-search {
  width: 834px;
  margin-bottom: 40px;
  position: relative;
}

.list-search__input {
  width: 100%;
  font-size: 1.8rem;
  color: #212121;
  font-weight: 500;
  padding: 16px 44px 16px 0px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #212121;
}

.list-search__submit {
  width: 24px;
  height: 24px;
  padding: 0px;
  background: url(/common/crea/images/v1/icon/search_black.png) center center / 16px 16px no-repeat;
  border: none;
  cursor: pointer;
  font-size: 0px;
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0px -50%;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-card
---------------------------------------------------------------------------------------------------------------------------- */
.list-card {
  margin-top: 24px;
}

.list-card__list {
  display: flex;
  flex-wrap: wrap;

  &:not(:first-of-type) {
    border-top: 1px solid #e7e7e7;
  }
}

.list-card__item {
  width: 25%;
  padding: 32px 56px;
  border-bottom: 1px solid #e7e7e7;
  position: relative;

  &:not(:nth-child(4n))::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - (5.54% * 2));
    margin-block: auto;
    background: #e7e7e7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }

  & + .ad-banner + *,
  & + .ad-banner + * + *,
  & + .ad-banner + * + * + *,
  & + .ad-banner + * + * + * + * {
    border-top: 1px solid #e7e7e7;
  }
}

.list-card__link {
  display: flex;
  flex-direction: column;
  position: relative;
}

.list-card__date {
  font-family: var(--font-figtree);
  font-size: 10px;
  font-size: 1rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  translate: -100% 0;
  position: absolute;
  top: 0;
  left: -8px;

  /* new アイコン */
  &.new {
    display: inline-flex;
    column-gap: 4px;
    align-items: center;

    &::before {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-radius: 50vh;
      background: #23a662;
    }
  }
}

.list-card__title {
  display: -webkit-box;
  margin-top: 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.list-card__label {
  width: fit-content;
  margin-left: auto;
  margin-top: 8px;
  padding: 4px 8px;
  background: #e7e7e7;
  border-radius: 30px;
  font-family: var(--font-figtree);
  font-size: 10px;
  font-size: 1rem;
  font-weight: 500;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.genre-nav, .magazine-nav
---------------------------------------------------------------------------------------------------------------------------- */
.genre-nav,
.magazine-nav {
  margin-top: 56px;
}

.genre-nav__list,
.magazine-nav__list {
  display: flex;
  column-gap: 32px;
  width: 100%;
  min-width: max-content;
  border-bottom: 1px solid #e7e7e7;
  white-space: nowrap;
  font-size: 0;
  position: relative;
}

:is(.genre-nav__list, .magazine-nav__list) > li {
  width: fit-content;
  background: transparent;
  border: none;
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6d6d6d;
  cursor: pointer;
  position: relative;

  &:last-of-type {
    margin-right: 12px;
  }

  > :is(a, p) {
    display: block;
    padding: 15px 0;
  }

  &:has([aria-current="page"]),
  & > a:hover {
    color: #212121;
    opacity: 1;

    /* 線 */
    &::after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: #212121;
      position: absolute;
      bottom: -1px;
      left: 0;
      z-index: 2;
    }
  }

  &:has([aria-current="page"]) {
    cursor: default;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-keyword-list
---------------------------------------------------------------------------------------------------------------------------- */
.article-keyword-list {
  width: var(--content-width);
  margin-inline: auto;
  padding: 50px 20px;
}

 .article-keyword-list__inner {
  max-width: var(--content-width);
  margin-inline: auto;
 }

.article-keyword-list__heading {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  font-family: var(--font-figtree);
}

.article-keyword-list__lead-text {
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.article-keyword-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 32px;

  > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    padding: 9px 16px 8px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    color: #212121;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-top-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-top-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 96px;
  padding-block: 32px;
  border-bottom: 1px solid #212121;
}

.list-top-info__content {
  flex-shrink: 0;
  display: flex;
  column-gap: 32px;
  width: 786px;
}

.list-top-info__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.list-top-info__subtitle {
  margin-bottom: 16px;

  > p {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.04em;
  }
}

.list-top-info__summary {
  > p {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }

  .link-button {
    justify-content: flex-start;
  }
}

.list-top-info__label {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;

  > p {
    padding: 3px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-matome-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-matome-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 96px;
  padding-block: 32px;
  border-bottom: 1px solid #212121;
}

.list-matome-info__content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 32px;
  width: 786px;
}

.list-matome-info__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.list-matome-info__summary > p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.list-matome-info__label {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;

  > p {
    padding: 3px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-feature-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-feature-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 96px;
  padding-bottom: 32px;
  border-bottom: 1px solid #212121;
}

.list-feature-info__content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 32px;
  width: 786px;
}

.list-feature-info__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.list-feature-info__summary > p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.list-feature-info__label {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;

  > p {
    padding: 3px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-header
---------------------------------------------------------------------------------------------------------------------------- */
.list-header {
  padding-block: 24px;
  border-bottom: 1px solid #e7e7e7;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-numbers
---------------------------------------------------------------------------------------------------------------------------- */
.list-numbers-wrap {
  margin-block: 22px 30px;
}

.list-numbers {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: var(--font-figtree);
  font-weight: 500;

  > span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-author-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-author-info {
  display: grid;
  grid-template-areas:
    "image name"
    "image about"
  ;
  margin-block: 80px 160px;
  padding: 56px;
  background: #f6f6f6;
  color: #212121;

  &:has(.list-author-info__image) {
    column-gap: 40px;
  }
}

.list-author-info__image {
  grid-area: image;
  width: 120px;
  height: 120px;
  border-radius: 50vh;
  overflow: hidden;
}

.list-author-info__name {
  grid-area: name;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.list-author-info__about {
  grid-area: about;
  margin-top: 16px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;

  a,
  a > span {
    font-weight: 400;
    color: #1c5dd6;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-authors
---------------------------------------------------------------------------------------------------------------------------- */
.list-authors {
  margin-top: 48px;
}

.list-authors__list {
  --x-margin: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px var(--x-margin);
}

.list-authors__heading {
  width: 100%;
  font-size: 24px;
  font-size: 2.4rem;

  &:not(:first-of-type) {
    margin-top: 16px;
  }
}

.list-authors__list-item {
  width: calc((100% / 4) - var(--x-margin));
}

.list-authors__link {
  color: #212121;
  font-weight: 500;
  line-height: 1.6;
}

.list-authors__ruby {
  font-size: 12px;
  font-size: 1.2rem;
}

.list-authors__name {
  margin-top: 4px;
  font-size: 18px;
  font-size: 1.8rem;
}

.list-authors-nav {
  margin-bottom: 24px;
  position: relative;
}

.list-authors-nav__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  font-size: 0;
}

.list-authors-nav__item {
  display: grid;
  place-items: center;
  width: 40px;
  height: 26px;
  padding-block: 24px;
  box-sizing: content-box;
  background: transparent;
  border: none;
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6d6d6d;
  cursor: pointer;
  position: relative;

  &[aria-current="page"],
  &:not([aria-current="page"]):hover {
    color: #212121;
    opacity: 1;

    &::after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: #212121;
      position: absolute;
      bottom: -1px;
      left: 0;
    }
  }

  &[aria-current="page"] {
    cursor: default;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-fortune-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-fortune-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 96px;
  margin-bottom: 56px;
  padding: 0 32px 32px;
  border-bottom: 1px solid #212121;
}

.list-fortune-info__content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 32px;
  width: 786px;
}

.list-fortune-info__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.list-fortune-info__summary > p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.list-fortune-info__label {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;

  > p {
    padding: 3px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-authors-work
---------------------------------------------------------------------------------------------------------------------------- */
.list-authors-work {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
}

.list-authors-work__unit {
  display: grid;
  grid-template-columns: 231px 1fr;
  color: #212121;
  font-weight: 500;
  line-height: 1.6;
}

.list-authors-work__image > img {
  width: 100%;
  height: auto;
}

.list-authors-work__list {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.list-authors-work__list-head {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 32px;
}

.list-authors-work__heading {
  display: inline-flex;
  align-items: center;
  column-gap: 17px;
  width: fit-content;
  font-size: 18px;
  font-size: 1.8rem;

  &::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-bottom: .05em;
    border-top: 1px solid #212121;
    border-right: 1px solid #212121;
    rotate: 45deg;
  }
}

.list-authors-work__summary {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}

.list-authors-work__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 32px;
  border-top: 1px solid #e7e7e7;
}

.list-authors-work__item-date {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  font-family: var(--font-figtree);

  &.new {
    display: inline-flex;
    column-gap: 4px;
    align-items: center;

    &::before {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-radius: 50vh;
      background: #23a662;
    }
  }
}

.list-authors-work__item-title {
  font-size: 14px;
  font-size: 1.4rem;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-promo
---------------------------------------------------------------------------------------------------------------------------- */
.list-promo {
  margin-top: 120px;
  padding-top: 48px;
  border-top: 1px solid #e7e7e7;
}

.list-promo__head {
  display: grid;
  grid-template-areas:
    "heading label"
    "sub sub"
  ;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px 24px;
  color: #212121;
}

.list-promo__heading {
  grid-area: heading;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  font-family: var(--font-figtree);
  line-height: 1;
  letter-spacing: .04em;
}

.list-promo__heading-sub {
  grid-area: sub;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.list-promo__label {
  grid-area: label;
  width: fit-content;
  height: fit-content;
  padding: 4px 8px;
  background: #e7e7e7;
  border-radius: 30px;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-figtree);
  line-height: 1;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-promo, .list-book
---------------------------------------------------------------------------------------------------------------------------- */
.list-promo__list,
.list-book__list {
  display: flex;
  flex-direction: column;
  row-gap: 56px;
  margin-top: 32px;
}

.list-promo__media,
.list-book__media {
  display: flex;
  column-gap: 24px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.book-list-header
---------------------------------------------------------------------------------------------------------------------------- */
.book-list-header {
  margin-top: 48px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-book
---------------------------------------------------------------------------------------------------------------------------- */
.list-book__image {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 184px;
  height: 227px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255, .8);
    backdrop-filter: blur(20px);
    position: absolute;
    z-index: 1;
  }

  img {
    width: 120px;
    height: auto;
    position: relative;
    z-index: 2;
  }
}

.list-book__desc {
  padding-top: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #212121;
}

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

.list-book__author {
  margin-top: 9px;
  font-size: 12px;
  font-size: 1.2rem;
}

.list-book__summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;

  margin-top: 16px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}

.list-book__date {
  margin-top: 16px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #6d6d6d;
}

.list-book__links {
  display: flex;
  column-gap: 12px;
  margin-top: 24px;
}

.list-book__links > li {
  min-height: 40px;

  > a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
  }

  img {
    height: auto;
  }
}

.list-book__links-books {
  width: 149px;

  img {
    width: 100px;
  }
}

.list-book__links-amazon {
  width: 74px;

  img {
    width: 54px;
  }
}

.list-book__links-rakuten {
  width: 74px;

  img {
    width: 54px;
  }
}

.list-book__links-seven {
  width: 74px;

  img {
    width: 32px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.magazine-list-header
---------------------------------------------------------------------------------------------------------------------------- */
.magazine-list-header {
  margin-block: 48px 24px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.lists-magazines
---------------------------------------------------------------------------------------------------------------------------- */
.lists-magazines {
  --x-margin: 102px;

  display: flex;
  flex-wrap: wrap;
  column-gap: var(--x-margin);
  margin-top: 24px;
}

.list-magazines__item {
  display: flex;
  justify-content: space-between;
  column-gap: 56px;
  width: calc((100% / 2) - (var(--x-margin) / 2));
  padding-block: 56px;
}

.list-magazines__image {
  flex-shrink: 0;
  width: 231px;
  height: auto;

  > img {
    width: 100%;
    height: auto;
  }
}

.list-magazines__desc {
  width: 284px;
}

.list-magazines__title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;

  > span {
    display: block;
  }
}

.list-magazines__link-button {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 24px;

  > a {
    display: grid;
    place-items: center;
    width: 284px;
    height: 42px;
    border: 1px solid #212121;
    border-radius: 50vh;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-next
---------------------------------------------------------------------------------------------------------------------------- */
.list-next {
  display: flex;
  justify-content: center;
  margin-block: 120px 64px; 
}

.list-next__link {
  display: grid;
  place-items: center;
  width: 228px;
  height: 42px;
  border: 1px solid #212121;
  border-radius: 50px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}
