@charset "UTF-8";
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333333;
  line-height: 1.7;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
.menu-item,
.p-header__site-title,
.page-title {
  font-family: "Lexend Exa", "M PLUS 1", sans-serif;
}

h2,
h3,
h4,
.c-character-card__title,
.c-session-card__title {
  font-family: "M PLUS 1", sans-serif;
}

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

.site-content {
  padding-top: 70px;
}
@media (max-width: 992px) {
  .site-content {
    padding-top: 100px;
  }
}

.site-main {
  background-color: #A593E0;
}

.l-content-top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-content-top-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

section.js-fade-in-item.l-main-visual.is-show {
  max-width: 300px;
}

.p-recent-by-post-type__list--card-grid {
  display: grid;
  justify-items: center;
  margin-top: 20px;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
  gap: 30px;
}

/* タブレット (～ 1000px) */
@media (max-width: 1000px) {
  .p-recent-by-post-type__list--card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .p-recent-by-post-type__list--card-grid > .p-recent-by-post-type__item:nth-child(n+4) {
    display: none;
  }
}
/* スマホ (～ 650px) */
@media (max-width: 650px) {
  .p-recent-by-post-type__list--card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .p-recent-by-post-type__list--card-grid > .p-recent-by-post-type__item:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 1001px) {
  .p-recent-by-post-type__list--card-grid > .p-recent-by-post-type__item:nth-child(4) {
    display: list-item;
  }
}
@media (min-width: 651px) and (max-width: 1000px) {
  .p-recent-by-post-type__list--card-grid > .p-recent-by-post-type__item:nth-child(3) {
    display: list-item;
  }
}
ul.p-recent-by-post-type__list.p-recent-by-post-type__list--card-grid.p-recent-by-post-type__list--scenario {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  ul.p-recent-by-post-type__list.p-recent-by-post-type__list--card-grid.p-recent-by-post-type__list--scenario {
    grid-template-columns: 1fr;
  }
}

.p-character-detail__character-wrap {
  position: relative;
}

.p-character-detail__character-wrap::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -20%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  -webkit-transform: scale(2);
          transform: scale(2);
  background-image: var(--character-background-image);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-character-detail__character-wrap::before {
    display: none;
  }
}

.p-character-detail__main-image-figure {
  position: relative;
  z-index: 1;
  height: 100%;
}
.p-character-detail__main-image-figure img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-character-detail__name {
  font-size: 3.5em;
  line-height: 1;
  position: relative;
  display: inline;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
}
.p-character-detail__name::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 140px;
  z-index: -1;
  opacity: 0.3;
  border-radius: 50%;
  border: 10px dashed var(--character-main-color, #3b82f6);
  border-top: 10px solid transparent;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
  top: -30px;
  left: -50px;
}
.p-character-detail__name::after {
  content: "";
  display: block;
  width: 50%;
  height: 0.6em;
  position: absolute;
  background-color: var(--character-main-color);
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 992px) {
  .p-character-detail__name {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  .p-character-detail__name {
    font-size: 2em;
  }
  .p-character-detail__name::before {
    width: 100px;
    height: 100px;
    left: 0;
  }
}

.p-character-detail__name-furi {
  font-size: 2em;
  font-family: "Lexend Exa", "M PLUS 1", sans-serif;
}
@media (max-width: 768px) {
  .p-character-detail__name-furi {
    font-size: 1.2em;
  }
}

.p-character-detail__info-block1,
.p-character-detail__info-block2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 24px;
}

section.p-character-detail__main-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  overflow-y: hidden;
  padding-top: 80px;
  min-height: 70vh;
}
@media (max-width: 768px) {
  section.p-character-detail__main-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 500px 1fr;
    padding: 50px 20px;
    gap: 20px;
  }
}

.no-results.not-found {
  text-align: center;
}

.p-character-detail__name-wrap {
  grid-area: 1/1/2/2;
}
@media (max-width: 768px) {
  .p-character-detail__name-wrap {
    grid-area: 1/1/2/2;
  }
}

.p-character-detail__info1-wrap {
  grid-area: 2/1/3/2;
}
@media (max-width: 768px) {
  .p-character-detail__info1-wrap {
    grid-area: 3/1/4/2;
  }
}

.p-character-detail__character-wrap {
  grid-area: 1/2/3/3;
}
@media (max-width: 768px) {
  .p-character-detail__character-wrap {
    grid-area: 2/1/3/2;
  }
}

.site-main-character {
  background-image: repeating-linear-gradient(to bottom, transparent 25px, rgba(0, 0, 0, 0.04) 26px, rgba(0, 0, 0, 0.04) 26px, transparent 27px, transparent 51px, rgba(0, 0, 0, 0.04) 52px, rgba(0, 0, 0, 0.04) 52px, transparent 53px, transparent 77px, rgba(0, 0, 0, 0.04) 78px, rgba(0, 0, 0, 0.04) 78px, transparent 79px, transparent 103px, rgba(0, 0, 0, 0.04) 104px, rgba(0, 0, 0, 0.04) 104px, transparent 105px, transparent 129px, rgba(0, 0, 0, 0.04) 130px, rgba(0, 0, 0, 0.04) 130px), repeating-linear-gradient(to right, transparent 25px, rgba(0, 0, 0, 0.04) 26px, rgba(0, 0, 0, 0.04) 26px, transparent 27px, transparent 51px, rgba(0, 0, 0, 0.04) 52px, rgba(0, 0, 0, 0.04) 52px, transparent 53px, transparent 77px, rgba(0, 0, 0, 0.04) 78px, rgba(0, 0, 0, 0.04) 78px, transparent 79px, transparent 103px, rgba(0, 0, 0, 0.04) 104px, rgba(0, 0, 0, 0.04) 104px, transparent 105px, transparent 129px, rgba(0, 0, 0, 0.04) 130px, rgba(0, 0, 0, 0.04) 130px);
}

.p-character-detail__text {
  margin: 0 0 30px;
  line-height: 2.5;
}

.p-character-detail__details-wrap {
  padding: 30px 0;
}
@media (max-width: 768px) {
  .p-character-detail__details-wrap {
    padding: 0;
  }
}

.p-character-detail__info2-wrap {
  margin: 20px;
}

.p-character-detail__title {
  position: absolute;
  top: 10%;
  right: 10%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 4em;
  opacity: 0.5;
  color: var(--character-main-color);
  font-family: "WDXL Lubrifont JP N", sans-serif;
  border: 2px solid var(--character-main-color);
  display: block;
  padding: 15px 0;
}
@media (max-width: 768px) {
  .p-character-detail__title {
    font-size: 2.5em;
    top: 0;
    right: 80%;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-character-detail__additional-free-data {
  margin: 30px 0;
}

.profile-table {
  background-color: #566270;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  .profile-table {
    width: 100%;
  }
}
.profile-table tbody {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .profile-table tbody {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .profile-table tbody {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .profile-table tbody {
    grid-template-columns: 1fr;
  }
}
.profile-table tr {
  display: grid;
  grid-template-columns: 110px auto;
  justify-items: start;
  gap: 20px;
  padding: 10px;
}
.profile-table th {
  border-left: 3px solid var(--character-main-color);
  padding-left: 10px;
}

.p-character-detail__log-links span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-character-detail__log-links span {
    font-size: 0.8em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-character-detail__gallery-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  gap: 8px;
}

.p-character-detail__gallery-item {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid;
}

.p-character-detail {
  position: relative;
}

.single-character .p-log-detail__back-to-list {
  bottom: 10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

.p-character-illustrator {
  margin-top: 20px;
  font-size: 0.8em;
}

/* --- 画像切り替え機能のためのCSS --- */
/* 画像コンテナ内のすべての画像を絶対配置にして重ねる */
.p-character-detail__main-image-container {
  position: relative;
  height: 100%;
  /* 親要素のサイズに合わせて高さを設定（必要に応じて調整） */
  /* 例: min-height: 500px; */
}

/* 画像 figure 要素を重ねるためのスタイル */
.p-character-detail__main-image-figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  /* JavaScriptで制御するため、初期状態はopacity: 0とし、トランジションを設定 */
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* アクティブな画像のみ opacity を 1 に設定 */
.p-character-detail__main-image-figure.--active {
  opacity: 1;
}

/* 画像を中央に配置する調整 */
.p-character-detail__main-image-figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

/* ボタンエリア */
.p-character-detail__swap-buttons {
  text-align: center;
  position: absolute;
  z-index: 10;
  bottom: 10%;
  right: 0;
}
@media (max-width: 768px) {
  .p-character-detail__swap-buttons {
    bottom: 0;
  }
}

/* 切り替えボタンのスタイル */
.c-swap-button {
  background-color: var(--character-main-color, #333);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  text-decoration: none;
  color: #FFFFFF;
  border: double 10px #FFFFFF;
  border-radius: 50%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
}
.c-swap-button:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 768px) {
  .c-swap-button {
    width: 80px;
    height: 80px;
    font-size: 0.8em;
  }
}

p.p-character-detail__system-name {
  position: absolute;
  font-size: 10em;
  right: 0;
  top: -60px;
  font-family: "WDXL Lubrifont JP N";
  z-index: -1;
  opacity: 0.2;
  color: var(--character-main-color);
}

.c-profile-list__term {
  font-weight: bold;
}

.c-profile-list__description {
  margin-bottom: 16px;
  margin-left: 1em;
}

a.c-link.--external {
  text-decoration: underline;
  color: #A593E0;
}

.entry-title.p-page-content__title {
  color: #fff;
  padding: 90px 0 50px;
  text-align: center;
}

.entry-content.p-page-content__body {
  max-width: 100%;
  padding: 50px 20px;
}

form.wpcf7-form.init {
  max-width: 500px;
  margin: 0 auto;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
}

.p-header {
  background-color: #566270;
  color: #FFFFFF;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-header.is-hidden {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
}
@media (max-width: 992px) {
  .p-header.is-hidden {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .p-header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100px;
    padding: 0;
  }
}

.p-header__navigation {
  height: 100%;
}

.p-header__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  height: 100%;
}
.p-header__menu-list .current-menu-item {
  background-color: #A593E0;
}
.p-header__menu-list .current-menu-item a {
  font-weight: bold;
}
.p-header__menu-list .current-menu-item a:hover {
  color: #FFFFFF;
  -webkit-transition: none;
  transition: none;
}
.p-header__menu-list .current-menu-item a:hover::after {
  left: 50%;
  width: 0;
  -webkit-transition: none;
  transition: none;
}
.p-header__menu-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 8px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-family: "Lexend Exa", "M PLUS 1", sans-serif;
  font-weight: normal;
}
@media (max-width: 768px) {
  .p-header__menu-list a {
    font-size: 0.8em;
  }
}
@media (max-width: 576px) {
  .p-header__menu-list a {
    font-size: 0.6em;
  }
}
.p-header__menu-list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  background-color: #A593E0;
  z-index: -1;
  -webkit-transition: width 0.2s ease-out, left 0.2s ease-out, background-color 0.2s ease;
  transition: width 0.2s ease-out, left 0.2s ease-out, background-color 0.2s ease;
}
.p-header__menu-list a:hover {
  color: #FFFFFF;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header__menu-list a:hover::after {
  left: 0;
  width: 100%;
  background-color: #A593E0;
}
@media (max-width: 768px) {
  .p-header__menu-list a:hover {
    -webkit-transition: none;
    transition: none;
  }
  .p-header__menu-list a:hover::after {
    left: 50%;
    width: 0;
  }
}

@media (max-width: 768px) {
  .menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
}
.menu-item a i {
  display: none;
}
@media (max-width: 768px) {
  .menu-item a i {
    display: block;
    font-size: 1.5em;
  }
}
.menu-item a::before {
  display: none;
}

.p-header__site-title {
  font-size: 2em;
  font-weight: bold;
}

.l-footer__inner {
  background-color: #566270;
  color: #FFFFFF;
}

.l-footer__copy {
  text-align: center;
  padding: 10px 0;
}

.l-footer__detail {
  padding: 50px 50px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .l-footer__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer-disclaimer {
  font-size: 0.6em;
}

.p-author-profile {
  font-size: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.l-footer {
  position: relative;
}

.p-author-profile__site-name {
  font-size: 2em;
}

.c-button.c-button--primary {
  display: block;
  padding: 10px;
  border-radius: 8px;
  margin: 0 auto;
  text-align: center;
  background-color: #FFFFFF;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .c-button.c-button--primary:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-recent-by-post-type__all-link a {
  border: 1px solid;
  padding: 10px 15px;
  text-align: center;
  display: block;
  width: 40%;
  margin: 0 auto;
  min-width: 200px;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-recent-by-post-type__all-link a:hover {
  background-color: #A593E0;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .p-recent-by-post-type__all-link a:hover {
    background-color: inherit;
    color: inherit;
  }
}

.page-links {
  /* 中央寄せにするための設定 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  gap: 8px;
}

/* ページ番号（リンクおよび現在のページ）の共通スタイル */
.post-page-numbers {
  display: block;
  text-decoration: none;
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  font-weight: 500;
  border: 1px solid;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 非アクティブなページ番号（リンク）のデザイン */
a.post-page-numbers {
  color: #848484;
}
a.post-page-numbers:hover {
  color: #333333;
  background-color: #E0E3DA;
}

/* アクティブな現在のページ (current) のデザイン */
span.post-page-numbers.current {
  font-weight: 700;
  color: #FFFFFF;
  cursor: default;
  background-color: #A593E0;
}

.c-update-list__date,
.p-log-detail__date {
  color: #848484;
}

.c-update-list__post-type {
  padding: 1px 5px;
  font-size: 0.7em;
  color: #333333;
  border-radius: 3px;
}

.category-news_character .c-update-list__post-type {
  background-color: #DEEDED;
}

.category-news_summary .c-update-list__post-type {
  background-color: #EDDEDE;
}

.category-news_scenario .c-update-list__post-type {
  background-color: #EDEDDE;
}

.category-news_log .c-update-list__post-type {
  background-color: #DEEDE0;
}

.category-uncategorized .c-update-list__post-type {
  background-color: #E9E9E9;
}

.page-title {
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 50px 50px;
  font-size: 2em;
  font-weight: bold;
}

.p-log-detail__scenario-title {
  font-size: 1.2em;
}

.p-recent-by-post-type__title {
  position: relative;
  line-height: 1;
}
.p-recent-by-post-type__title:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-color: #d7cac8;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  clip-path: polygon(100% 35%, 5% 0, 18% 100%);
}

.c-session-card__title {
  font-size: 1em;
  font-weight: bold;
}

.c-update-list {
  border: 1px solid #333333;
  width: 50%;
}
@media (max-width: 768px) {
  .c-update-list {
    width: 100%;
  }
}

.c-update-list__title {
  background-color: #566270;
  color: #FFFFFF;
  width: 100%;
  padding: 5px 10px;
  font-size: 1em;
  font-weight: normal;
}

.c-update-list__container {
  overflow-y: auto;
  padding: 15px 30px 15px;
  max-height: 250px;
}
.c-update-list__container::-webkit-scrollbar {
  background-color: #566270;
  width: 5px;
}
.c-update-list__container::-webkit-scrollbar-thumb {
  background-color: #A593E0;
}

.c-update-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.p-session-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .p-session-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .p-session-list {
    grid-template-columns: 1fr;
  }
}

.c-session-card {
  padding: 24px;
}

.c-session-card__link {
  display: block;
  padding: 16px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 6px 7px -2px #E0E3DA;
          box-shadow: 0px 6px 7px -2px #E0E3DA;
}
.c-session-card__link:hover img {
  scale: 1.05;
}

.c-session-card__system-tag {
  background-color: #A593E0;
  padding: 1px 10px;
  color: #FFFFFF;
  border-radius: 5px;
  font-size: 0.8em;
}

.c-session-card__date {
  color: #848484;
}

.c-session-card__body {
  padding: 15px 0 0;
}

.c-session-card__image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-session-card__image-wrap .c-session-card__thumbnail-wrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-session-card__image-wrap img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.c-character-card__image-wrap {
  height: 100%;
}
.c-character-card__image-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.c-character-card__link {
  display: block;
  width: 150px;
  height: 300px;
  position: relative;
  padding: 20px;
  overflow: hidden;
}
.c-character-card__link::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  right: 0;
  width: 130px;
  height: 220px;
  background-color: #A593E0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50px 0 0 0;
}
.c-character-card__link:hover .c-character-card__image-wrap img {
  -webkit-filter: none;
          filter: none;
}
.c-character-card__link:hover::before {
  background-color: var(--character-main-color);
}

.c-character-card__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.2em;
}

.c-character-card__system-tag {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.8em;
}

.c-character-card__body {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
}
.c-character-card__body span, .c-character-card__body p {
  background-color: #FFFFFF;
  padding: 10px 0;
  border-radius: 10px 0 0 0;
}

.p-character-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  row-gap: 24px;
}
@media (max-width: 992px) {
  .p-character-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .p-character-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .p-character-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-summary-card__link {
  display: block;
  width: 60%;
  min-width: 300px;
  margin: 0 auto;
  padding: 20px 40px;
  border-bottom: 1px dashed #848484;
}
.c-summary-card__link .c-summary-card__title {
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #A593E0), color-stop(50%, #333333)) 100%;
  background: linear-gradient(to right, #A593E0 50%, #333333 50%) 100%;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200% 100%;
  -webkit-transition: background-position 0.2s ease;
  transition: background-position 0.2s ease;
}
.c-summary-card__link:hover .c-summary-card__title {
  background-position: 0 100%;
}

.c-summary-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.8em;
  color: #848484;
}

.c-summary-card__title {
  position: relative;
  z-index: 2;
}
.c-summary-card__title i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -30px;
  color: #A593E0;
}

.c-scenario-card__link.js-fade-in-item.is-show {
  display: grid;
  grid-template-columns: 40% auto;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.c-scenario-card__title {
  font-weight: bold;
}

.c-scenario-card__link {
  padding: 16px 0;
}

.c-custom-select-wrap {
  position: relative;
  min-width: 200px;
}
.c-custom-select-wrap select {
  display: none;
}
.c-custom-select-wrap.is-open .c-select-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.c-custom-select-wrap.is-open .c-select-dropdown {
  display: block;
}

.c-select-display {
  background-color: #FFFFFF;
  border: 1px solid #848484;
  padding: 8px 30px 8px 15px;
  border-radius: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 40px;
}

.c-select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #848484;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.c-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  background-color: #FFFFFF;
  border: 1px solid #E0E3DA;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 20;
}
.c-select-dropdown li {
  padding: 10px 15px;
  cursor: pointer;
}
.c-select-dropdown li:hover, .c-select-dropdown li.is-selected {
  background-color: #f0f0f0;
  font-weight: bold;
}

.p-archive-content {
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 50px 50px 0 0;
  -webkit-box-shadow: 0px -3px 24px -5px #605288;
          box-shadow: 0px -3px 24px -5px #605288;
  max-width: 1400px;
  margin: 0 auto;
}

.p-archive-summary {
  max-width: 800px;
  margin: 0 auto;
}

.p-filter-form {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 8px;
}
@media (max-width: 576px) {
  .p-filter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-filter-item {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-filter-item label {
  font-size: 0.8em;
  color: #848484;
  white-space: nowrap;
}

.p-log-detail__meta-info, .p-log-detail__other-content {
  padding: 20px;
}
.p-log-detail__pl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-log-detail__date {
  margin-bottom: 20px;
}
.p-log-detail__connection {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-log-detail__connection a {
  background-color: #eee;
  border: 1px solid #848484;
  border-radius: 5px;
  padding: 1px 10px;
  font-size: 0.8em;
}
.p-log-detail__connection_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.p-log-detail__sns-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 20px;
}

.p-recent-by-post-type {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .p-recent-by-post-type {
    padding: 20px;
  }
}
.p-recent-by-post-type__list-wrapper {
  margin-bottom: 80px;
}
.p-recent-by-post-type__card-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding: 20px;
}
.p-recent-by-post-type__card-grid .c-session-card {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80vw;
  max-width: 433px;
}

.p-archive-notes__list {
  font-size: 0.8em;
  list-style: none;
  padding: 0;
  width: 60%;
  min-width: 300px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
}

.p-summary-detail__title {
  margin-bottom: 20px;
  border-bottom: 3px solid #FFFFFF;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .p-summary-detail__title {
    font-size: 1.5em;
  }
}

.p-summary-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 0.85em;
  color: #666;
}

/* 2カラムレイアウトのコンテナ */
.p-summary-detail__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* 左カラム: 目次 (Sidebar) */
.p-summary-detail__toc-sidebar {
  width: 250px; /* 目次の固定幅 */
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 幅を縮めない */
  position: sticky; /* スクロール追従 */
  top: 100px; /* ヘッダーの下あたりから追従開始 */
}

/* 右カラム: 本文 */
.p-summary-detail__main-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 残りのスペースを全て使う */
  min-width: 0; /* フレックスアイテムとしての挙動を改善 */
}

/* 目次ボックスの基本スタイル */
.c-toc-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  background-color: #f9f9f9;
}

.c-toc-box__title {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
  color: #333;
}

/* 目次のリンクスタイル */
#toc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-toc-box__item {
  display: block;
  padding: 4px 0;
  text-decoration: none;
  color: #444;
  font-size: 0.95em;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
  border-radius: 4px;
}

.c-toc-box__item:hover {
  background-color: #eee;
  color: #007bff;
}

/* 見出しレベルによるインデント */
.c-toc-box__item--h2 {
  padding-left: 5px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 5px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-toc-box__item--h2::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #A593E0;
}

.c-toc-box__item--h3 {
  padding-left: 20px; /* h2よりも深くインデント */
  font-size: 0.9em;
  color: #666;
}

/* レスポンシブ対応 (モバイル表示) */
@media (max-width: 768px) {
  .p-summary-detail__content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  /* 目次を本文の上に配置し、追従を解除 */
  .p-summary-detail__toc-sidebar {
    width: 100%;
    position: static;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; /* 本文より上に移動 */
  }
  .p-summary-detail__main-content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-summary-detail__main-content-wrap {
  max-width: 800px;
  width: 100%;
}

.entry-header.p-summary-detail__header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 10px;
}

.site-main-article {
  background-color: #E0E3DA;
}
.site-main-article .entry-content {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0px 20px;
  width: 100%;
  border-radius: 8px;
}
.site-main-article .entry-content p {
  margin-bottom: 1em;
}
.site-main-article h2.wp-block-heading {
  padding: 0.3em;
  margin: 1.5em 0 1em;
  position: relative;
  scroll-margin-top: 100px;
}
.site-main-article h2.wp-block-heading::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  border-radius: 2px;
  background-image: -webkit-gradient(linear, right top, left top, from(#566270), to(#A593E0));
  background-image: linear-gradient(to left, #566270 0%, #A593E0 100%);
}
.site-main-article h3.wp-block-heading {
  border-left: 5px solid #A593E0;
  padding-left: 10px;
  margin: 1em 0;
  scroll-margin-top: 100px;
}

blockquote {
  background-color: #E0E3DA;
  padding: 20px;
  border-radius: 5px;
  color: #848484;
  font-size: 0.8em;
  margin: 1em 0;
}

.wp-block-group {
  margin-bottom: 2em;
}

details {
  margin: 1em 0;
}
details p {
  margin-left: 1em;
}

ul.wp-block-list {
  list-style: none;
}
ul.wp-block-list li {
  position: relative;
  margin-bottom: 0.5em;
}
ul.wp-block-list li:before {
  position: absolute;
  font: var(--fa-font-solid);
  content: "\f00c";
  color: #A593E0;
  top: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
}

/* 目次ボックスと、その下のシナリオ情報ボックスの間隔を空ける */
.p-summary-detail__toc-sidebar .c-toc-box:not(:last-child) {
  margin-bottom: 20px;
}

/* または、シンプルに新しいボックスの上部にマージンを設定 */
.p-scenario-sidebar-info {
  margin-top: 20px;
}

.p-no-results {
  text-align: center;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-ml-10 {
  margin-left: 1rem !important;
}

/* ========================================
 * ふわっと表示アニメーション用のスタイル
 * ======================================== */
.js-fade-in-item {
  /* アニメーション前の初期状態 */
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  /* 💡 ここでカスタムプロパティを使用: JavaScriptから設定される */
  -webkit-transition: opacity 0.8s ease-out var(--animation-delay, 0s), -webkit-transform 0.8s ease-out var(--animation-delay, 0s);
  transition: opacity 0.8s ease-out var(--animation-delay, 0s), -webkit-transform 0.8s ease-out var(--animation-delay, 0s);
  transition: opacity 0.8s ease-out var(--animation-delay, 0s), transform 0.8s ease-out var(--animation-delay, 0s);
  transition: opacity 0.8s ease-out var(--animation-delay, 0s), transform 0.8s ease-out var(--animation-delay, 0s), -webkit-transform 0.8s ease-out var(--animation-delay, 0s);
}

/* 画面内に入ったときに追加されるクラス: is-show */
.js-fade-in-item.is-show {
  /* アニメーション後の状態 */
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.swiper .js-fade-in-item,
.p-recent-by-post-type__list .js-fade-in-item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 50px 50px 0 0;
  -webkit-box-shadow: 0px -3px 24px -5px #605288;
          box-shadow: 0px -3px 24px -5px #605288;
  border: 10px solid #FFFFFF;
}
.entry-content img {
  border-radius: 50px 50px 0 0;
}

.c-post-copyright-addition {
  font-size: 0.9em;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 20px 0 50px 0;
}/*# sourceMappingURL=style.css.map */