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

/* ----------------------------------------------------------------------------------------------------------------------------
.article-head
---------------------------------------------------------------------------------------------------------------------------- */
.article-head {
  width: 100%;
  margin-block: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e7e7e7;

  &.no-border {
    border: none;
  }
}

.article-head__title,
.article-head h1 {
  margin-block: 21px 24px;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
}

.article-head .subtitle {
  margin-top: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
  color: #999;

  &.comic {
    width: 450px;
    margin: 20px auto;
  }

  a {
    color: #999;
  }
}

.article-head .magazine-title {
  margin-top: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
}

.article-head .icatch {
  width: 800px;
  margin: 0 auto;
}

.article-head .context {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin: 0 0 0;
}

.article-head .box {
  margin: 18px 0 0;
  text-align: left;
  color: var(--color-quaternary);
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.article-head .box .genre {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
}

.article-head .box .subtitle {
  margin: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

.article-head .box a {
  display: block;
  color: var(--color-quaternary);
}

.article-head h1 p {
  line-height: 38px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
}

.article-head h1 p+p {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: bold;
}

.article-head.promoted .context,
.article-head.member .context {
  padding-bottom: 30px;
}

.article-head.promoted .context:after {
  content: 'Promoted';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  padding: 0 3px;
  line-height: 12px;
  font-size: 9px;
  font-size: 0.9rem;
  color: #222;
  background-color: #ccc;
}

.article-head.member .context:after {
  content: 'MEMBER';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  padding: 0 3px;
  line-height: 12px;
  font-size: 9px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  background-color: #FF9AA0;
}

.article-head .sns {
  margin: 30px 0 40px;
  font-size: 0;
  text-align: center;
}

.article-head .sns li {
  display: inline-block;
  width: 18px;
}

.article-head .sns li+li {
  margin-left: 50px;
}

.article-head .sns li.twitter {
  width: 22px;
}

/*** author-header ***/
.article-head .author-header {
  margin: 0 0 15px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.article-head .author-header .author-box {
  /*display: inline-block;*/
}

.article-head .author-header .author {
  display: table-cell;
  height: 34px;
  padding-left: 40px;
  padding-right: 25px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  vertical-align: middle;
}

.author-header.article-author-profile .author {
  display: block;
}

.article-head .author-header .author:last-child {
  padding-right: 0;
}

.article-head .author-header .author .icon-author {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.article-head .author-header>span.date {
  display: inline-block;
  float: right;
  line-height: 40px;
  color: #757575;
  font-weight: 100;
  font-size: 12px;
  font-size: 1.2rem;
}

/* .article-head__top */
.article-head__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 500;
}

/* .article-head__related-links */
.article-head__related-links {
  display: flex;
  flex-direction: column;
  row-gap: 4px;

  > a {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    width: fit-content;
    font-size: 14px;
    font-size: 1.4rem;
    color: #1c5dd6;
  }

  > a > span {
    color: #212121;
    font-family: var(--font-figtree);
  }
}

/* .article-head__date */
.article-head__date {
  margin-left: auto;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: var(--font-figtree);
}

/* .article-head__labels */
.article-head__labels {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 24px;
}

/* .article-head__genres, .article-head__keywords */
.article-head__genres,
.article-head__keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;

  > a {
    display: grid;
    place-items: center;
    padding: 3px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    color: #212121;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* .article-head__author */
.article-head__author {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;

  .author {
    display: flex;
    align-items: center;
    column-gap: 8px;

    .icon-author {
      width: 24px;
      height: 24px;
      background-size: contain;
      border-radius: 50vh;
      overflow: hidden;
    }

    > a {
      color: #212121;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 1.6;
    }
  }
}

/* .article-head__casts */
.article-head__casts {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  margin-top: 24px;
}

.article-head__cast {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
}

.article-head__cast-image {
  width: 64px;
  height: 64px;
  border-radius: 50vh;
  overflow: hidden;
}

.article-head__cast-text {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
}

.author-header .article-list__icon-list {
  font-size: 12px;
  font-size: 1.2rem;
  width: auto;
}

.author-header .article-list__icon-list span.portal47 {
  width: 84px;
  padding: 3px 6px 2px 16px;
}

.author-header .article-list__icon-list span.portal47::before {
  left: 8px;
  top: 3px;
  width: 12px;
  height: 11px;
}

.author-header .article-list__icon-list span.promoted {
  width: 90px;
  padding: 3px 6px 2px 15px;
}

.author-header .article-list__icon-list span.promoted::before {
  left: 6px;
  top: 2.8px;
  width: 12px;
  height: 10px;
}

.article-head--col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-head--col .article-head__text {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.article-head--col .magazine-title {
  margin-top: 0;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 100%;
  text-align: left;
}

.article-head--col h1 {
  margin: 0;
}

.article-head--col h1 p+p {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 140%;
}

.article-head--col .context {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 100%;
}

.article-head--col .link-button {
  margin: 0;
}

.article-head--col .link-button a {
  width: 312px;
}

.article-head>*:first-child {
  margin-top: 0;
}

.article-head>*:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-keyword
---------------------------------------------------------------------------------------------------------------------------- */

.article-keyword {
  position: relative;
  margin-top: 20px;
}

.article-keyword__item {
  display: inline-block;
  padding: 0 10px;
  margin-right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  border-radius: 100px;
  border: 1px solid var(--color-black);
  background: var(--color-white);
}

.article-keyword__item:hover {
  color: var(--color-white);
  background: var(--color-black);
  opacity: 1;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-series-links
---------------------------------------------------------------------------------------------------------------------------- */
.article-series-links {
  margin-top: 24px;
  background: #f6f6f6;
  font-weight: 500;
  line-height: 1.6;
}

.article-series-links__heading {
  padding: 12px 29px;
  font-size: 12px;
  font-size: 1.2rem;
}

.article-series-links__list {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 28px 32px;
  row-gap: 20px;

  >li {
    width: calc(100% / 4);
  }
}

.article-series-links__item {
  display: grid;
  grid-template-areas:
    "image text"
  ;
  grid-template-columns: 57px auto;
  grid-template-rows: auto 1fr;
  gap: 4px 16px;
  padding-right: 40px;
  border-right: 1px solid #fff;

  .article-series-links__list>li:not(:nth-of-type(4n + 1))>& {
    padding-left: 40px;
  }

  .article-series-links__list>li:nth-of-type(4n)>& {
    border-right: none;
  }
}

.article-series-links__image {
  grid-area: image;
  width: 57px;
  height: 57px;

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

.article-series-links__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4px;
}

.article-series-links__num {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--font-figtree);
}

.article-series-links__title {
  --lines: 2;
  min-width: 0;
  min-height: 0;
  overflow: hidden;

  >p {
    line-clamp: var(--lines);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines);
    overflow: hidden;
    font-size: 12px;
    font-size: 1.2rem;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------
hr
---------------------------------------------------------------------------------------------------------------------------- */
.content__left hr.hr_black {
  margin: 40px 0;
}

hr.hr_black {
  border-top: 1px solid #000;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.link-button
---------------------------------------------------------------------------------------------------------------------------- */
.noprovide.link-button {
  display: flex !important;
}

.link-button,
.link-button > span{
  display: flex;
  justify-content: center;
  margin-block: 40px;
  height: auto;
}

.link-button a {
  display: grid;
  place-items: center;
  width: fit-content;
  height: auto;
  padding: 10px 40px;
  background: #fff;
  border: 1px solid #212121;
  border-radius: 50px;
  color: #212121 !important;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
  text-align: center;

  &:hover {
    background: inherit;
    color: inherit;
    opacity: .5;
  }

  &::before,
  &::after {
    display: none;
  }
}

.link-button.link-button__default a {
  width: 340px;
}

.link-button.space_b {
  margin-bottom: 70px;
}

.link-button>span {
  width: 100%;
  height: 100%;
}

/*button01*/
.link-button.button01,
.content .link-button.button01 {
  margin: 50px 0;
  text-align: center;
  width: initial;
  box-shadow: none;
  max-width: initial;
  height: auto;
}

.article-series-first-link a,
.link-button.button01 a,
.content .link-button.button01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  border: none;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  text-align: center;
  background: #FFF;
  position: relative;
  color: var(--link-active);
  text-decoration: underline;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  box-shadow: none;
}

.article-series-first-link a:hover,
.content .link-button.button01:hover {
  background: var(--color-white);
  opacity: 0.5;
}

.content .link-button.button01 a:before {
  content: none;
}

.content .link-button.button01 a span.fixed-labe {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
  text-decoration: underline;
  color: var(--link-active);
  margin-right: 16px;
  font-weight: normal;
}

.content .link-button.button01 a span.link-label {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: normal;
  text-decoration: underline;
  font-weight: 600;
  color: var(--link-active);
}

/* .author */
.link-button.author,
.article-body .link-button.author {
  margin: 40px auto;

  > a {
    display: grid;
    place-items: center;
    height: auto;
    padding: 9px 36px;
    border: 1px solid #212121;
    border-radius: 50px;
    box-shadow: none;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;

    &::before {
      display: none;
    }

    &:hover {
      background: inherit;
      color: inherit;
      opacity: .5;
    }
  }
}

.module-pagination + .link-button.author,
.module-pagination + .article-body .link-button.author {
  margin-top: -70px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-body
---------------------------------------------------------------------------------------------------------------------------- */
/* === メイン === */
.article-body {
  position: relative;
  width: auto;
  margin: 0 auto 40px;
  color: var(--color-text-black1);
  font-family: var(--font-hiragino-kaku-gothic);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;

  .content__left & {
    max-width: var(--content-inner-left-width);
  }

  figure:has(+ .toc) {
    margin-bottom: 50px;
  }

  > *:first-child {
    margin-top: 0;
  }
}

/* === 見出し === */
.article-body {
  h2,
  h3 {
    margin-block: 40px;
    font-weight: 500;
    line-height: 1.6;
  }

  h2 {
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.6;
  }

  h3 {
    font-size: 20px;
    font-size: 2.0rem;
  }

  h4 {
    position: relative;
    margin-block: 30px;
    line-height: 28px;
    font-size: 18px;
    font-size: 1.8rem;
  }

  .moon-type {
    text-align: center;
  }

  .article-headline {
    width: 100%;
  }

  .headline2 {
    margin-block: 40px;
    font-family: var(--font-figtree);
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: .04em;
    font-weight: 600;
  }
}

/* === テキスト === */
.article-body {
  > p {
    margin-bottom: 30px;
    color: var(--color-black);
    font-family: var(--font-hiragino-kaku-gothic);
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
  }

  strong {
    font-weight: 900;
  }

  small {
    font-size: 11px;
    font-size: 1.1rem;
  }

  sub {
    vertical-align: sub;
    font-size: 9px;
    font-size: 0.9rem;
  }

  em {
    background: var(--color-gray3);
    color: var(--color-text);
    font-family: var(--font-noto-sans);
    font-weight: 500;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 160%;
    font-style: normal;
    width: 100%;
    display: block;
    padding: 4px 8px;
    margin-bottom: 30px;
  }

  blockquote {
    margin-top: 40px;
    padding: 5px 0 5px 20px;
    border-left: 3px solid #ccc;
  }

  .toc__title {
    margin: 0;
    color: var(--color-black);
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--font-josefin-sans);
  }

  .credit,
  .caption {
    margin-top: 20px;
    color: var(--color-black);
    font-family: var(--font-hiragino-kaku-gothic);
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 150%;
  }

  .caption {
    margin-top: 20px;
    color: #6d6d6d;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
  }
}

/* === 主題区切り（水平線） === */
.article-body {
  hr {
    clear: both;
    margin: 40px 0;
    border: none;
    border-top: 1px solid #e7e7e7;

    &.hr_black {
      border-top: 1px solid #000;
    }

    &::before {
      display: none;
    }
  }
}

/* === リンク === */
.article-body {
  > p > a,
  > ul > li > a {
    color: #1c5dd6;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 180%;
    text-decoration: none;
    font-feature-settings: "palt";
    word-break: break-all;

    &:hover {
      text-decoration: underline;
    }

    &[target="_blank"]::after {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-inline: 3px;
      background-image: url(/common/crea/images/v1/icon/blank_blue.svg);
      background-position: center;
      background-size: 100%;
      background-repeat: no-repeat;
      translate: 0 2px;
    }
  }

  > ul > li > a {
    width: fit-content;
    line-height: 1.6;
  }

  .content__btn {
    margin: 50px auto;
  }

  .noprovide.link-button {
    display: flex !important;
  }

  .link-button {
    display: flex;
    justify-content: center;
    margin-block: 40px;
    height: auto;
  }

  .link-button a {
    display: grid;
    place-items: center;
    width: fit-content;
    height: auto;
    padding: 10px 40px;
    background: #fff;
    border: 1px solid #212121;
    border-radius: 50px;
    color: #212121 !important;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    box-shadow: none;

    &:hover {
      background: inherit;
      color: inherit;
      opacity: .5;
    }

    &::before {
      border-top: 2px solid var(--color-white);
      border-left: 2px solid var(--color-white);
      // border-color: inherit;
    }

    &::before,
    &::after {
      display: none;
    }
  }

  .link-button.pink a {
    &:hover {
      background: #F597AD;
    }
  }

  .link-button.download a {
    display: flex;
    align-items: center;
    justify-content: center;

    &::after {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background-image: url(/common/crea/images/v1_1/icon/download.svg);
      background-size: contain;
    }
  }

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

  .link-button + .link-button {
    margin-top: 50px;
  }

  .link-button.link-button__default a {
    width: 340px;
  }

  .link-button.space_b {
    margin-bottom: 70px;
  }

  .link-button.button01 {
    margin: 50px 0;
    text-align: center;
    width: initial;
    box-shadow: none;
    max-width: initial;
    height: auto;

    &:hover {
      background: var(--color-white);
      opacity: 0.5;
    }

    a {
      display: block;
      width: 100%;
      height: 100%;
      padding: 16px 24px;
      border: none;
      border-top: 1px solid var(--color-black);
      border-bottom: 1px solid var(--color-black);
      border-radius: 0;
      text-align: center;
      background: #FFF;
      position: relative;
      color: var(--link-active);
      text-decoration: underline;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 600;
      box-shadow: none;

      &::before {
        content: none;
      }

      span.fixed-label {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: normal;
        text-decoration: underline;
        color: var(--link-active);
        margin-right: 16px;
        font-weight: normal;
      }

      span.link-label {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: normal;
        text-decoration: underline;
        font-weight: 600;
        color: var(--link-active);
      }
    }
  }

  .module-pagination + .link-button.button01 {
    margin-top: -70px;
  }

  .link-button.next {
    margin-bottom: 0;

    a {
      border-bottom: none;
    }
  }

  .ambassador-link {
    margin: 60px auto;

    .inner {
      margin-top: 14px;
      padding: 40px 20px;
      line-height: 22px;
      font-size: 13px;
      font-size: 1.3rem;
      background-color: #EFEFEF;

      p {
        margin-bottom: 45px;
      }

      .button {
        font-size: 0;
        text-align: center;

        .link-button {
          display: inline-block;
          width: 250px;
          margin: 0;
          font-size: 13px;
          font-size: 1.3rem;

          a {
            min-width: auto;
          }

          &+.link-button {
            margin-left: 20px;
          }
        }
      }
    }
  }

  .moon-link .link-button {
    display: inline-block;
    width: auto;
    margin: 0;
  }

  .link-button.green a {
    color: #fff;
    background-color: #8FC31F;
    border: none;
  }
}

/* === リスト === */
.article-body {
  > ol,
  > ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-block: 40px;

    > li {
      list-style: none;
      color: #212121;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1.6;
    }
  }

  > ol {
    > li {
      counter-increment: number;

      &::before {
        content: counter(number);
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 500;
        text-align: center;
      }
    }
  }

  > ul {
    > li {
      padding-left: 18px;
      position: relative;

      /* 黒天 */
      &::before {
        content: "";
        display: block;
        flex-shrink: 0;
        width: 4px;
        height: 4px;
        background: #212121;
        border-radius: 50vh;
        position: absolute;
        top: 1em;
        left: 0;
      }
    }

    > li:has(> em) {
      padding-left: 0;

      &::before {
        display: none;
      }
    }
  }


  .ul.toc__list {
    list-style: none;
    padding: 8px 19px;
    margin: 0 0 0 19px;
  }

  .ul li.toc__item {
    list-style: disc;
  }
}

/* === テーブル === */
.article-body {
  table {
    width: 100%;
    margin-block: 40px;
    border-bottom: 1px solid #e7e7e7;
    border-collapse: collapse;

    tr {
      border-top: 1px solid #e7e7e7;
    }

    th, td {
      padding-block: 20px;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.8;
      font-weight: 400;
    }

    th {
      width: 184px;
      text-align: left;
    }

    td {
      margin-left: 56px;
    }

    em {
      margin: 0;
      padding: 0;
      background: transparent;
      color: #e54c78;
      font-size: inherit;
    }

    a {
      color: #1c5dd6;
    }

    &.border {
      th,
      td {
        padding: 10px;
        text-align: center;
        border: 1px solid #ccc;
      }
    }

    &table.border-bottom {
      th,
      td {
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
      }
    }
  }
}

/* === メディア系 === */
.article-body {
  figure,
  .embed {
    margin-top: 40px;
  }

  figure {
    > a {
      display: inline-block;
    }

    figcaption {
      padding-top: 6px;
      color: #6d6d6d;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 400;
    }
  }

  .image-area {
    margin-bottom: 40px;
  }

  .embed {
    .embed-caption {
      padding-top: 8px;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 150%;
      color: var(--color-gray7);
    }

    iframe {
      vertical-align: top;
    }

    &.youtube .embed-obj,
    &.spotify .embed-obj {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
    }

    &.youtube.vertical .embed-obj {
      padding-top: 100%;
    }

    &.googlemap .embed-obj {
      position: relative;
      width: 100%;
      padding-top: 75%;
    }

    &.youtube .embed-obj iframe,
    &.googlemap .embed-obj iframe,
    &.spotify .embed-obj iframe {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }

    &.instagram .embed-obj iframe {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
    }

    &.twitter .embed-obj twitter-widget {
      margin: 0 auto !important;
    }
  }

  .comic-image {
    margin: 120px auto 60px;
  }

  .gallery-icon {
    position: relative;

    > a {
      position: relative;

      &::before {
        content: '';
        position: absolute;
        right: 2px;
        top: 2px;
        width: 62px;
        height: 62px;
        background: url(/common/crea/images/v1_1/icon/gallery.svg) left top no-repeat;
        background-size: 100%;
      }
    }
  }

  .gallery-icon__caption {
    display: grid;
    grid-template-areas:
      "caption link"
    ;
    justify-content: space-between;
    width: 100%;
    column-gap: 16px;
    margin-top: 16px;
    line-height: 1.6;

    > figcaption {
      grid-area: caption;
    }
  }

  .gallery-icon__link {
    grid-area: link;
    width: fit-content;
    height: fit-content;

    > a {
      display: block;
      padding: 6px 24px;
      border: 1px solid #212121;
      border-radius: 50px;
      color: #212121;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 500;
      text-align: center;

      &:hover {
        text-decoration: none;
      }
    }
  }

  .figure-center,
  .figure-left,
  .figure-right {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .figure-center {
    text-align: center;

    figcaption {
      text-align: left;
    }

    img {
      max-width: 100%;
      height: auto;
    }
  }

  .figure-left {
    .image-area {
      float: left;
      width: 300px;
      margin-right: 20px;
      margin-bottom: 20px;

      img {
        max-width: 300px;
      }
    }

    &.no-wraparound .text-area {
      float: right;
      width: 320px;
    }
  }

  .figure-right {
    .image-area {
      float: right;
      width: 300px;
      margin-left: 20px;
      margin-bottom: 20px;

      img {
        max-width: 300px;
      }
    }

    &.no-wraparound .text-area {
      float: left;
      width: 320px;
    }
  }

  img#read-to-end {
    width: 1px;
    height: 1px;
  }

  .images-2cols,
  .images-3cols {
    --x-col-margin: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px var(--x-col-margin);
    margin-block: 40px;
    position: relative;

    &:has(.gallery-icon__caption) {
      row-gap: 0;
    }

    .image-area {
      margin-bottom: 0;
    }

    .image-area > a {
      display: block;
    }

    figcaption {
      width: 100%;
      padding-top: 0;
    }

    &::before,
    &::after {
      display: none;
    }
  }

  .images-2cols .image-area {
    width: calc((100% / 2) - (var(--x-col-margin) / 2));
  }

  .images-3cols .image-area {
    width: calc((100% / 3) - (var(--x-col-margin) / 1.5));
  }
}

/* === ブロック装飾 ===*/
.article-body {
  .box-normal,
  .box-thick,
  .box-color,
  .box-author {
    margin: 40px 0;
    padding: 56px;

    table {
      margin-top: 40px;
    }

    ul {
      margin-top: 40px;
    }

    li {
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 600;
      line-height: 180%;
    }

    a {
      color: #1c5dd6;
      font-size: inherit;
      text-decoration: none;
      font-feature-settings: "palt";
      word-break: break-all;

      &:hover {
        text-decoration: underline;
      }

      &[target="_blank"]::after {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 3px;
        background-image: url(/common/crea/images/v1/icon/blank_blue.svg);
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        translate: 0 2px;
      }
    }

    .link-button a {
      &::after {
        display: none;
      }

      &:hover {
        text-decoration: none;
      }
    }

    .box-image-left img {
      max-width: 200px;
    }

    .box-text-right {
      float: right;

      .box-image-left + & {
        width: 370px;
      }
    }

    .box-title {
      margin-block: 40px;
      color: #212121;
      font-size: 20px;
      font-size: 2.0rem;
      font-weight: 500;
      line-height: 1.6;

      &:has(+ p) {
        margin-bottom: 16px;
      }
    }

    .image-area {
      margin-top: 40px;

      > figcaption {
        margin-top: 12px;
        padding-top: 0;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 400;
      }
    }

    > p:not([class]) {
      margin-top: 16px;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1.8;
    }

    .box-image-left {
      float: left;
      width: 200px;
      margin-bottom: 0;
    }

    .box-text-right {
      &:has(+ hr) {
        margin-bottom: 40px;
      }

      > *:first-child {
        margin-top: 0;
      }
    }

    &:not(:has(.box-image-left)):not(:has(.box-text-right)) {
      display: block;
    }

    > *:first-child {
      margin-top: 0 !important;
    }

    > *:last-child {
      margin-bottom: 0 !important;
    }
  }
}

/* .box-normal */
.article-body .box-normal {
  border: 1px solid #e7e7e7;
}

/* .box-thick */
.article-body .box-thick {
  border: 1px solid #212121;

  hr {
    border-color: #212121;
  }
}

/* .box-author */
.article-body .box-author {
  background-color: #f6f6f6;
  border: none;

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

  .box-title {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
  }

  .box-image-left {
    width: 120px;
    height: 120px;
    border-radius: 50vh;
    overflow: hidden;

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

  .box-text-right {
    margin-bottom: 10px;
    font-weight: 500;

    .box-title {
      margin-bottom: 0;
      font-size: 16px;
      font-size: 1.6rem;
  
      & + p {
        margin-top: 16px;
      }
    }

    a {
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 400;
    }

    .box-image-left + & {
      width: calc(100% - 120px - 40px);
    }
  }

  &.no-color {
    background-color: #fff;
    border: 1px solid #ccc;
  }

  .box-image-left .box-image-left img {
    max-width: 100px;
  }

  .box-bottom {
    float: right;
    width: calc(100% - 100px - 10px);
  }

  .box-bottom p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* .box-color */
.article-body .box-color {
  border: none;
  background-color: #f6f6f6;

  &.moon {
    background-color: #ffce00;

    p {
      font-size: 19px;
      font-size: 1.9rem;
      line-height: 1.7;
    }
  }

  &.member {
    background-color: #f6f6f6;
  }

  > *:first-child {
    margin-top: 0;
  }

  > *:last-child {
    margin-bottom: 0;
  }

  *:first-child {
    margin-top: 0;
  }
}

/* .column-box */
.article-body .column-box {
  display: flex;
  column-gap: 56px;
  margin-block: 40px;
  padding: 56px;
  border: 1px solid #212121;

  &.cf::before,
  &.cf::after {
    display: none;
  }

  .image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    background: center center no-repeat;
    background-size: cover;
  }

  .text {
    display: flex;
    flex-direction: column;
    row-gap: 16px;

    .genre {
      font-size: 10px;
      font-size: 1rem;
      line-height: 1;
      font-weight: 500;
    }

    .title {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.6;
      font-weight: 500;
    }

    .detail {
      > p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.8;
      }
    }
  }
}

/* .box-magazine */
.article-body .box-magazine {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;

  &.cf::before,
  &.cf::after {
    content: none;
  }

  .image-left {
    width: 300px;
    margin: 0;
  }

  .image-left .figure-center {
    margin-top: 0px;
  }

  .text-right {
    flex: 1;
    margin-block: 0;
  }

  .keyword {
    margin-top: 10px;
    clear: both;
    float: right;
    text-align: right;
  }

  .keyword p:last-child {
    margin-right: 0;
  }
}

/* .box-style1 */
.article-body .box-style1 {
  p {
    padding: 0;
    margin: 0;
  }

  table {
    padding: 0;
    margin: 0;
  }
}

/* === books === */
.article-body.books {
  /* 本の話記事交換テーブル対応 BUNSHUN_DEVELOPER-395 20221021 */
  th {
    background-color: #e9f5fd;
    width: 20%;
    max-width: 120px;
    font-weight: bold;
  }

  th,
  td {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
    border: solid 1px #dcdcdc;
    padding: 2%;
  }

  figure {
    text-align: center;
    margin-bottom: 30px;

    figcaption {
      text-align: left;
    }
  }

  img {
    max-height: 640px;
  }
}

/* === online === */
.article-body.online {
  img {
    max-height: 640px;
  }

  div:not([class^="module-"]) img {
    width: auto;
  }
}

/* === キーワード === */
.article-body .keyword {
  margin-top: 60px;
  text-align: left;

  p,
  a {
    text-align: center;
    font-family: var(--font-hiragino-kaku-gothic);
    font-weight: 600;
    line-height: 100%;
    text-align: left;
  }

  p {
    display: inline-block;
    margin: 5px;
  }

  a {
    text-decoration: none;
    color: var(--link-active);
    font-size: 18px;
    font-size: 1.8rem;

    &::before {
      content: "\00BB";
      font-size: 18px;
      font-size: 1.8rem;
      color: var(--link-color);
      padding-right: 5px;
    }
  }
}

/* === ページネーション === */
.article-body .module-pagination {
  ul li a:hover {
    text-decoration: none;
  }
}

.article-body .module-next-button {
  ul li a:hover {
    text-decoration: none;
  }
}

/* === 購入する === */
.article-body .magazine-buy {
  margin: 60px auto;

  .pr {
    position: relative;

    &::after {
      content: '【PR】';
      display: inline-block;
    }
  }

  h4 {
    color: --link-color;
    font-family: var(--font-josefin-sans);
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 16px;
  }

  ul {
    margin-top: 0;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;

    li {
      width: 166px;
    }
  }
}

/* === 次号予告を見る === */
.article-body .magazine-next {
  margin: 0;
  padding: 18px;

  p {
    margin: 0 0 10px;
    color: var(--color-black);
    font-family: var(--font-josefin-sans);
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    text-align: left;

    small {
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 150%;
    }
  }

  h4 {
    margin: 0 0 20px;
    color: var(--color-black);
    font-family: var(--font-josefin-sans);
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 100%;
    text-align: left;

    small {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 150%;
    }
  }

  .link-button {
    justify-content: flex-start;
    margin: 20px 0;
  }

  .keyword {
    margin-top: 20px;
  }
}

/* === psychology === */
.article-body {
  .psychology-answer {
    font-size: 34px;
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
  }

  .psychology-result {
    padding: 25px 20px;
    font-size: 34px;
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
    background-color: #D8F2DF;
  }

  .psychology-share {
    margin-top: 40px;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;

    .inner {
      width: 166px;
      padding: 20px;
      margin: 5px auto 0;
      background-color: #EFEFEF;
      border-radius: 10px;

      a+a {
        margin-left: 30px;
      }

      .facebook img {
        width: 34px;
      }

      .twitter img {
        width: 40px;
      }

      .x_psychology img {
        width: 30px;
      }
    }
  }
}

/* === feature === */
.article-body .feature {
  h5 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .item {
    a {
      color: #333;
    }

    a .image {
      width: 60px;
      height: 60px;
    }

    a .text {
      width: calc(100% - 60px - 10px);
      padding-top: 0;

      p {
        margin-top: 0;
      }

      .title {
        font-size: 13px;
        font-size: 1.3rem;
        font-weight: normal;
        padding-bottom: 0;
        margin-bottom: 5px;
      }
    }
  }
}

/* === list-vertical-02 === */
.article-body .list-vertical-02 {
  .item .text .bottom ul {
    margin-top: 0;
  }

  .item .text .bottom .date {
    margin-bottom: 0;
  }
}

/* === 購入するリンク === */
.article-body .purchase {
  margin-top: 30px;

  ul {
    font-size: 0;
    margin: 0 0 0 -10px;
  }

  ul li {
    display: inline-block;
    width: 226px;
    margin: 10px 0 0 10px;
    border: 1px solid #e6e6e6;
  }

  &.digital li {
    width: 167px;
  }
}

/* === .module-sanmeigaku === */
.article-body .module-sanmeigaku {
  margin: 40px auto;

  .col .item {
    width: 200px;
    margin: 0;
  }

  .result .col .image {
    width: 290px;
  }

  .result .col .text {
    width: 290px;
  }

  .result .col .text .title {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .result .col .text .detail {
    margin: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
article-magazine-next
---------------------------------------------------------------------------------------------------------------------------- */
.article-body {
  .article-magazine-next {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 56px;
    background: #f6f6f6;
    color: #212121;
  }

  .article-magazine-next__heading {
    display: flex;
    flex-direction: column;
    row-gap: 9px;
    margin: 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;

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


  .article-magazine-next__summary {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }

  .article-magazine-next__note {
    display: flex;
    align-items: center;
    gap: 1em;
    color: #6d6d6d;
    font-size: 12px;
    font-size: 1.2rem;
  }

  .article-magazine-next__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;

    > a {
      display: grid;
      place-items: center;
      padding: 6px 24px;
      background: transparent;
      border: 1px solid #212121;
      border-radius: 50px;
      color: #212121;
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.6;
      font-weight: 500;
    }
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
#temp-static-about_ad, #temp-static-comic-essay_contribution
---------------------------------------------------------------------------------------------------------------------------- */
:is(#temp-static-about_ad, #temp-static-comic-essay_contribution) .article-body {
  .link-button {
    margin-block: 40px;
  }

  .link-button > a {
    padding: 10px 40px;
    border: 1px solid #212121;
    border-radius: 50px;
    box-shadow: none;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;

    &:hover {
      background: inherit;
      color: inherit;
      opacity: .5;
    }

    &::before {
      display: none;
    }
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-image
---------------------------------------------------------------------------------------------------------------------------- */

.article-image article {
  /*margin-top: 24px;*/
}

.article-image article .main-image {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.article-image article .main-image .image {
  position: relative;
  width: 784px;
  margin: 0 auto 6px;
}

.article-image article .main-image .caption {
  margin: 10px auto 0;
  line-height: 150%;
  font-size: 16px;
  font-size: 1.6rem;
  color: #777;
}

.article-image article .main-image .prev {
  position: absolute;
  left: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  width: 30px;
  height: 30px;
  /*
  background: url(/common/crea/images/v1/icon/arrow_white.png) left top no-repeat;
  background-size: 100%;
  */
}

.article-image article .main-image .next {
  position: absolute;
  right: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  /*
  background: url(/common/crea/images/v1/icon/arrow_white.png) left top no-repeat;
  background-size: 100%;
  */
}

.article-image article ul {
  width: 784px;
  margin: 0 auto;
  font-size: 0;
}

.article-image article ul li {
  display: inline-block;
  width: 65px;
}

.article-image article ul li+li {
  margin-left: 13px;
}

.article-image article ul li:nth-child(10n + 1) {
  margin-left: 0;
}

.article-image article ul li a {
  display: block;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #707070;
  background: center center no-repeat;
  background-size: cover;
}

.article-image article ul li span {
  display: block;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #707070;
  background: center center no-repeat;
  background-size: cover;
  cursor: pointer;
}

.article-image article ul li.active a {
  border: 1px solid #E54C78;
}

.gallery-button-prev,
.gallery-button-next {
  background: url(/common/crea/images/v1_1/icon/arrow_gray.svg) no-repeat center;
  background-size: 24px;
  height: 48px;
  margin-top: -24px;
  top: 50%;
  width: 44px;
  border-radius: 50%;
}

.gallery-button-next.swiper-button-next:after,
.gallery-button-prev.swiper-button-prev:after {
  font-size: 0;
}

/*サムネイルスライド*/
.photos-thumbnail {
  width: 784px;
  margin: 0 auto;
  font-size: 0;
  overflow: hidden;
}

.photos-thumbnail .gallery-thumbList__item {
  display: inline-block;
  width: 80px;
}

.photos-thumbnail .gallery-thumbList__item a {
  display: block;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #707070;
  background: center center no-repeat;
  background-size: cover;
}

.photos-thumbnail .gallery-thumbList__item span {
  display: block;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #707070;
  background: center center no-repeat;
  background-size: cover;
  cursor: pointer;
}

.photos-thumbnail .gallery-thumbList__item.active a {
  border: 1px solid #E54C78;
}

.gallery-button-prev {
  transform: rotate(180deg);
  left: -7px;
}

.gallery-button-next {
  right: -7px;
}

.gallery-thumbList__item.is-current span {
  border: 1px solid #E54C78;
}

.gallery-thumbList__item:not(.is-current) img {
  opacity: .5;
}

.gallery-slide__inner {
  width: 784px;
}

.gallery-slide__img>img {
  max-width: 100%;
  height: 50vw;
  max-height: 511px;
  object-fit: cover;
}

.gallery-thumbList__item {
  height: 82px;
  position: relative;
  width: 100%;
}

.gallery-thumbList__item>img {
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}

/* ============================================================================================================================
.box-mail-magazine
============================================================================================================================ */
.box-mail-magazine {
  margin: 50px auto;
}

.box-mail-magazine .notes {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
}

.box-mail-magazine .link-button {
  margin: 0 auto 50px;
}

.box-mail-magazine .caption {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
}

.box-mail-magazine .caption a {
  color: var(--link-active);
  text-decoration: underline;
}

/* ============================================================================================================================
.box-notes
============================================================================================================================ */

.box-notes {
  padding: 20px 30px;
  line-height: 19px;
  font-size: 12px;
  color: #707070;
  border: 1px solid #ccc;
}

.box-notes p:not(:last-child) {
  margin-bottom: 10px;
}

.box-notes span {
  padding: 0 7px;
  color: #fff;
  font-weight: bold;
  background-color: #FF9AA0;
}

.box-notes a {
  color: #E54C78;
}

.box-notes p.travller span {
  background-color: var(--traveller-key-color, #bfa366);
}

.box-notes p.travller a {
  color: var(--traveller-key-color, #bfa366);
}

/* ============================================================================================================================
#temp-03-list-b
============================================================================================================================*/
#temp-03-list-b,
#temp-crea-ambassador {
  .list-vertical-03 {
    margin: 50px auto;
  }

  .list-vertical-03 

  .list-vertical-03 .item+.item {
    margin-top: 20px;
  }

  .list-vertical-03 .item .image {
    position: relative;
    float: left;
    width: 250px;
    height: 187px;
    background: center center no-repeat;
    background-size: cover;
    border: 1px solid #EFEFEF;
  }

  .list-vertical-03 .item.member .image:before {
    content: 'MEMBER';
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 7px;
    line-height: 19px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #F597AD;
  }

  .list-vertical-03 .item.traveller .image:before {
    content: 'CREA Traveller';
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 7px;
    line-height: 19px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: var(--traveller-key-color, #bfa366);
  }

  .list-vertical-03 .item.new .image:before {
    content: 'NEW';
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    line-height: 19px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background-color: #FFED12;
  }

  .list-vertical-03 .item.promoted .image:after {
    content: 'Promoted';
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 5px;
    line-height: 12px;
    font-size: 8px;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .list-vertical-03 .item.new.promoted .image:after {
    top: 18px;
  }

  .list-vertical-03 .item .text {
    position: relative;
    float: right;
    width: 543px;
    height: 187px;
  }

  .list-vertical-03 .item.member-present .text {
    height: auto;
    min-height: 187px;
  }

  .list-vertical-03 .item .text .title {
    margin-bottom: 13px;
    line-height: 23px;
    font-size: 18px;
    font-weight: bold;
  }

  .list-vertical-03 .item .text .about {
    line-height: 18px;
    font-size: 12px;
  }

  .list-vertical-03 .item .text .bottom {
    position: absolute;
    left: 0;
    bottom: 20px;
    font-size: 10px;
    color: #888;
  }

  .list-vertical-03 .item.member-present .text .bottom {
    position: static;
  }

  .list-vertical-03 .item .text .bottom ul {
    display: inline-block;
    margin-right: 20px;
  }

  .list-vertical-03 .item .text .bottom ul li {
    display: inline-block;
  }

  .list-vertical-03 .item .text .bottom ul li+li:before {
    content: '/';
    padding: 0 0.5em;
  }

  .list-vertical-03 .item .text .bottom .date {
    display: inline-block;
  }

  .list-vertical-03 .item.crea30 .crea30-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    background-color: #e61b10;
    color: #fff;
    font-size: 9px;
    text-align: center;
  }

  .list-vertical-03 .item.crea30.new .crea30-badge {
    top: 22px;
  }

  .list-vertical-03 .item.crea30.promoted .crea30-badge {
    top: 32px;
  }
}

/* ============================================================================================================================
#temp-14-list-m
============================================================================================================================*/
#temp-14-list-m {
  .list-vertical-03 {
    .title {
      margin-bottom: 13px;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 600;
    }

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

    .bottom {
      font-size: 10px;
      font-size: 1rem;

      .genre {
        display: inline-block;
        margin-top: 8px;
        margin-right: 20px;
      }

      .genre > li {
        display: inline-flex;
        gap: 8px;
        padding: 3px 12px;
        border: 1px solid #e7e7e7;
        border-radius: 50px;
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 1.6;
        font-weight: 500;
      }

      .date {
        display: inline-block;
      }
    }
  }

  .box-member {
    margin-top: 40px;
  }
}

/* ============================================================================================================================
#temp-21-article-comic
============================================================================================================================*/
#temp-21-article-comic {
  .headline.medium {
    margin-left: 0;
    padding-left: 0;
  }
}

/* ============================================================================================================================
#temp-crea-ambassador
============================================================================================================================*/
#temp-crea-ambassador {
  .list-vertical-03 .item {
    flex-direction: row;
  }

  .list-vertical-03 .item + .item {
    margin-top: 60px;
  }

  .list-vertical-03 .item .image {
    flex-shrink: 0;
    width: 200px;
    height: 266px;
  }

  .list-vertical-03 .text {
    width: calc(100% - 200px - 20px);
    height: auto;
  }

  .list-vertical-03 .text a {
    display: inline;
    text-decoration: underline;
  }
}

/* ============================================================================================================================
.box-member
============================================================================================================================ */
.box-member {
  display: flex;
  width: 820px;
  margin-inline: auto;
  border: 1px solid #f597ad;

  /* .member-left */
  .member-left {
    flex-shrink: 0;
    width: 518px;
    padding: 20px;

    .inner {
      height: 220px;
      padding: 50px 30px 20px;
      background-color: #F597AD;
    }

    .link-button {
      margin-bottom: 30px;

      > a:hover {
        background: #fff;
      }
    }

    p {
      font-size: 10px;
      font-size: 1rem;
      line-height: 2;
    }
  }

  /* .link-right */
  .link-right {
    width: 300px;
    height: 260px;
    padding: 30px;
    background-color: #efefef;

    p {
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: bold;
    }

    ul {
      display: flex;
      flex-direction: column;
      row-gap: 10px;
    }

    a {
      display: block;
      width: fit-content;
      font-size: 13px;
      font-size: 1.3rem;
    }
  }
}

.box-mail-magazine {
  margin: 70px auto;
  padding: 30px;
  border: 1px solid #666;
  font-size: 14px;

  .notes {
    width: 700px;
    margin: 20px auto 40px;
    line-height: 22px;
    font-size: 13px;
  }

  .link-button {
    width: 250px;
    margin: 0 auto 10px;
  }

  .caption {
    font-size: 11px;
    text-align: center;
  }

  .caption a {
    color: #1c5dd6;
    text-decoration: none;
  }
}

/* ============================================================================================================================
.box-tarot 
============================================================================================================================ */

.box-tarot {
  margin-top: 15px;
  padding: 20px;
  border: 1px solid #ccc;
}

.box-tarot .logo-left {
  float: left;
  width: 422px;
}

.box-tarot .text-right {
  float: right;
  width: 335px;
}

.box-tarot .text-right .title {
  margin-bottom: 15px;
  line-height: 36px;
  font-size: 30px;
  font-weight: bold;
}

.box-tarot .text-right .about {
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 13px;
}

.box-tarot .text-right .name {
  font-size: 11px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.head
---------------------------------------------------------------------------------------------------------------------------- */

.head {
  position: relative;
}

.head h1 {
  width: auto;
  line-height: 46px;
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.head h1.comic {
  width: 450px;
  margin: 0 auto;
}

.head .share {
  position: static;
  right: 0;
  bottom: 8px;
  width: auto;
  font-size: 0;
  text-align: right;
}

#temp-05-list-d .head .share {
  top: 10px;
}

.head .share li {
  display: inline-block;
  width: 18px;
}

.head .share li+li {
  margin-left: 31px;
}

.head .share li.twitter {
  width: 18px;
}

.head .genre {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.head .image {
  clear: both;
  margin-bottom: 20px;
}

.head .about {
  line-height: 28px;
  font-size: 14px;
  font-size: 1.4rem;
}

.head .topic {
  position: relative;
  margin-top: 20px;
  padding: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  background-color: #EFEFEF;
  border-radius: 10px;
}

.head .topic:before {
  content: '';
  position: absolute;
  top: -13px;
  left: calc(50% + 172px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 13px 13px;
  border-color: transparent transparent #efefef transparent;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.serial-info
---------------------------------------------------------------------------------------------------------------------------- */

.serial-info {
  margin: 30px auto;
  padding: 25px;
  border: 1px solid #ccc;
  display: flex;
  gap: 20px;
}

.serial-info .image-left {
  position: relative;
  width: 420px;
  height: 315px;
  border: 1px solid #EFEFEF;
  background: center center no-repeat;
  background-size: cover;
}

.serial-info .image-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.serial-info .text-right {
  width: auto;
  flex: 1;
}

.serial-info .text-right .title {
  margin-bottom: 20px;
  line-height: 36px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

.serial-info .text-right .about {
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 13px;
  font-size: 1.3rem;
}

.serial-info .text-right .author {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.serial-info .text-right .author a {
  text-decoration: underline;
}

.serial-info .text-right .author a:hover {
  text-decoration: none;
}

.serial-info .text-right .link-button {
  width: auto;
  margin: 0;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-normal
---------------------------------------------------------------------------------------------------------------------------- */

.list-normal {
  width: 100%;
  margin: 30px auto;
  font-size: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.headline+.list-normal {
  margin-top: 0;
}

.list-normal+.list-normal {
  /* display: none; */
}

.list-normal .item {
  position: relative;
  display: inline-block;
  width: auto;
  vertical-align: top;
}

.list-normal .item+.item {
  margin-left: 4px;
}

.list-normal .item a {
  display: block;
}

.list-normal .item a:hover {
  text-decoration: none;
}

.list-normal .item .image {
  position: relative;
  width: 100%;
  padding-top: 74.78%;
  margin-bottom: 7px;
  border: 1px solid #EFEFEF;
  background: center center no-repeat;
  background-size: cover;
}

.list-normal .item.new .image:before {
  content: 'NEW';
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  line-height: 19px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFED12;
}

.list-normal .item.promoted .image:after {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  line-height: 12px;
  font-size: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.list-normal .item.new.promoted .image:after {
  top: 19px;
}

.list-normal .item.crea30 .crea30-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  background-color: #e61b10;
  color: #fff;
  font-size: 9px;
  font-size: 0.9rem;
  text-align: center;
}

.list-normal .item.crea30.new .crea30-badge {
  top: 22px;
}

.list-normal .item.crea30.new.promoted .crea30-badge {
  top: 34px;
}

.list-normal .item .text {
  width: 100%;
}

.list-normal .item .text .title {
  line-height: 19px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: left;
}

.list-normal .item .text .title.related {
  text-align: left;
}

.list-normal .item .text .subtitle {
  margin-top: 10px;
  font-size: 10px;
  font-size: 1.0rem;
  font-weight: bold;
  text-align: center;
}

.list-normal .item .text .bottom {
  position: relative;
  margin-top: 15px;
  line-height: 14px;
  color: #888;
  text-align: center;
}

.list-normal .item .text .bottom ul {
  display: inline-block;
  margin-right: 20px;
}

.list-normal .item .text .bottom ul li {
  display: inline-block;
  font-size: 10px;
  font-size: 1.0rem;
}

.list-normal .item .text .bottom ul li+li:before {
  content: '/';
  padding: 0 0.5em;
}

.list-normal .item .text .bottom .date {
  display: inline-block;
  font-size: 10px;
  font-size: 1.0rem;
  color: #707070;
}

.list-normal .item.pickup .image {
  float: none;
  width: 100%;
  height: 0;
  padding-top: 100%;
  margin-bottom: 20px;
}

.list-normal .item.pickup.promoted .image:before {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 3px;
  line-height: 12px;
  font-size: 9px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.3);
}

.list-normal .item.pickup .text {
  width: 100%;
  float: none;
  text-align: center;
}

.list-normal .item.pickup .text .title {
  padding-bottom: 5.5px;
  line-height: 26px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.list-normal .item.pickup .text .bottom {
  padding: 0;
}

.list-normal .item.pickup .text .bottom ul {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
}

.list-normal .item.pickup .text .bottom .date {
  position: static;
  display: inline-block;
  margin-left: 12px;
  font-size: 10px;
  font-size: 1.0rem;
}

.list-normal .item.pickup.promoted .title:after {
  content: none;
}

.left-content .list-normal .item {
  width: 250px;
  margin-top: 30px;
}

.left-content .list-normal .item+.item {
  margin-left: 34px;
}

.left-content .list-normal .item:nth-child(1),
.left-content .list-normal .item:nth-child(2),
.left-content .list-normal .item:nth-child(3) {
  margin-top: 0;
}

.left-content .list-normal .item:nth-child(3n + 1) {
  margin-left: 0;
}

.list-normal .col {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, 275px);
}

.list-normal .col .item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-simple
---------------------------------------------------------------------------------------------------------------------------- */

.list-simple {
  width: 100%;
  margin: 0 auto;
  font-size: 0;
}

.headline+.list-simple {
  margin-top: 0;
}

.list-simple .item {
  position: relative;
  display: inline-block;
  width: 182px;
  vertical-align: top;
}

.list-simple .item+.item {
  margin-left: 21px;
}

.list-simple .item a {
  display: block;
}

.list-simple .item .image {
  position: relative;
  width: 100%;
  padding-top: 126px;
  margin-bottom: 5px;
  background: center center no-repeat;
  background-size: cover;
}

.list-simple .item.new .image:before {
  content: 'NEW';
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  line-height: 19px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: #FFED12;
}

.list-simple .item.promoted .image:after {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  line-height: 12px;
  font-size: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.list-simple .item.new.promoted .image:after {
  top: 19px;
}

.list-simple .item .text {
  width: 100%;
}

.list-simple .item .text .title {
  padding-bottom: 15px;
  line-height: 18px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

.list-simple+.link-button {
  width: 170px;
  margin: 0;
}

.list-simple+.link-button a {
  padding-left: 14px;
  /*height: 33px;
  line-height: 31px;*/
  font-size: 11px;
  font-size: 1.1rem;
  text-align: left;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-text
---------------------------------------------------------------------------------------------------------------------------- */
.list-text {
  margin: 30px auto;
}

.headline + .list-text {
  margin-top: 0;
}

.list-text .item {
  position: relative;
}

.list-text .item + .item {
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid #ccc;
}

.list-text .item:last-child {
  padding-bottom: 0;
}

.list-text .item a {
  display: block;
}

.list-text .item .text .title {
  margin-bottom: 5px;
  line-height: 16px;
  font-size: 11px;
  font-weight: bold;
}

.list-text .item .text .bottom .date {
  font-size: 10px;
  color: #888;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-magazine
---------------------------------------------------------------------------------------------------------------------------- */

.list-magazine {
  margin: 50px auto;
}

.list-magazine .item+.item {
  margin-top: 30px;
}

.list-magazine .item .title {
  margin-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}

.list-magazine .item .image-left {
  float: left;
  width: 240px;
}

.list-magazine .item .text-right {
  float: right;
  width: 546px;
  margin-top: 20px;
}

.list-magazine .item .text-right .box {
  padding: 30px;
  font-size: 13px;
  font-size: 1.3rem;
  border: 1px solid #ccc;
}

.list-magazine .item .text-right .box .number {
  margin-bottom: 20px;
  text-align: center;
}

.list-magazine .item .text-right .box .copy {
  margin-bottom: 25px;
  line-height: 28px;
  text-align: center;
}

.list-magazine .item .text-right .box .copy strong {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}

.list-magazine .item .text-right .box .button {
  margin-bottom: 10px;
  text-align: center;
}

.list-magazine .item .text-right .box .button .link-button {
  display: inline-block;
  width: 134px;
  margin: 0;
}

.list-magazine .item .text-right .box .button .link-button+.link-button {
  margin-left: 10px;
}

.list-magazine .item .text-right .box .button .link-button a {
  min-height: auto;
  padding: 6px 30px 6px 12px;
  text-align: left;
}

.list-magazine .item .text-right .keyword {
  margin: 20px auto 0;
  text-align: center;
}

.list-magazine .item .text-right .keyword p {
  display: inline-block;
  padding: 0 5px;
}

.list-magazine .item .text-right .keyword p a {
  font-size: 11px;
  font-size: 1.1rem;
  text-decoration: underline;
}

.list-magazine .item .text-right .keyword p a:hover {
  text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-book
---------------------------------------------------------------------------------------------------------------------------- */

.list-book {
  margin: 50px auto 30px;
  font-size: 0;
}

.headline+.list-book {
  margin-top: 0;
}

.list-book .item {
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
}

.list-book .item:nth-child(even) {
  margin-left: 20px;
}

.list-book .item:nth-child(n + 4) {
  margin-top: 30px;
}

.list-book .item>a {
  display: block;
}

.list-book .item .image-left {
  float: left;
  width: 140px;
  margin-bottom: 20px;
}

.list-book .item .text-right {
  float: right;
  width: calc(100% - 140px - 20px);
  margin-bottom: 20px;
}

.list-book .item .text-right .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

.list-book .item .text-right .author {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

.list-book .item .text-right .date {
  margin-bottom: 30px;
  font-size: 11px;
  font-size: 1.1rem;
}

.list-book .item .text-right .about {
  line-height: 18px;
  font-size: 11px;
  font-size: 1.1rem;
}

.list-book .item .text-right .link-button {
  width: 134px;
  margin: 0;
}

.list-book .item .text-right .link-button a {
  min-height: auto;
  padding: 6px 30px 6px 12px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

.list-book .item .link {
  clear: both;
}

.list-book .item .link p {
  font-size: 12px;
  font-size: 1.2rem;
}

.list-book .item .link ul {
  font-size: 0;
}

.list-book .item .link ul li {
  display: inline-block;
  width: 80px;
}

.list-book .item .link ul li+li {
  margin-left: 7px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-book-large
---------------------------------------------------------------------------------------------------------------------------- */

.list-book-large {
  margin: 30px auto 50px;
}

.list-book-large .item+.item {
  margin-top: 30px;
}

.list-book-large .item .image-left {
  float: left;
  width: 140px;
  margin-bottom: 20px;
}

.list-book-large .item .text-right {
  float: right;
  width: calc(100% - 140px - 20px);
}

.list-book-large .item .text-right .title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.list-book-large .item .text-right .author {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}

.list-book-large .item .text-right .date {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

.list-book-large .item .text-right .about {
  margin-bottom: 40px;
  line-height: 20px;
  font-size: 11px;
  font-size: 1.1rem;
}

.list-book-large .item .text-right .bottom .link-button {
  float: left;
  width: 160px;
  margin: 0;
  height: 36px;
}

.list-book-large .item .text-right .bottom .link-button a {
  min-width: auto;
  width: 100%;
}

.list-book-large .item .text-right .bottom .link-button a {
  min-height: auto;
  padding: 8px 30px 8px 12px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

.list-book-large .item .text-right .bottom .link {
  float: left;
  margin-left: 40px;
  background-color: #EFEFEF;
  font-size: 0;
}

.list-book-large .item .text-right .bottom .link p {
  display: inline-block;
  padding: 0 15px;
  line-height: 39px;
  font-size: 12px;
  font-size: 1.2rem;
}

.list-book-large .item .text-right .bottom .link ul {
  display: inline-block;
  padding: 2px 15px 2px 0;
  vertical-align: top;
}

.list-book-large .item .text-right .bottom .link ul li {
  display: inline-block;
  width: 80px;
}

.list-book-large .item .text-right .bottom .link ul li+li {
  margin-left: 7px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-back-number
---------------------------------------------------------------------------------------------------------------------------- */

.list-back-number {
  margin: 50px auto 50px;
  font-size: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  gap: 40px 25px;
}

.list-back-number .item a {
  display: block;
}

.list-back-number .item .image {
  margin-bottom: 10px;
  border: 1px solid #E1E1E1;
}

.list-back-number .item .media {
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.list-back-number .item .number {
  font-size: 11px;
  font-size: 1.1rem;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-tag
---------------------------------------------------------------------------------------------------------------------------- */

.list-tag {
  margin: 50px auto;
  font-size: 0;
}

.list-tag li {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
}

.list-tag li+li {
  margin-left: 1em;
}

.list-tag li a {
  text-decoration: underline;
}

.list-tag li a:hover {
  text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-serial
---------------------------------------------------------------------------------------------------------------------------- */

.list-serial {
  margin: 50px auto;
}

.headline+.list-serial {
  margin-top: 0;
}

.list-serial .item+.item {
  margin-top: 30px;
}

.list-serial .item .box-left {
  float: left;
  width: 420px;
}

.list-serial .item .box-left .image {
  margin-bottom: 15px;
  border: 1px solid #E1E1E1;
}

.list-serial .item .box-left .about {
  margin-bottom: 15px;
  line-height: 21px;
  font-size: 12px;
  font-size: 1.2rem;
}

.list-serial .item .box-left .writer .thumb {
  float: left;
  width: 44px;
  height: 44px;
  background: center center no-repeat;
  background-size: cover;
}

.list-serial .item .box-left .writer .name {
  float: left;
  width: 110px;
  margin-left: 10px;
  line-height: 44px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}

.list-serial .item .box-left .writer .link-button {
  float: right;
  width: 250px;
  margin: 0;
}

.list-serial .item .box-right {
  float: right;
  width: 370px;
}

.list-serial .item .box-right .writer {
  margin-bottom: 40px;
}

.list-serial .item .box-right .writer .title {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}

.list-serial .item .box-right .writer .name {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}

.list-serial .item .box-right .past+.past {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

.list-serial .item .box-right .past a {
  display: block;
}

.list-serial .item .box-right .past .title {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.list-serial .item .box-right .past .summary {
  margin: 10px 0;
  line-height: 16px;
  font-size: 10px;
  font-size: 1.0rem;
}

.list-serial .item .box-right .past .date {
  font-size: 10px;
  font-size: 1.0rem;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-grandtop
---------------------------------------------------------------------------------------------------------------------------- */

.list-grandtop {
  margin-bottom: 30px;
}

.list-grandtop a {
  position: relative;
  display: block;
}

.list-grandtop .image {
  width: 100%;
  padding-top: 54.89%;
  margin-bottom: 30px;
  background: center center no-repeat;
  background-size: cover;
}

.list-grandtop.genre .image {
  padding-top: 70%;
  background: center top no-repeat;
  background-size: cover;
}

.list-grandtop.fortune .image {
  padding-top: 0%;
}

.list-grandtop .image.top-first {
  position: relative;
}

.list-grandtop .image.top-first .top-first-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-grandtop.promoted .image:before {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  line-height: 12px;
  font-size: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.list-grandtop.crea30 .crea30-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  background-color: #e61b10;
  color: #fff;
  font-size: 9px;
  font-size: 0.9rem;
  text-align: center;
}

.list-grandtop.crea30.promoted .crea30-badge {
  top: 14px;
}

.list-grandtop .text {
  width: 100%;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
}

.list-grandtop .text .title {
  margin-bottom: 22px;
  line-height: 36px;
  font-weight: bold;
  padding: 0 0;
  text-align: left;
}

.list-grandtop .text .bottom {
  font-size: 10px;
  font-size: 1.0rem;
  color: #888;
}

.list-grandtop .text .bottom ul {
  display: inline-block;
}

.list-grandtop .text .bottom ul li {
  display: inline-block;
}

.list-grandtop .text .bottom ul li+li:before {
  content: '/';
  padding: 0 0.5em;
}

.list-grandtop .text .bottom .date {
  display: inline-block;
  margin-left: 20px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-writer
---------------------------------------------------------------------------------------------------------------------------- */

.list-writer {
  width: 100%;
  margin: 30px auto 70px;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.list-writer .item {
  display: inline-block;
  width: 17.3%;
}

.list-writer .item a {
  display: block;
}

.list-writer .item a .image {
  width: 100%;
  padding-top: 100%;
  background: center center no-repeat;
  background-size: cover;
}

.list-writer .item a .name {
  font-size: 13px;
  font-size: 1.3rem;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.box-previously
---------------------------------------------------------------------------------------------------------------------------- */

.box-previously {
  font-size: 0;
}

.box-previously li {
  display: inline-block;
  vertical-align: top;
  width: 85px;
}

.box-previously li+li {
  margin-left: 20px;
}

.box-previously li:nth-child(8n + 1) {
  margin-left: 0;
}

.box-previously li a {
  display: block;
  color: #333;
}

.box-previously li a p {
  line-height: 15px;
  font-size: 11px;
  font-size: 1.1rem;
}

.box-previously li a p+p {
  margin-top: 5px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.horoscope-link
---------------------------------------------------------------------------------------------------------------------------- */

.horoscope-link {
  margin: 40px auto;
  padding: 30px 0;
  font-size: 0;
  text-align: center;
  background-color: #EFEFEF;
}

.horoscope-link .link-button {
  display: inline-block;
  width: 280px;
  margin: 0;
}

.horoscope-link .link-button a {
  min-width: auto;
}

.horoscope-link .link-button+.link-button {
  margin: 0 0 0 30px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.profile-box
---------------------------------------------------------------------------------------------------------------------------- */

.profile-box {
  width: 640px;
  margin: 40px auto;
  padding: 30px;
  border: 1px solid #ccc;
}

.profile-box .image-left {
  float: left;
  width: 100px;
}

.profile-box .text-right {
  float: right;
  width: calc(100% - 100px - 20px);
  line-height: 22px;
}

.profile-box .text-right .name {
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.profile-box .text-right .about {
  font-size: 12px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.ranking-box
---------------------------------------------------------------------------------------------------------------------------- */

.ranking-box {
  margin-bottom: 30px;
}

.ranking-box .tabs {
  position: relative;
  width: 540px;
}

.ranking-box .tabs.wide {
  width: 560px;
}

.ranking-box .tabs li {
  position: relative;
  float: left;
  width: 135px;
  line-height: 24px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  background-color: #fff;
  border: 1px solid #707070;
  border-bottom: none;
  cursor: pointer;
}

.ranking-box .tabs li+li {
  border-left: none;
}

.ranking-box .tabs li.active {
  color: #fff;
  background-color: #333;
}

.ranking-box .pattern {
  border: 1px solid #707070;
  padding: 0 34px 0 76px;
}

.ranking-box .pattern+.pattern {
  display: none;
}

.ranking-box .pattern .item {
  width: 100%;
  counter-increment: count-number;
}

.ranking-box .pattern .item:before {
  content: counters(count-number, "");
  position: absolute;
  left: -53px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  line-height: 32px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFCE00;
  border-radius: 32px;
}

.ranking-box .link-button {
  display: none;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.author-introduction
---------------------------------------------------------------------------------------------------------------------------- */

.author-introduction {
  margin: 30px auto 50px;
}

.author-introduction .box .image-left {
  float: left;
  width: 120px;
  margin-bottom: 40px;
}

.author-introduction .box .text-right {
  position: relative;
  float: right;
  width: 667px;
  margin-bottom: 40px;
  font-size: 13px;
  font-size: 1.3rem;
}

.author-introduction .box .text-right .name {
  margin-bottom: 15px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
}

.author-introduction .comment {
  padding: 20px;
  border: 1px solid #707070;
  border-radius: 10px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.comic-introduction
---------------------------------------------------------------------------------------------------------------------------- */

.comic-introduction {
  width: 100%;
  margin: 30px auto 40px;
}

.comic-introduction .item a {
  display: block;
}

.comic-introduction .item .image {
  margin-bottom: 30px;
  border: 1px solid #E1E1E1;
}

.comic-introduction .item .title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.comic-introduction .item .author {
  margin-bottom: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}

.comic-introduction .item .about {
  margin-bottom: 30px;
  line-height: 22px;
  font-size: 13px;
  font-size: 1.3rem;
}

.comic-introduction .item .bottom {
  position: relative;
  margin-top: 15px;
  line-height: 14px;
  text-align: center;
}

.comic-introduction .item .bottom ul {
  display: inline-block;
  margin-right: 20px;
}

.comic-introduction .item .bottom ul li {
  display: inline-block;
  font-size: 10px;
  font-size: 1.0rem;
}

.comic-introduction .item .bottom ul li+li:before {
  content: '/';
  padding: 0 0.5em;
}

.comic-introduction .item .bottom .date {
  display: inline-block;
  font-size: 10px;
  font-size: 1.0rem;
}

/*
連載記事関連
============================ */
/* 連載記事内のタイトル  */
.article-head .article-subtitle-series {
  text-align: center;
  display: block;
  width: auto;
  height: 18px;
  margin: 20px auto 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #888888;
}

/* 連載記事内のスライダー  */
.article-series-section {
  margin-bottom: 30px;
}

.article-series-section.noprovide {
  border: none !important;
}

.article-series-section.noprovide:before {
  display: none;
}

.article-series-section p:first-child {
  color: #333333;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-size: 2.0rem;
}

/*はじめから読む*/
.article-series-section .first-link {
  margin: 0;
  padding: 0;
  text-align: right;
}

.article-series-section .first-link a {
  color: #888888;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  border: none !important;
}

.article-series-section .first-link a:before {
  display: none;
}

.article-series-section .first-link a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #888888;
  margin: 0 0 3px;
  display: block;
}

#article-series-header-column {
  width: 570px;
  margin: 0 auto;
  background: #fff url(/common/crea/images/crea30-tokyo/pc/loading.gif) no-repeat center center;
}

#article-series-header-column li {
  visibility: hidden;
}

#article-series-header-column.slick-initialized {
  display: block;
  background: none;
}

#article-series-header-column.slick-initialized li {
  visibility: visible;
}

#article-series-header-column.mb {
  margin-bottom: 30px;
}

#article-series-header-column li {
  width: 240px;
  height: 160px;
  position: relative;
  margin: 0 35px 0 0;
}

#article-series-header-column li .title {
  width: 240px;
  height: 65px;
  position: absolute;
  background: #00000080;
  color: #ffffff;
  font-size: 11px;
  font-size: 1.1rem;
  bottom: 0;
  padding: 6px 7px;
  line-height: 1.7;
}

#article-series-header-column li .subtitle {
  width: 240px;
  height: 65px;
  position: absolute;
  background: #00000080;
  color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  bottom: 0;
  padding: 6px 7px;
  line-height: 1.7;
}

#article-series-header-column .image img {
  width: 240px;
  height: 160px;
  text-align: center;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

#article-series-header-column .slide-arrow {
  width: 13px;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  cursor: pointer;
}

#article-series-header-column .prev-arrow {
  left: -35px;
}

#article-series-header-column .next-arrow {
  right: -35px;
}

#article-series-header-column li.current-page {
  opacity: 0.5;
}

/* 連載記事内の次の記事へのリンク  */
.article-series-next-link {
  border: 2px solid #CCCCCC;
  padding: 20px;
  margin: 30px 0 20px;
}

.article-series-next-link .next-link-label {
  background: #666666;
  color: #ffffff;
  border-radius: 14px;
  display: inline-block;
  margin: 0 auto;
  width: 180px;
  display: block;
  text-align: center;
  padding: 2px 20px;
  margin-bottom: 10px;
}

.article-series-next-link a:hover {
  text-decoration: none;
}

.article-series-next-link .next-link-title {
  display: block;
}

/* はじめから読むのリンク  */
.article-series-first-link {
  width: 728px;
  margin: 50px auto;
}

.photo-link-button+.article-series-first-link {
  margin: 0 auto 40px;
}

#section .sns-traveller {
  width: 450px;
  margin: 0 auto 40px;
  padding: 10px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  background-color: var(--key-color, #bfa366);
}

#section .sns-traveller p,
#section .sns-traveller ul,
#section .sns-traveller li {
  display: inline-block;
  vertical-align: middle;
}

#section .sns-traveller img,
#section .sns-traveller svg {
  vertical-align: middle;
}

#section .sns-traveller a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  border-radius: 100%;
}

#section .sns-traveller li {
  margin-left: 36px;
}

#section .sns-traveller li+li {
  margin-left: 9px;
}

#section .sns-traveller li:nth-child(1) svg {
  width: 10px;
}

#section .sns-traveller li:nth-child(2) svg {
  width: 22px;
}

#section .sns-traveller li:nth-child(3) svg {
  width: 20px;
}

#interview-keyvisual {
  min-height: 700px;
}

#interview-keyvisual .main-visual {
  width: 370px;
  position: absolute;
  z-index: 9999;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

#section .magazine-info {
  width: 700px;
  margin: 88px auto 40px;
  padding: 16px 24px;
  color: #333;
  border: 1px solid var(--key-color, #bfa366);
}

#section .magazine-info .col {
  display: flex;
  justify-content: center;
}

#section .magazine-info .col .image {
  width: 209px;
}

#section .magazine-info p {
  margin: 0;
}

#section .magazine-info .col .text {
  width: 370px;
  margin-left: 34px;
  line-height: 28.8px;
  font-size: 16px;
  font-size: 1.6rem;
}

#section .magazine-info .col .image img {
  width: 100%;
}

#section .magazine-info .col .text .copy {
  padding: 28.8px 0;
  font-weight: 200;
}

#section .magazine-info .col .text .copy strong {
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: bold;
}

#section .magazine-info .col .text .button {
  position: relative;
  display: block;
  margin-top: 28px;
  line-height: 54.4px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--key-color, #bfa366);
  text-align: center;
  background-color: #fff;
  border: 1.5px solid var(--key-color, #bfa366);
  border-radius: 68px;
}

#section .magazine-info .col .text .button:before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 11px 0 11px;
  border-color: var(--key-color, #bfa366) transparent transparent transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#section .magazine-info .col .text .button:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 11px 0 11px;
  border-color: #fff transparent transparent transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* box */
.box-style1 {
  border: 1px solid #000;
  padding: 20px;
}

.box-style1 p {
  padding: 0;
  margin: 0;
}

.box-style1 table {
  padding: 0;
  margin: 0;
}

/*----アイコン address----*/
.box-style1 .icon-address:before {
  content: '\3012';
  line-height: 1.3;
  padding-left: 20px;
}

.box-style1 .icon-mail {
  color: var(--link-active);
  font-weight: 700;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.list-vertical
---------------------------------------------------------------------------------------------------------------------------- */

.list-vertical {
  width: 280px;
  margin: 30px auto;
}

.headline+.list-vertical {
  margin-top: 0;
}

.list-vertical .item {
  position: relative;
}

.list-vertical .item+.item {
  margin-top: 20px;
}

.list-vertical .item a {
  display: block;
}

.list-vertical .item .image {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: center center no-repeat;
  background-size: cover;
}

.list-vertical .item.new .image:before {
  content: 'NEW';
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  line-height: 19px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFED12;
}

.list-vertical .item.promoted .image:after {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  line-height: 12px;
  font-size: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.list-vertical .item.new.promoted .image:after {
  top: 18px;
}

.list-vertical .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 10px 10px 5px;
  background-color: rgba(255, 255, 255, 0.65);
  width: 100%;
  text-align: center;
}

.list-vertical .item .text .title {
  padding-bottom: 7px;
  line-height: 18px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: left;
}

.list-vertical .item .text .bottom {
  position: relative;
  line-height: 14px;
  font-size: 10px;
  font-size: 1.0rem;
  color: #666;
}

.list-vertical .item .text .bottom ul {
  display: inline-block;
  margin-right: 20px;
}

.list-vertical .item .text .bottom ul li {
  display: inline-block;
}

.list-vertical .item .text .bottom ul li+li:before {
  content: '/';
  padding: 0 0.5em;
}

.list-vertical .item .text .bottom .date {
  display: inline-block;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-vertical-02
---------------------------------------------------------------------------------------------------------------------------- */

.list-vertical-02 {
  margin: 30px auto;
}

.headline+.list-vertical-02 {
  margin-top: 0;
}

.list-vertical-02 .item {
  position: relative;
  padding: 0;
}

.list-vertical-02 .item+.item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
}

.list-vertical-02 .item a {
  display: block;
}

.list-vertical-02 .item .image {
  position: relative;
  float: left;
  width: 107px;
  height: 80px;
  background: center center no-repeat;
  background-size: cover;
  border: 1px solid #ccc;
}

.list-vertical-02 .item.new .image:before {
  content: 'NEW';
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  line-height: 19px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: #FFED12;
}

.list-vertical-02 .item.promoted .image:after {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  line-height: 12px;
  font-size: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.list-vertical-02 .item.new.promoted .image:after {
  top: 18px;
}

.feature.list-vertical-02 .item.promoted .title:after {
  content: 'Promoted';
  position: relative;
  top: -2px;
  margin-left: 6px;
  padding: 0 3px;
  line-height: 12px;
  font-size: 9px;
  font-size: 0.9rem;
  background-color: #ccc;
}

.feature.list-vertical-02 .item.promoted .image:after {
  display: none;
}

.list-vertical-02 .item .text {
  float: right;
  width: calc(100% - 107px - 20px);
  padding-top: 10px;
}

.list-vertical-02 .item .text .title {
  padding-bottom: 5px;
  line-height: 18px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}

.list-vertical-02 .item .text .bottom {
  position: relative;
  font-size: 10px;
  font-size: 1.0rem;
  color: #888;
}

.list-vertical-02 .item .text .bottom ul {
  display: inline-block;
  margin-right: 20px;
}

.list-vertical-02 .item .text .bottom ul li {
  display: inline-block;
}

.list-vertical-02 .item .text .bottom ul li+li:before {
  content: '/';
  padding: 0 0.5em;
}

.list-vertical-02 .item .text .bottom .date {
  display: inline-block;
  font-size: 10px;
  font-size: 1.0rem;
  font-weight: normal;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.list-vertical-03
---------------------------------------------------------------------------------------------------------------------------- */

.list-vertical-03 {
  margin: 50px auto;
}

.list-vertical-03 .item {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list-vertical-03 .item+.item {
  margin-top: 20px;
}

.list-vertical-03 .item a {
  display: flex;
  gap: 20px;
}

.list-vertical-03 .item .image {
  position: relative;
  width: 250px;
  height: 187px;
  background: center center no-repeat;
  background-size: cover;
  border: 1px solid #EFEFEF;
}

.list-vertical-03 .item.member .image:before {
  content: 'MEMBER';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 7px;
  line-height: 19px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #F597AD;
}

.list-vertical-03 .item.traveller .image:before {
  content: 'CREA Traveller';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 7px;
  line-height: 19px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--traveller-key-color, #bfa366);
}

.list-vertical-03 .item.new .image:before {
  content: 'NEW';
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  line-height: 19px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: #FFED12;
}

.list-vertical-03 .item.promoted .image:after {
  content: 'Promoted';
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 5px;
  line-height: 12px;
  font-size: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.list-vertical-03 .item.new.promoted .image:after {
  top: 18px;
}

.list-vertical-03 .item .text {
  position: relative;
  width: auto;
  flex: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
}

.list-vertical-03 .item.member-present .text {
  height: auto;
  min-height: 187px;
  color: var(--color-black);
  font-family: var(--font-hiragino-kaku-gothic);
}

.list-vertical-03 .item .text .title {
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
}

.list-vertical-03 .item .text .about {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
}

.list-vertical-03 .item .text .about p+p {
  margin-top: 8px;
}

.list-vertical-03 .item .text .bottom {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
}

.list-vertical-03 .item.member-present .text .bottom {
  position: static;
}

.list-vertical-03 .item .text .bottom ul {
  display: block;
  margin-top: 14px;
}

.list-vertical-03 .item .text .bottom ul li {
  display: inline-block;
}

.list-vertical-03 .item .text .bottom ul li+li {
  padding: 0 0.5em;
}

.list-vertical-03 .item .text .bottom ul li span {
  display: block;
  position: relative;
  z-index: 1;
}

.list-vertical-03 .item .text .bottom ul li span:before {
  content: "";
  width: 100%;
  height: 4px;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  bottom: 1px;
  right: 0;
  z-index: -1;
}

.list-vertical-03 .item .text .bottom .date {
  margin-top: 7px;
}

.list-vertical-03 .item.crea30 .crea30-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  background-color: #e61b10;
  color: #fff;
  font-size: 9px;
  font-size: 0.9rem;
  text-align: center;
}

.list-vertical-03 .item.crea30.new .crea30-badge {
  top: 22px;
}

.list-vertical-03 .item.crea30.promoted .crea30-badge {
  top: 32px;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.button-box
---------------------------------------------------------------------------------------------------------------------------- */

.button-box {
  margin: 50px auto;
  padding: 30px 0;
  background-color: #EFEFEF;
  text-align: center;
}

.button-box .link-button {
  display: inline-block;
  width: 280px;
  margin: 0;
}

.button-box .link-button a {
  min-width: auto;
}

.button-box .link-button+.link-button {
  margin-left: 20px;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.comic-essay-bottom
---------------------------------------------------------------------------------------------------------------------------- */

.comic-essay-bottom {
  max-width: 820px;
  margin: 30px auto;
}

.comic-essay-bottom a {
  color: #E54C78;
  font-weight: bold;
}

.comic-essay-bottom a:hover {
  text-decoration: underline;
}

.comic-essay-bottom .box {
  margin-bottom: 30px;
  padding: 20px;
  line-height: 22px;
  font-size: 12px;
  font-size: 1.2rem;
  border: 1px solid #707070;
  display: flex;
  gap: 30px;
}

.comic-essay-bottom .box .box-left {
  width: 385px;
}

.comic-essay-bottom .box .box-left .title {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}

.comic-essay-bottom .box .box-left .image-left {
  width: 100px;
  margin: 0;
  float: left;
}

.comic-essay-bottom .box .box-left .text-right {
  float: right;
  width: calc(100% - 100px - 10px);
  margin: 0;
  line-height: 100px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}

.comic-essay-bottom .box .box-left .about {
  margin-top: 0;
  padding-top: 20px;
  line-height: 19px;
  font-size: 12px;
  font-size: 1.2rem;
}

.comic-essay-bottom .box .box-right {
  width: 365px;
}

.comic-essay-bottom .box .box-right ul li {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.comic-essay-bottom .box .box-right ul li:first-child {
  padding-top: 0;
}

.comic-essay-bottom .box .box-right ul li a {
  display: block;
  color: #333;
}

.comic-essay-bottom .box .box-right ul li a:hover {
  text-decoration: none;
}

.comic-essay-bottom .box .box-right ul li a .title {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.comic-essay-bottom .box .box-right ul li a .date {
  margin-top: 5px;
  font-size: 10px;
  font-size: 1.0rem;
}

.comic-essay-bottom h5 {
  margin-top: 30px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.comic-essay-bottom p {
  margin-top: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

.comic-essay-bottom .color {
  margin-top: 10px;
  padding: 20px;
  background-color: #EFEFEF;
  border-radius: 5px;
}

.comic-essay-bottom .color p {
  margin-top: 0;
}

.comic-essay-bottom .link-button {
  margin-top: 30px;
}

.comic-essay-bottom .link-button a {
  color: #333;
}

.comic-essay-bottom .previously {
  font-size: 0;
}

.comic-essay-bottom .previously li {
  display: inline-block;
  width: 85px;
}

.comic-essay-bottom .previously li+li {
  margin-left: 20px;
}

.comic-essay-bottom .previously li:nth-child(8n + 1) {
  margin-left: 0;
}

.comic-essay-bottom .previously li a {
  display: block;
  color: #333;
}

.comic-essay-bottom .previously li a p {
  line-height: 15px;
  font-size: 11px;
  font-size: 1.1rem;
}

.comic-essay-bottom .previously li a p+p {
  margin-top: 5px;
}

.comic-essay-bottom section {
  width: auto;
}


/* ----------------------------------------------------------------------------------------------------------------------------
.moon-link
---------------------------------------------------------------------------------------------------------------------------- */

.moon-link {
  margin: 40px auto;
  padding: 30px 0;
  font-size: 0;
  text-align: center;
  background-color: #EFEFEF;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.moon-link .link-button {
  display: inline-block;
  width: auto;
  margin: 0;
}

.moon-link .link-button a {
  min-width: 300px;
}

.moon-link .link-button:first-child a {
  background-color: #FFCE00;
  border: none;
}

.moon-link .link-button:first-child a:hover {
  background-color: var(--color-black);
  border: none;
}

.article-body .moon-link .link-button:first-child a:hover {
  background: #FFCE00;
  border: inherit;
  opacity: .5;
}

/* =========================================
 連携記事へのページ上部リンク
========================================= */
#series-column {
  display: flex;
  gap: 0 16px;
  justify-content: space-between;
  margin: 50px 0 40px;
}

#series-column li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  flex-grow: 1;
  font-family: var(--font-hiragino-kaku-gothic);
  font-size: 22px;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding: 0;
}

#series-column li:before {
  display: none;
}

#series-column li:after {
  background-color: var(--color-gray6);
  content: "";
  display: block;
  height: 5px;
}

#series-column li a {
  padding-bottom: 7px;
  color: var(--color-gray6);
}

#series-column li.current {
  flex-grow: 2;
  color: var(--link-active);
}

#series-column li.current:after {
  background-color: var(--link-active);
}


/* =========================================
 連携記事の次ページ下部リンク
========================================= */
.article-series-next-link {
/*
background: var(--color-gray2);
*/
}

.article-series-next-link__inner {
  max-width: var(--content-inner-left-width);
  margin: 0 auto;
}

.article-series-next-link__link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-series-next-link__imgwrap {
  width: 180px;
  height: 135px;
  overflow: hidden;
}

.article-series-next-link__img {
  height: 0;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
}

.article-series-next-link__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.article-series-next-link__label {
  color: var(--color-black);
  font-family: var(--font-hiragino-kaku-gothic);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
}

.article-series-next-link__title {
  color: var(--link-active);
  font-family: var(--font-hiragino-kaku-gothic);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 150%;
  text-decoration: underline;
}

/* =========================================
 目次
========================================= */
.toc {
  margin-block: 40px;
  padding: 56px;
  border: 1px solid #212121;
  position: relative;

  &::before,
  &::after {
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    background: #fff;
    position: absolute;
    left: 20px;
  }

  &::before {
    top: -1px;
  }


  &::after {
    bottom: -1px;
  }
}

.toc__title {
  font-family: var(--font-figtree);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.toc__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 40px;
}

.toc__item {
  display: flex;
  column-gap: 8px;

  &::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #212121;
    border-bottom: 1.5px solid #212121;
    rotate: 45deg;
    translate: 0 .4em;
  }
}

.toc__link {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================================================================================================
.box-ambassador
============================================================================================================================ */

.box-ambassador {
  padding: 20px;
  border: 1px solid #ccc;
  display: flex;
  gap: 25px;
  margin: 0 0 50px;
}

.box-ambassador .logo-left {
  width: 420px;
  height: 315px;
  border: 1px solid #EFEFEF;
  text-align: center;
}

.box-ambassador .logo-left img {
  margin-top: 94px;
  width: 316px;
}

.box-ambassador .text-right {
  width: auto;
  flex: 1;
}

.box-ambassador .text-right .title {
  margin-bottom: 15px;
  line-height: 36px;
  font-size: 30px;
  font-weight: bold;
}

.box-ambassador .text-right .about {
  line-height: 22px;
  font-size: 13px;
}

.box-ambassador .text-right .link-button {
  width: auto;
  margin: 30px 0 0;
}

#temp-crea-ambassador .list-vertical-03 {
  margin-bottom: 60px;
}

#temp-crea-ambassador .list-vertical-03 .item+.item {
  margin-top: 60px;
}

#temp-crea-ambassador .list-vertical-03 .image {
  width: 200px;
  height: 266px;
}

#temp-crea-ambassador .list-vertical-03 .text {
  width: calc(100% - 200px - 20px);
  height: auto;
}

#temp-crea-ambassador .list-vertical-03 .text a {
  display: inline;
  text-decoration: underline;
}

#temp-crea-ambassador .link-button {
  margin: 30px auto;
}

/* ============================================================================================================================
#temp-static-monthly
============================================================================================================================ */

#temp-static-monthly .content .box {
  margin: 20px auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

#temp-static-monthly .content .box h3 {
  float: left;
  width: 150px;
  font-size: 22px;
  font-weight: bold;
}

#temp-static-monthly .content .box ul {
  float: right;
  width: calc(100% - 150px);
  font-size: 0;
}

#temp-static-monthly .content .box ul li {
  display: inline-block;
  width: 16.6%;
  margin-top: 10px;
  font-size: 13px;
}

/* ============================================================================================================================
#temp-static-sitemap
============================================================================================================================ */
#temp-static-sitemap .article-body {
  width: 820px;
  font-size: 13px;

  a {
    color: #222;
    text-decoration: none;
  }

  .col {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #707070;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 40px 30px;
  }

  .box {
    a {
      font-weight: normal;
      font-size: 14px;
      font-size: 1.4rem;
    }

    p {
      padding-bottom: 5px;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: bold;
      border-bottom: 1px solid #ccc;
    }

    p a {
      font-weight: bold;
    }

    ul {
      margin-top: 10px;
    }

    ul li+li {
      margin-top: 5px;
    }
  }

  .other a {
    font-weight: normal;
  }
}

/* ============================================================================================================================
#temp-static-tarot
============================================================================================================================ */

#temp-static-tarot .article-body h2 {
  margin-top: 0;
}

#temp-static-tarot #scene_3 .txt {
  font-size: 14px;
  font-size: 1.4rem;
}

#temp-static-tarot #scene_3 .txt .title {
  padding: 8px 0 6px;
  margin-top: 0;
}

#temp-static-tarot #scene_3 .txt .title .ja {
  font-size: 20px;
  font-size: 2.0rem;
}

#temp-static-tarot #scene_3 .copyright {
  bottom: -30px;
}

#temp-static-tarot #section_tarot .footer img {
  width: auto;
}

#temp-static-tarot #section_tarot .footer a {
  cursor: pointer;
  display: block;
}

#temp-static-tarot #scene_1 .card_select {
  padding-top: 0;
}

/* ============================================================================================================================
#temp-static-contact
============================================================================================================================ */
#temp-static-contact .article-body .box-color a {
  color: #212121;
}

/* ============================================================================================================================
#temp-static-moon
============================================================================================================================ */
#temp-static-moon .box-normal {
  margin-top: 30px;
  padding-top: 0;
  font-size: 13px;
}

#temp-static-moon .box-normal .box-title {
  width: calc(100% + (56px * 2));
  margin: 0 0 0 -56px;
  padding: 5px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
}

#temp-static-moon .box-normal hr {
  margin-block: 1em;
}

#temp-static-moon .box-normal h4 {
  font-size: 15px;
  font-size: 1.5rem;
}

#temp-static-moon .box-normal .col .symbol {
  float: left;
  width: 70px;
}

#temp-static-moon .box-normal .col .text {
  float: right;
  width: calc(100% - 70px - 20px);
}

#temp-static-moon .box-normal.flame {
  border-color: #ED705A;
  display: block;
}

#temp-static-moon .box-normal.flame .box-title {
  background-color: #ED705A;
}

#temp-static-moon .box-normal.earth {
  border-color: #9F956D;
  display: block;
}

#temp-static-moon .box-normal.earth .box-title {
  background-color: #9F956D;
}

#temp-static-moon .box-normal.wind {
  border-color: #A0C7B5;
  display: block;
}

#temp-static-moon .box-normal.wind .box-title {
  background-color: #A0C7B5;
}

#temp-static-moon .box-normal.water {
  border-color: #93C7D6;
  display: block;
}

#temp-static-moon .box-normal.water .box-title {
  background-color: #93C7D6;
}

#temp-static-moon .moon-calendar-table {
  width: 820px;
  margin-block: 50px;
  table-layout: fixed;
  border-collapse: collapse;
}

#temp-static-moon .moon-calendar-table td,
#temp-static-moon .moon-calendar-table th {
  border: 1px solid #FFCE00;
}

#temp-static-moon .moon-calendar-table th {
  height: 24px;
  font-size: 15px;
  text-align: center;
  background-color: #FFCE00;
}

#temp-static-moon .moon-calendar-table th+th {
  border-left: 1.5px solid #fff;
}

#temp-static-moon .moon-calendar-table td {
  padding: 20px;
  font-size: 1.6px;
  font-size: 1.6rem;
}

#temp-static-moon .moon-calendar-table td p {
  margin-bottom: 30px;
}

#temp-static-moon .moon-calendar-table .middle {
  vertical-align: middle;
}

#temp-static-moon .box-normal {
  .text {
    > p {
      margin-top: 4px;
      font-size: 14px;
      font-size: 1.4rem;
    }

    > *:first-child {
      margin-top: 0;
    }

    > *:last-child {
      margin-bottom: 0;
    }
  }
}

/* ============================================================================================================================
etc
============================================================================================================================ */

.hidden {
  display: none;
}

.bg-100per {
  background-size: 100% !important;
}

.billboard-banner {
  width: 970px;
  margin: 0 auto;
  /*padding: 5px 0 18px;*/
  padding-top: 5px;
}

.billboard-banner img {
  width: auto;
}

.ad-banner {
  /*width: $basic-width;*/
  margin: 20px auto;
  text-align: center;
}

.ad-banner.-pc_underarticle {
  min-height: 90px;
}

.ad-banner.-pc_right_1st {
  min-height: 250px;
}

.ad-banner.-pc_right_2nd {
  min-height: 250px;
}

.ad-banner img {
  width: 100%;
  height: auto;
}

.ad-banner+div[id^="div-gpt"] {
  text-align: center;
  margin: 0 auto;
}

.ad-banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 102%;
  margin: 40px 0 40px -1%;
}

.ad-banner-list .ad-banner {
  width: 32%;
  margin: 5px .5%;
}

.not-margin {
  margin: 0 auto !important;
}

.small-margin {
  margin-top: 20px !important;
}

.medium-margin {
  margin-top: 40px !important;
}

.large-margin {
  margin-top: 80px !important;
}

.align-center {
  text-align: center !important;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.photo-link-button {
  margin: 40px 0 0;
  text-align: center;
  width: initial;
  box-shadow: none;
  max-width: initial;
}

.photo-link-button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  border: none;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  border-radius: 0;
  text-align: center;
  background: #FFF;
  position: relative;
  color: var(--link-active);
  text-decoration: underline;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  box-shadow: none;
}

.photo-link-button a:hover {
  background: var(--color-white);
  opacity: 0.5;
}

.link-button.back a:hover {
  opacity: .5;
}

.link-button.back a:before {
  left: 14px;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.link-button.close a:before {
  margin-top: 2px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.link-button.black a {
  color: #fff;
  background-color: #707070;
  border: none;
}

.link-button.black a:before {
  background-image: url(/common/crea/images/v1/icon/arrow_white.png);
}

.link-button.pink a {
  background-color: #F597AD;
  border: none;
}

.link-button.green {
  border-color: #8FC31F;
}

.link-button.green a {
  color: #fff;
  background-color: #8FC31F;
  border: none;
}

.link-button.green a:hover {
  // background-color: var(--color-black);
}

.link-button.green a:before {
  // background-image: url(/common/crea/images/v1/icon/arrow_white.png);
}

.link-button.brown a {
  color: #fff;
  background-color: #A9966E;
  border: none;
}

.link-button.brown a:before {
  background-image: url(/common/crea/images/v1/icon/arrow_white.png);
}

.link-button.yellow a {
  background-color: #FFCE00;
  border: none;
}

.link-button.nekokuma a:before {
  margin-top: -27px;
  width: 50px;
  height: 54px;
  border: none;
  background-image: url(/common/crea/images/v1/icon/nekokuma.png);
  background-size: 50px;
  transform: none;
  transition: none;
}

.link-button.nekokuma a:hover:before {
  border: none;
  transform: none;
  transition: none;
}

.right-banner .link-button {
  width: 250px;
}

.link-banner {
  width: 480px;
  margin: 60px auto;
}

.link-banner a {
  display: block;
  line-height: 23px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #333;
  background: url(/common/crea/images/v1/icon/arrow_black.png) calc(100% - 18px) center no-repeat;
  background-size: 18px;
  border: 1px solid #ccc;
}

.link-banner a p {
  float: left;
  width: 50%;
  margin: 0;
}

.link-banner a p img {
  vertical-align: bottom;
}

.link-banner a p.text {
  padding: 20px 0 20px 34px;
}

.comic-button {
  position: relative;
  width: 300px;
  margin: 30px auto 60px;
}

.comic-button a {
  display: block;
  padding-right: 60px;
  font-size: 13px;
  font-size: 1.3rem;
}

.comic-button a span {
  position: relative;
  display: block;
  width: 230px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #EFEFEF;
  border-radius: 10px;
}

.comic-button a span:after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #efefef;
}

.comic-button a:after {
  content: '';
  position: absolute;
  right: 0;
  top: -10px;
  width: 50px;
  height: 54px;
  background: url(/common/crea/images/v1/icon/nekokuma.png) left top no-repeat;
  background-size: 100%;
}

.headline.pr {
  position: relative;
}

.headline.pr:after {
  content: '【PR】';
  display: inline-block;
}

.headline.align-left {
  text-align: left;
}

.headline.border {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1200px;
}

.headline.border:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  border-top: 1px solid #ccc;
}

.headline.border span {
  position: relative;
  padding: 0 34px;
  background-color: #fff;
}

.headline.medium {
  font-size: 20px;
  font-size: 2.0rem;
  margin-bottom: 10px;
}

.headline.large {
  font-size: 34px;
  font-size: 3.4rem;
}

.headline small {
  position: relative;
  top: -2px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  padding-left: 20px;
}

.headline-ribbon-wrap {
  text-align: center;
  margin: 0 0 54px;
}

.headline-ribbon {
  display: inline-block;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
}

.headline-ribbon:before,
.headline-ribbon:after {
  content: '';
  position: absolute;
  bottom: -13px;
  z-index: 0;
  border: 21px solid #E2CBBD;
  width: 60px;
  box-sizing: border-box;
}

.headline-ribbon:before {
  left: -21px;
  border-left-color: transparent;
  border-left-width: 14px;
}

.headline-ribbon:after {
  right: -21px;
  border-right-color: transparent;
  border-right-width: 14px;
  z-index: -1;
}

.headline-ribbon h3 {
  width: 330px;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 5px 10px;
  line-height: 30px;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 600;
  color: #222;
  background: #FFF;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
}

.headline-ribbon h3:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 14px transparent;
  border-right: solid 38px #707070;
}

.headline-ribbon h3:after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 14px transparent;
  border-left: solid 38px #707070;
}

.headline-ribbon-icon {
  position: absolute;
  margin: 0 auto;
  top: -32px;
  left: 0;
  right: 0;
  width: 62px;
  height: 62px;
  border: solid 1px #707070;
  border-radius: 50%;
  background: #FFF;
}

.headline-ribbon-icon img {
  width: 18px;
  height: 18px;
  position: relative;
  top: 9px;
}

.comic-title {
  width: 450px;
  margin: 0 auto 30px;
}

.basic-width {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

hr.full-width {
  width: 1200px;
  margin: 40px auto;
}

a.blank {
  text-decoration: underline;
  padding-right: 25px;
  background: url(/common/crea/images/v1/icon/link_blank.png) calc(100% - 5px) center no-repeat;
  background-size: 10px;
}

a.arrow:after {
  content: '＞';
  margin-left: 1em;
}

.gray {
  color: #aaa;
}


/* ============================================================================================================================
#content
============================================================================================================================ */

section.column-single {
  width: 1000px;
  margin: 0 auto 70px;
}

section.column-single .list-vertical-03 .item .text {
  width: 720px;
}

/* ============================================================================================================================
#temp-33-interview-list
============================================================================================================================ */
#temp-33-interview-list #wrapper {
  // padding: 85px 0 0;
}

#ttemp-33-interview-lis #header .logo {
  margin: 0 auto;
  padding: 26px 0
}

#temp-33-interview-list #header.min .logo {
  margin-bottom: 0;
}

#temp-33-interview-list #interview-keyvisual {
  position: relative;
  padding: calc(100vh - 85px) 0 0;
  overflow: hidden;
  background: #ccc url("/common/crea/images/v1/icon/mv_loader.gif") 50% 50% no-repeat;
}

#temp-33-interview-list #interview-keyvisual #keyvisual-swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#temp-33-interview-list #interview-keyvisual #keyvisual-swiper:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

#temp-33-interview-list #interview-keyvisual #keyvisual-swiper .swiper-slide {
  background: 50% 50% no-repeat;
  background-size: cover;
}

#temp-33-interview-list #interview-keyvisual #keyvisual-swiper .swiper-pagination {
  bottom: 40px;
}

#temp-33-interview-list #interview-keyvisual #keyvisual-swiper .swiper-pagination-bullet {
  top: 0;
  width: 15px;
  height: 15px;
  margin: 0 15px;
  background-color: #fff;
  opacity: 1;
  transition: all 0.4s ease;
}

#temp-33-interview-list #interview-keyvisual #keyvisual-swiper .swiper-pagination-bullet-active {
  background-color: #AEAEAE;
}

#temp-33-interview-list #interview-keyvisual .video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#temp-33-interview-list #interview-keyvisual .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#temp-33-interview-list #interview-keyvisual .video-wrapper:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

#temp-33-interview-list #interview-keyvisual .text {
  position: absolute;
  bottom: 120px;
  z-index: 1;
  width: 100%;
  color: #fff;
  font-weight: normal;
}

#temp-33-interview-list #interview-keyvisual .text a {
  display: block;
}

#temp-33-interview-list #interview-keyvisual .text .title {
  width: 1020px;
  margin: 0 auto 30px;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
}

#temp-33-interview-list #interview-keyvisual .text .summary {
  width: 1020px;
  margin: 0 auto;
  font-size: 26px;
  line-height: 31px;
}

#temp-33-interview-list #interview-keyvisual .traveler {
  font-family: 'Noto Serif', serif;
}

#temp-33-interview-list #interview-keyvisual .traveler .summary,
#temp-33-interview-list #interview-keyvisual .traveler .title {
  text-align: center;
}

/* --------------------
提携メディア用
----------------------- */
.associated-image {
  width: 160px;
}

.associated-image img {
  max-width: 100%;
  width: auto;
  vertical-align: bottom;
  margin: 30px 0 20px;
}

.associated-related {
  margin-bottom: 60px;
}

.associated-related ul li {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1;
}

.associated-related ul li:last-child {
  margin-bottom: 0;
}

.associated-related ul li a {
  color: #666;
  font-weight: normal;
}

/* ==============================================================================
#　breakpoint
============================================================================== */
@media screen and (max-width: 800px) {
  /* ----------------------------------------------------------------------------------------------------------------------------
.article-body
---------------------------------------------------------------------------------------------------------------------------- */

  .article-body {
    width: auto;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-nextprev
---------------------------------------------------------------------------------------------------------------------------- */
.article-nextprev {
  margin-block: 40px;
}

.article-nextprev__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding: 40px;
  background: #e9f7f0;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;

  &:hover {
    text-decoration: none;
  }
}

.article-nextprev__label {
  color: #888;
  font-size: 14px;
  font-size: 1.4rem;
}

.article-nextprev__heading {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: #212121;
  font-size: 16px;
  font-size: 1.6rem;

  /* アイコン */
  &::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #212121;
    border-right: 1px solid #212121;
    rotate: 45deg;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-info
---------------------------------------------------------------------------------------------------------------------------- */
.article-info {
  margin-block: 80px 40px;
}

.article-info__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.article-info__list > div {
  display: flex;
  column-gap: 32px;

  > dt {
    width: 86px;
    padding-top: .5em;
    color: #888;
    font-family: var(--font-figtree);
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  > dd {
    color: #212121;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
  }

  time {
    font-family: var(--font-figtree);
    font-size: 13px;
    font-size: 1.3rem;
  }

  .author {
    display: flex;
    align-items: center;
    column-gap: 8px;

    .icon-author {
      width: 24px;
      height: 24px;
      background-size: contain;
      border-radius: 50vh;
      overflow: hidden;
    }

    > a {
      color: #212121;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 1.6;
    }

    & + .author {
      margin-top: 10px;
    }
  }
}

.article-info__category,
.article-info__keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;

  > li > a {
    padding: 6px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 40px;
    color: #212121;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

.article-info__casts {
  align-items: center;
}

.article-info__casts > dt {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
}

.article-info__cast {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
}

.article-info__cast-image {
  width: 72px;
  height: 72px;
  border-radius: 50vh;
  overflow: hidden;
}

.article-info__cast-text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ----------------------------------------------------------------------------------------------------------------------------
.article-carousel
---------------------------------------------------------------------------------------------------------------------------- */
.article-carousel {
  display: grid;
  grid-template-columns: 1fr 85px;
  column-gap: 28px;
  margin-bottom: 40px;
}
.article-carousel__column--main {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}
.article-carousel__column--sub {
  grid-column: 1 / span 2;
  grid-row: 2;
  width: 100%;
}
.article-carousel__column--thumbnail {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.article-carousel__caption {
  color: #6d6d6d;
  font-size: 12px;
  line-height: 1.5;
}
.article-carousel__counter {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  height: 36px;
}
.article-carousel__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 16px;
}
.article-carousel__detail {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.article-carousel__btn-wrap {
  text-align: right;
}
.article-carousel__btn {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  border-radius: 9999px;
  border: solid 1px #212121;
  color: #212121 !important;
  font-size: 12px;
  font-weight: bold !important;
  line-height: 1;
  padding: 6.5px 24px;
}
.article-carousel__btn:hover {
  text-decoration: none !important;
}
.article-carousel__icon {
  width: auto !important;
  height: auto !important;
}
.article-carousel-main,
.article-carousel-main__item,
.article-carousel-sub,
.article-carousel-sub__item,
.article-carousel-thumbnail,
.article-carousel-thumbnail__item {
  margin: 0 !important;
}
.article-carousel-main__item {
  height: 0;
  overflow: hidden;
}
.article-carousel-main__item.swiper-slide-active {
  height: auto;
}
.article-carousel-main__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  width: 100%;
  min-height: 350px;
}
.article-carousel-main__img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.article-carousel-sub__item {
  height: 0;
  overflow: hidden;
}
.article-carousel-sub__item.swiper-slide-active {
  height: auto;
}
.article-carousel-sub__content {
  padding-top: 24px;
}
.article-carousel-thumbnail {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  height: calc(100% - 36px);
  overflow-y: scroll;
  scrollbar-width: none;
}
.article-carousel-thumbnail::-webkit-scrollbar {
  display: none;
}
.article-carousel-thumbnail__item.is-active {
  opacity: .2;
}
.article-carousel-thumbnail__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-carousel-thumbnail__img {
  object-fit: contain;
  width: 100%;
}
