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

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

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

.article-list article {
  width: 100% ;
  height: 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 16px;
  border-right: 1px solid var(--color-gray1);
}

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

.article-list__item {
  width: 100%;
}

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

.article-list--sp-border .article-list__item {
  border-bottom: 1px solid var(--color-gray1);
  padding-top:24px;
  padding-bottom:24px;
}

@media screen and (min-width: 391px) {
  .article-list {
    margin-bottom: 10.256vw;
  }

  .article-list .article__box {
    padding: 0 4.103vw;
  }

  .article-list--sp-border .article-list__item {
    padding-top:6.154vw;
    padding-bottom:6.154vw;
  }
}

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

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

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

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

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

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

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

@media screen and (min-width: 391px) {
  .article-list--3column {
    .article__title {
      font-size: 3.077vw;
    }
  }
}

/* ------------------------------
   縦長
------------------------------ */
.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__imgwrap-inner {
  position: relative;
}

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

.article-list--ranking .article__imgwrap-inner::after {
  content: counter(rank); 
  position: absolute;
  bottom: 6px;
  left: 4px;
  z-index: 1;
  font-family: var(--font-figtree);
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--color-text);
}

@media screen and (min-width: 391px) {
  .article-list--ranking {
    padding:8.205vw 0;
  }

  .article-list--ranking .article-list__item {
    max-width: 80vw;
  }

  .article-list--ranking .article__imgwrap-inner::before {
    bottom: 0;
    left: -1px;
    border-top: 10.25vw solid transparent;
    border-left: 10.25vw solid #fff;
  }

  .article-list--ranking .article__imgwrap-inner::after {
    bottom: 1.538vw;
    left: 1.026vw;
    font-size: 4.615vw;
  }
}

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

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

/* ------------------------------
   2column
------------------------------ */

.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;
  margin-bottom: 16px;
}

.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:24px;
  padding-bottom:24px;
}

.article-grid--2column .article-list:last-child .article-list__item:nth-child(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);
  height:100% ;
}

.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 ;
  aspect-ratio: 390 / 390;
}

.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: 63% ;
  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 {
  top:initial;
  bottom: 24px;
  left:0;
  width: 100%;
  padding: 0 26px 0 16px;
}

.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% ;
}

@media screen and (min-width: 391px) {
  .article-grid--2column .article-list:first-child,
  .article-grid--2column-rtl .article-list:first-child {
    margin-bottom: 4.103vw;
  }

  .article-grid--2column .article-list:last-child .article-list__item ,
  .article-grid--2column-rtl .article-list:last-child .article-list__item {
    padding-top:6.154vw;
    padding-bottom:6.154vw;
  }

  .article-grid--2column .article-list--book:first-child .article__imgwrap,
  .article-grid--2column-rtl .article-list--book:first-child .article__imgwrap  {
    padding: 10.256vw 0;
  }

  .article-grid--2column .article-list--book:first-child .article__content,
  .article-grid--2column-rtl .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: 6.154vw;
    padding: 0 6.667vw 0 4.103vw;
  }

  .article-grid--2column .article-list--book:first-child .article__title,
  .article-grid--2column-rtl .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-size: 5.641vw;
  }
}

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

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

.people-list__item {
  width: 98px;
}

.people-list__icon {
  width: 98px;
  height: 98px;
  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: 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 {
  padding: 0 16px 0 0;
}

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

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

  .people-list__item {
    width: 25.128vw;
  }

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

  .people-list__name {
    font-size: 3.59vw;
    margin-top:3.077vw;
  }

  .people-swiper .slider-pagination {
    padding: 0 4.103vw 0 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
essay
---------------------------------------------------------------------------------------------------------------------------- */
.essay-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

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

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

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

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

.essay-list__title-img {
  width: 138px;
  height: 138px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
}

.essay-list__title {
  display: grid;
  grid-template-columns: 138px 1fr;
  align-items: center;
  gap:32px;
  position: relative;
  margin: 0 0 ;
}

.essay-list__title p {
  font-family: var(--font-figtree);
  font-weight: 800;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  padding: 0 0 17px;
}

.essay-list__title--icon p:after,
.essay-list__title--icon2 p: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 p:after {
  background: url(/common/crea/images/v1_1/icon/speech_balloon2.svg) no-repeat center;
  background-size: contain;
  aspect-ratio: 284 / 21;
}

.essay-list__title p 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 {
  position: relative;
  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: 160% ;
  padding:0 20px 0 0;
}

.essay-list__past a:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color-text);
  border-right: solid 1px var(--color-text);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 2px;
  bottom: 0;
  margin: -2px auto 0;
}

.essay-list__link {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 160%;
  padding: 0 16px;
  margin: 24px 0 0;
}

.essay-list__link:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color-text);
  border-right: solid 1px var(--color-text);
  transform: rotate(45deg);
  position: relative;
  top: 0;
  right: -12px;
  bottom: 0;
  margin: 0;
  display: inline-block;
}

@media screen and (min-width: 391px) {
  .essay-list {
    margin-bottom: 8.205vw;
  }

  .essay-list .article__box {
    padding: 0 4.103vw;
  }

  .essay-list__box {
    padding: 0 4.103vw ;
  }

  .essay-list__title-img {
    width: 35.385vw;
    height: 35.385vw;
  }

  .essay-list__title {
    grid-template-columns: 35.38vw 1fr;
    gap:8.205vw;
  }

  .essay-list__title p {
    font-size: 4.615vw;
    padding: 0 0 4.359vw;
  }

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

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

  .essay-list__past a {
    font-size: 3.59vw;
    padding:0 5.128vw 0 0;
  }

  .essay-list__past a:after {
    width: 2.051vw;
    height: 2.051vw;
    right: 0.513vw;
    margin: -2px auto 0;
  }

  .essay-list__link {
    font-size: 3.59vw;
    padding: 0 4.103vw;
    margin: 6.154vw 0 0;
  }

  .essay-list__link:after {
    width: 2.051vw;
    height: 2.051vw;
    right: -3.077vw;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
category-list
---------------------------------------------------------------------------------------------------------------------------- */
.category-list .article__box {
  width: 258px;
  aspect-ratio: 258 / 242;
  padding:31px 40px;
}

.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__content {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  padding:16px 16px 8px;
  aspect-ratio: 258 / 242;
}

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

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

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

  .category-list .article__ename {
    top:4.103vw;
    right:6.282vw;
  }

  .category-list .article__name {
    bottom:4.103vw;
    left:6.282vw;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-headline
---------------------------------------------------------------------------------------------------------------------------- */
.list-headline {
  margin-block: 32px;
}

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

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

  .-small & {
    font-size: 22px;
    font-size: 2.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
---------------------------------------------------------------------------------------------------------------------------- */
.lists-default {
  margin-top: 24px;
}

.list-default {
  display: flex;
  column-gap: 8px;
  counter-increment: ranking-counter;
  padding-block: 16px;
  border-bottom: 1px solid #e7e7e7;

  *:not(.list-default) + & {
    border-top: 1px solid #e7e7e7;
  }
}

.list-default__item {
  display: grid;
  grid-template-columns: 35.38461538vw 1fr;
  grid-template-areas:
    "image desc"
    "image genres"
  ;
  align-items: flex-start;
  column-gap: 16px;

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

.ranking .list-default__item {
  grid-template-columns: 41.02564103vw 1fr;
  grid-template-areas:
    "image desc"
    "genres genres"
  ;
}

.list-default__image {
  grid-area: image;
  flex-shrink: 0;
  display: flex;
  width: 35.38461538vw;
  height: 35.38461538vw;
  position: relative;

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

  .ranking & {
    width: 41.02564103vw;
    height: 41.02564103vw;
  }
}

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

  /* 数値 */
  > span {
    font-weight: 500;
    font-size: 18px;
    font-size: 1.8rem;
    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: -1px;
    left: -1px;
    z-index: 1;
  }
}

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

.list-default__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  width: fit-content;
  overflow: hidden;
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

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

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

.list-default__genres {
  grid-area: genres;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-top: 12px;

  > 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;
  }
}

.ranking .list-default__genres {
  margin-top: 16px;
}

.list-default__date {
  font-size: 10px;
  font-size: 1.0rem;
  font-family: var(--font-figtree);
  color: #707070;

  /* 緑丸アイコン */
  &.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: 100%;
  margin-bottom: 40px;
  position: relative;
}

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

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

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

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

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

  > *:not([class="list-card__item"]) {
    width: 100%;
  }
}

.list-card__item {
  width: 50%;
  padding: 4.1%;
  border-bottom: 1px solid #e7e7e7;
  position: relative;

  &:nth-child(-n+8):nth-child(odd)::after,
  &:nth-child(n+9):nth-child(even)::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;
  }

  &:nth-child(10),
  &:nth-child(11) {
    border-top: 1px solid #e7e7e7;
  }
}

.list-card__link {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.list-card__date {
  font-family: var(--font-figtree);
  font-size: 10px;
  font-size: 1rem;
  font-weight: 500;

  /* 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;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.list-card__label {
  width: fit-content;
  margin-left: auto;
  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-left: 12px;
  padding-bottom: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.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;
  padding: 15px 0;
  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;
  }

  &:has([aria-current="page"]) {
    color: #212121;

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

/* ----------------------------------------------------------------------------------------------------------------------------
.article-keyword-list
---------------------------------------------------------------------------------------------------------------------------- */
.article-keyword-list {
  margin-inline: auto;
  margin-block: 50px;
  padding-inline: 12px;
}

.article-keyword-list__heading {
  font-size: 22px;
  font-size: 2.2rem;
  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: 8px 16px;
  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 {
  padding-block: 32px;
  margin-bottom: 16px;
  border-bottom: 1px solid #212121;
}

.list-top-info__image {
  width: 50%;
  height: 50%;
  margin-inline: auto;
  overflow: hidden;

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

.list-top-info__desc {
  display: flex;
  flex-direction: column;
  margin-top: 24px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  white-space: normal;
  transition: max-height .28s ease, opacity .28s ease;
}

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

  > 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-top-info__button {
  margin-top: 12px;
  background: #fff;
  border: none;
  position: relative;
  padding-inline: 0 20px;

  &::before,
  &::after {
    content: "";
    display: block;
    margin-block: auto;
    background: #212121;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: rotate .3s ease;
  }

  &::before {
    width: 12px;
    height: 1px;
    right: 0;
  }

  &::after {
    width: 1px;
    height: 12px;
    right: 6px;
  }

  [aria-expanded="true"]&::after {
    rotate: -90deg;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-feature-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-feature-info {
  padding-bottom: 32px;
  margin-bottom: 16px;
  border-bottom: 1px solid #212121;
}

.list-feature-info__image {
  width: 50%;
  height: 50%;
  margin-inline: auto;
  overflow: hidden;

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

.list-feature-info__desc {
  display: flex;
  flex-direction: column;
  margin-top: 24px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  white-space: normal;
  transition: max-height .28s ease, opacity .28s ease;
}

.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-feature-info__button {
  margin-top: 12px;
  background: #fff;
  border: none;
  position: relative;
  padding-inline: 0 20px;

  &::before,
  &::after {
    content: "";
    display: block;
    margin-block: auto;
    background: #212121;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: rotate .3s ease;
  }

  &::before {
    width: 12px;
    height: 1px;
    right: 0;
  }

  &::after {
    width: 1px;
    height: 12px;
    right: 6px;
  }

  [aria-expanded="true"]&::after {
    rotate: -90deg;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-header
---------------------------------------------------------------------------------------------------------------------------- */
.list-header {
  padding-block: 16px 24px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-numbers
---------------------------------------------------------------------------------------------------------------------------- */
.list-numbers-wrap {
  margin-block: 48px 37px;
}

.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 {
  margin-block: 96px 120px;
  padding: 16px 16px 32px;
  background: #f6f6f6;
  color: #212121;

  &:has(.list-author-info__image) {
    display: grid;
    align-items: center;
    grid-template-areas:
      "image name"
      "about about"
    ;
    grid-template-columns: 56px 1fr;
    column-gap: 24px;
  }
}

.list-author-info__image {
  grid-area: image;
  width: 56px;
  height: 56px;
  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__in-link
---------------------------------------------------------------------------------------------------------------------------- */
.list-authors__in-link {
  position: relative;
  right: -12px;
}

.list-authors__in-link-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
  width: 32px;
  padding-block: 16px;
  background: #f6f6f6;
  border-radius: 20px;
  position: sticky;
  top: 75px;
}

.list-authors__in-link-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 16px;
  font-size: 0;
  overflow: hidden;

  &::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #212121;
    border-right: 1px solid #212121;
    rotate: -45deg;
  }
}

.list-authors__in-link-item {
  width: 32px;
  height: 22px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-authors
---------------------------------------------------------------------------------------------------------------------------- */
.list-authors {
  display: flex;
  margin-top: 32px;
}

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

.list-authors__heading {
  width: 100%;
  font-size: 20px;
  font-size: 2rem;

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

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

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

.list-authors__ruby {
  font-size: 10px;
  font-size: 1rem;
}

.list-authors__name {
  font-size: 14px;
  font-size: 1.4rem;
}

.list-authors-nav {
  margin-left: 12px;
  padding: 0 10px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.list-authors-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;

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

.list-authors-nav__item {
  display: grid;
  place-items: center;
  width: 20px;
  height: 26px;
  padding-block: 16px;
  box-sizing: content-box;
  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;

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


/* ----------------------------------------------------------------------------------------------------------------------------
.list-fortune-info
---------------------------------------------------------------------------------------------------------------------------- */
.list-fortune-info {
  padding-bottom: 32px;
  margin-bottom: 16px;
  border-bottom: 1px solid #212121;
}

.list-fortune-info__image {
  width: 50%;
  height: 50%;
  margin-inline: auto;
  overflow: hidden;

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

.list-fortune-info__desc {
  display: flex;
  flex-direction: column;
  margin-top: 24px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  white-space: normal;
  transition: max-height .28s ease, opacity .28s ease;
}

.list-fortune-info__summary {
  order: 1;

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

.list-fortune-info__label {
  display: flex;
  flex-wrap: wrap;
  order: 2;
  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-fortune-info__button {
  order: 3;
  margin-top: 12px;
  background: #fff;
  border: none;
  position: relative;
  padding-inline: 0 20px;

  &::before,
  &::after {
    content: "";
    display: block;
    margin-block: auto;
    background: #212121;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: rotate .3s ease;
  }

  &::before {
    width: 12px;
    height: 1px;
    right: 0;
  }

  &::after {
    width: 1px;
    height: 12px;
    right: 6px;
  }

  [aria-expanded="true"]&::after {
    rotate: -90deg;
  }
}

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

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

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

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

.list-authors-work__heading {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
  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__items {
  padding-top: 4px;
  border-top: 1px solid #e7e7e7;
}

.list-authors-work__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-block: 12px;
  margin-inline: 16px;
  border-bottom: 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: 96px auto 0;
}

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

.list-promo__heading {
  grid-area: heading;
  font-size: 24px;
  font-size: 2.4rem;
  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: 32px;
  margin-top: 24px;
}

.list-promo__media,
.list-book__media {
  display: grid;
  grid-template-areas:
    "image desc"
    "links links"
  ;
  grid-template-columns: repeat(2, 50%);
}

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

/* ----------------------------------------------------------------------------------------------------------------------------
.list-book
---------------------------------------------------------------------------------------------------------------------------- */
.list-book__image {
  grid-area: image;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  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;
  }
}

.list-book__image img {
  width: 83.58974359%;
  height: auto;
  position: relative;
  z-index: 2;
}

.list-book__desc {
  display: contents;
}

.list-book__desc-link {
  grid-area: desc;
  padding: 16px 16px 0;
  line-height: 1.6;
  font-weight: 500;
  color: #212121;
}

.list-book__title {
  font-size: 14px;
  font-size: 1.4rem;
}

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

.list-book__summary {
  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 {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-inline: 16px;
}

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

  > 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: min(100%, 358px);

  img {
    width: 120px;
  }
}

.list-book__links-amazon {
  width: min(33%, 111px);

  img {
    width: 58px;
  }
}

.list-book__links-rakuten {
  width: min(33%, 111px);

  img {
    width: 72px;
  }
}

.list-book__links-seven {
  width: min(33%, 111px);

  img {
    width: 40px;
  }
}

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

/* ----------------------------------------------------------------------------------------------------------------------------
.lists-magazines
---------------------------------------------------------------------------------------------------------------------------- */
.lists-magazines {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  margin-block: 88px 80px;
}

.list-magazines__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 4.5%;
  width: 100%;
}

.list-magazines__image {
  flex-shrink: 0;
  width: 45.5%; /* 45.53072626% */
  height: auto;

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

.list-magazines__desc {
  width: 50%;
}

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

  > span {
    display: block;
  }
}

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

  > a {
    display: grid;
    place-items: center;
    width: max(100%, 179px);
    height: 32px;
    border: 1px solid #212121;
    border-radius: 50vh;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

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

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