@charset "UTF-8";
/* Scss Document */
/* A Modern CSS Reset (2020/11/6) 一部追加・変更 */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
:where(body, h1, h2, h3, h4, h5, h6, p, figure, figcaption, blockquote) {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* from Josh's Custom CSS Reset */
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
:where(img, svg, picture) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Inherit fonts for inputs and buttons */
:where(input, button, textarea, select) {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* 追加 */
table {
  border-collapse: collapse;
}

/* 参考：ざっくりつかむCSS設計 P69*/
:where(ul, ol, li, dl, dd) {
  margin: 0;
  padding: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------------------
  Josh's Custom CSS Reset / EllyLoel/reset.css から追加
--------------------------------*/
/* テキストのオーバーフロー回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* from Josh's Custom CSS Reset */
}

/* 要素のボーダーを削除、背景プロパティのデフォルト値設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

/* textareaのサイズ変更は垂直のみ、ブラウザがサポートしている場合にのみblock */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* 操作可能な要素のカーソルをポインター表示に */
:where(a[href], area, button, label[for], select, summary, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/* ボタンのテキスト選択不可 */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンのカーソルを無効化表示に */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*------ 色 -------*/
/* ラベル色 */
.label-common {
  background-color: #66b0cc;
  border-color: #66b0cc;
  color: #337d99;
}

.label-rem {
  background-color: #5c85d6;
  border-color: #5c85d6;
  color: #3366cc;
}

.label-lindo {
  background-color: #d65c5c;
  border-color: #d65c5c;
  color: #cc3333;
}

.label-urie {
  background-color: #de7c9d;
  border-color: #de7c9d;
  color: #cc3366;
}

.label-mage {
  background-color: #cc9933;
  border-color: #cc9933;
  color: #8f6b24;
}

.label-shiki {
  background-color: #ad71bc;
  border-color: #ad71bc;
  color: #993399;
}

.label-roen,
.label-pome {
  background-color: #999;
  border-color: #999;
  color: #878787;
}

.label-jek {
  background-color: #db6b10;
  border-color: #db6b10;
  color: #db6b10;
}

.label-azuna {
  background-color: #21940a;
  border-color: #21940a;
  color: #21940a;
}

html {
  font-size: 62.5%;
}

/*------ Webフォント読み込み遅延対策 -------*/
/*--------------------------------

      共通設定

--------------------------------*/
:root {
  --padding-LR: 20px;
  --margin-list-LR: 16px;
}
@media screen and (max-width: 600px) {
  :root {
    --padding-LR: 16px;
  }
}

body {
  position: relative;
  font-family: YakuHanJPs, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  body {
    background: url(../../img/bg_b07_20.png) repeat;
    background-color: #e1eef5;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
    /* margin: 0 16px; */
  }
}

/*------ レイアウト用共通設定 -------*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

/*------ リンク -------*/
a {
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #333;
  z-index: 2;
}
a:hover {
  opacity: 0.6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* ページ内リンク位置調整 */
span.anchor {
  position: relative;
  top: -80px;
  /*左の数値を変えると、上下に調整します*/
  display: block;
}

section.anchor {
  padding-top: 80px;
  margin-top: -80px;
}

/*------ ブロック装飾 -------*/
.label dt,
.label dd {
  padding: 4px 8px;
  margin-bottom: 8px;
  margin-right: 40px;
}

.label dt {
  background-color: #b1c7d4;
  color: #fff;
  text-decoration: none;
}

.hr {
  margin-bottom: 80px;
}

/*--------------------------------

      共通設定-装飾

--------------------------------*/
/*--------------------------------

      ナビ

--------------------------------*/
.l-nav {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/*--------------------------------

      ヘッダー

--------------------------------*/
.l-header {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 140px;
  position: relative;
  padding-bottom: 32px;
  /*------ ヘッダー見出し共通 -------*/
  /*------ ヘッダー説明文 -------*/
}
@media screen and (max-width: 600px) {
  .l-header {
    width: 100%;
  }
}
.l-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100px;
  -webkit-mask-image: url(../../img/bg-header.png);
          mask-image: url(../../img/bg-header.png);
  background-color: #66b0cc;
  -webkit-mask-size: 36px;
          mask-size: 36px;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}
.l-header--index {
  height: 200px;
}
@media screen and (max-width: 600px) {
  .l-header--index {
    height: 140px;
  }
}
.l-header--index::after {
  background-color: #899bb3;
}
.l-header__titleWrapper {
  background-color: #66b0cc;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__titleWrapper--index {
  background-color: #899bb3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .l-header__titleWrapper--index {
    padding-top: 50px;
  }
}
.l-header__title {
  font-family: "Merriweather", "Kaisei Opti", system-ui;
  font-weight: 700;
  font-style: normal;
  font-size: 2.6rem;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .l-header__title {
    font-size: 2rem;
  }
}
.l-header__title--index {
  font-size: 3rem;
}
@media screen and (max-width: 600px) {
  .l-header__title--index {
    font-size: 2.4rem;
  }
}
.l-header__sub {
  font-size: 1.6rem;
}
.l-header__catch {
  margin-top: 5px;
  color: #fff;
  padding: 0;
  font-size: 1.2rem;
}

/*---------------------------------

メインコンテンツ

---------------------------------*/
.l-main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px var(--padding-LR) 20px;
}
@media screen and (max-width: 600px) {
  .l-main {
    width: 100%;
  }
}
.l-main--paddingL {
  --padding-LR: 40px;
}
@media screen and (max-width: 600px) {
  .l-main--paddingL {
    --padding-LR: 20px;
  }
}
.game .l-main {
  padding-top: 0;
}

section {
  margin-bottom: 80px;
}

/* p.about2+.anchor {
margin-top: 60px;
} */
/*------ テーブル -------*/
table {
  border-bottom: 1px solid #ccc;
  border-collapse: collapse;
}

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

th,
td {
  padding: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
}

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

@media screen and (max-width: 600px) {
  th,
  td,
  .offline_right p {
    font-size: 1.2rem;
  }
}
/*--------------------------------
  フッター
--------------------------------*/
footer {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 20px;
  position: relative;
  text-align: center;
  height: 76px;
  border-top: 1px dashed #ccc;
}
@media screen and (max-width: 600px) {
  footer {
    width: 100%;
  }
}
footer small {
  padding: 0 10px 0 15px;
  display: inline-block;
}
footer small :last-child {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 600px) {
  footer {
    padding: 10px 0;
  }
  footer small {
    padding: 5px;
    display: block;
  }
  footer small :last-child {
    border-left-width: 0;
  }
}

/*------ トップに戻るボタン -------*/
.toTop {
  position: fixed;
  width: 48px;
  height: 48px;
  background: #d9e9e5;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 999;
  border: 2px solid #899bb3;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .toTop {
    right: 5px;
    bottom: 5px;
    background: transparent;
    border: none;
  }
}
.toTop a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.toTop .arrow {
  border-color: #899bb3;
  border-style: solid;
  border-width: 3px 0 0 3px;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 16px;
  margin-top: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.toTop:hover {
  background: #899bb3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.toTop:hover .arrow {
  border-color: #d9e9e5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*------ テキスト -------*/
p {
  margin: 32px 0;
  /* line-height: 2; */
}

/* ルビ */
[data-ruby] {
  position: relative;
  text-align: center;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.5em;
  left: -3em;
  right: -3em;
  margin: auto;
  font-size: 0.5em;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  [data-ruby]::before {
    top: -1.8em;
  }
}

/*------ テキスト装飾 -------*/
em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #fddebb));
  background: linear-gradient(transparent 65%, #fddebb 65%);
  font-weight: bold;
  text-decoration: none;
  font-style: normal;
}
.about em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #ffdb4f));
  background: linear-gradient(transparent 65%, #ffdb4f 65%);
}
em em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #ffdb4f));
  background: linear-gradient(transparent 65%, #ffdb4f 65%);
  font-size: 2rem;
}

.for-switch {
  font-weight: bold;
  font-size: 2.7rem;
  color: #fc4d50;
}

.sup {
  font-size: 1.2rem;
  color: #999;
}

/* 取り消し線 */
.line-through {
  text-decoration: line-through;
}

.acd-check,
#acd-check-all {
  display: none;
}

.c-btn-displayAll,
.c-btn-display {
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
  display: block;
  border-style: solid;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  z-index: 1;
  text-align: center;
}
.c-btn-displayAll:hover,
.c-btn-display:hover {
  opacity: 0.5;
}
.c-btn-displayAll::after,
.c-btn-display::after {
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  font-weight: 900;
  font-size: 12px;
  margin-left: 3px;
  display: inline-block;
}

.c-btn-display {
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 0;
}
.c-btn-display--koryaku {
  margin-top: 5px;
}

.c-btn-displayAll {
  background-color: transparent;
  border-width: 2px;
  padding: 8px;
  width: 60%;
  max-width: 240px;
  font-size: 1.4rem;
  margin: 15px auto;
}

.koryaku-personal .col-game-chapter {
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-btn-display--koryaku {
    position: absolute;
    right: 0;
    bottom: -1px;
    display: inline-block;
    margin-top: 0px;
    padding: 2px 6px 2px 18px;
    border-radius: 10px 10px 0 0;
    border-bottom-width: 0px;
    letter-spacing: 0.2em;
    background-color: #db6b10;
    border-color: #db6b10;
  }
}
/* フォームボタン装飾 */
input {
  border: none;
  border: 1px solid #b1c7d4;
}

input[type=submit] {
  cursor: pointer;
}

.btn {
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
  background-color: #b1c7d4;
  border: 1px solid #b1c7d4;
  margin: 16px 0;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
}
.btn:hover {
  background: #d9e9e5;
  color: #333;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a.btn {
  padding: 4px 8px;
}

.c-icon-before {
  margin-right: 0.2em;
}

.c-icon-after {
  margin-left: 0.2em;
}

.before-icon::before {
  display: inline-block;
  margin-right: 0.2em;
  color: currentColor;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.after-icon::after {
  display: inline-block;
  margin-left: 0.2em;
  color: currentColor;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* スプレッドシートアイコン */
.spreadsheet:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0ce";
  font-weight: 900;
  margin-left: 5px;
  text-decoration: none;
  display: inline-block;
}

.after-icon--photo::after {
  content: "\f030";
}

.before-icon--home::before {
  content: "\f015";
}

.after-icon--home::after {
  content: "\f015";
}

.before-icon--caretD::before {
  content: "\f0d7";
}

.after-icon--caretD::after {
  content: "\f0d7";
}

.before-icon--caretR::before {
  margin-left: 0.2em;
  margin-right: 0.4em;
  content: "\f0da";
}

.after-icon--caretR::after {
  content: "\f0da";
}

.before-icon--extLink::before {
  content: "\f08e";
}

.after-icon--extLink {
  margin-left: 0.2em;
}
.after-icon--extLink::after {
  margin-left: 0.2em;
  margin-right: 0.4em;
  content: "\f08e";
}

.before-icon--pdf::before {
  content: "\f1c1";
}

.before-icon--twitter::before {
  font-family: "Font Awesome 6 Brands";
  content: "\e61b";
}

.after-icon--twitter::after {
  font-family: "Font Awesome 6 Brands";
  margin-left: 0.2em;
  content: "\e61b";
}

.c-label-new {
  display: inline-block;
  margin-left: 6px;
  font-size: 1.4rem;
  -ms-flex-item-align: center;
      align-self: center;
  color: #c33;
}
.c-label-new::after {
  display: inline-block;
  content: "New!";
  font-size: 1.4rem;
  color: #c33;
  margin-left: 3px;
  margin-bottom: 3px;
}

/*------ 箇条書き -------*/
.c-list-bullet {
  margin-top: 8px;
  margin-bottom: 24px;
}
.c-list-bullet > *:last-child {
  margin-bottom: 0;
}
.c-list-bullet > li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.4em;
}
.c-list-bullet > li::before {
  content: "";
  position: absolute;
  top: calc(0.5em + 2px);
  left: 0.4em;
  display: block;
  width: 5px;
  height: 5px;
  line-height: 1;
  background-color: currentColor;
  border-radius: 100%;
}
.c-list-bullet span {
  color: #88a;
}

.list-bold {
  padding: 0;
  font-weight: bold;
}

/*------ 注釈 -------*/
.caution li {
  font-size: 1.2rem;
  color: #999;
  text-indent: -1em;
  margin: 1em;
}
.caution li::before {
  content: "※";
}

.c-text-note {
  color: #999;
  font-size: 0.85em;
}

.c-text-letterSpacing--narrow {
  letter-spacing: -0.07em;
}

/*------ 見出し基本設定 -------*/
h3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 1.6rem;
  }
}

/*------ 大見出し装飾 -------*/
/*--------------------------------
      ゲーム攻略ページ見出し共通
--------------------------------*/
.bl-section__title {
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 2rem;
  background-color: transparent;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .bl-section__title {
    font-size: 1.8rem;
  }
}
.bl-section__title::before, .bl-section__title::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  margin: 0 1rem 0.2rem 0.6rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.8rem;
  color: inherit;
}
.bl-section__title--common {
  color: #337d99;
}
.bl-section__title--common::before, .bl-section__title--common::after {
  color: inherit;
  content: "\f004";
}
.bl-section__title--rem::before, .bl-section__title--rem::after {
  content: "\f521";
  /* content: url(http://takatonbi.xii.jp/img_dwd/icon_rem.svg); */
}
.bl-section__title--lindo::before, .bl-section__title--lindo::after {
  content: "";
  width: 18px;
  background-color: #cc3333;
  -webkit-mask: url("../../img/icon/icon_lindo.svg");
  mask: url("../../img/icon/icon_lindo.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}
.bl-section__title--urie::before, .bl-section__title--urie::after {
  content: "";
  width: 20px;
  background-color: #cc3366;
  -webkit-mask: url("../../img/icon/icon_urie.svg");
  mask: url("../../img/icon/icon_urie.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}
.bl-section__title--mage::before, .bl-section__title--mage::after {
  content: "\f0e7";
  color: #cc9933;
}
.bl-section__title--shiki::before, .bl-section__title--shiki::after {
  content: "\f52d";
  color: #993399;
}
.bl-section__title--roen::before, .bl-section__title--roen::after {
  content: "\f1b0";
  color: #878787;
}

.bl-subsection__title {
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  margin: 0px 0 24px;
  color: #44617b;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../../img/icon/icon_devil.svg") no-repeat left calc(var(--padding-LR) - var(--padding-LR) / 2) center;
  padding: 10px 0 10px calc(15px + var(--padding-LR));
  border-width: 4px 0;
  border-style: solid;
  border-color: #b2cbe4;
  margin-left: calc(var(--padding-LR) * -1);
  margin-right: calc(var(--padding-LR) * -1);
}
@media screen and (max-width: 600px) {
  .bl-subsection__title {
    background-size: 24px 24px;
    background-position-x: calc(var(--padding-LR));
    padding-left: calc(26px + var(--padding-LR));
  }
}

/*------ 小見出し2装飾 -------*/
h4::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  margin: 0 0.6rem;
  content: "\f0e7";
  color: #fcc800;
  font-size: 1.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
}

/* 見出し＋更新 */
h4.new:after {
  content: "new!";
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  padding: 3px 5px;
  background-color: #719bad;
  border-radius: 10px;
  margin-left: 5px;
  vertical-align: top;
}

/*--------------------------------

      メニュー

--------------------------------*/
/*------ メニュー共通 -------*/
.bl-menu {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .bl-menu {
    width: 100%;
  }
}
.bl-menu li {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl-menu li:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl-menu a {
  text-decoration: none;
  opacity: 1;
  display: inline-block;
}

/*------ ゲーム攻略ページメニュー共通 -------*/
.bl-menuGame {
  margin-bottom: 32px;
  padding-top: 20px;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: #8cc4d9;
  font-size: 1.6rem;
}
.bl-menuGame__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl-menuGame__item {
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
  min-width: 5.2em;
}
.bl-menuGame__item > * {
  margin-bottom: -2px;
  border-radius: 20px 20px 0 0;
  display: inline-block;
  padding: 6px 12px 5px;
  /* text-align: center; */
}
@media screen and (max-width: 768px) {
  .bl-menuGame__item > * {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .bl-menuGame__item > * {
    width: 100%;
    text-align: center;
  }
}
.bl-menuGame__item > *::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 3px;
  display: inline-block;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.bl-menuGame__item > a {
  color: #669;
}
.bl-menuGame__item > a:hover {
  background-color: #66b0cc;
  color: #fff;
}
.bl-menuGame__item--current > span {
  color: #fff;
  background-color: #ed6d1f;
}

@media screen and (max-width: 768px) {
  .bl-menuGame__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding-bottom: 10px;
    gap: 5px 5px;
  }
  .bl-menuGame__item {
    width: 100%;
  }
  .bl-menuGame__item > a,
  .bl-menuGame__item > span {
    padding: 5px 3px 3px;
    text-align: center;
  }
  .bl-menuGame__item > a::before,
  .bl-menuGame__item > span::before {
    display: none;
  }
  .bl-menuGame--human-or-devil li:nth-child(5) {
    grid-column: 2;
  }
}
/*------ パンくずリスト -------*/
.bl-pankuzu {
  height: 60px;
  font-size: 1.2rem;
  position: relative;
  background-color: #66b0cc;
}
@media screen and (max-width: 600px) {
  .bl-pankuzu {
    padding-top: 10px;
    background-color: #b3d8e6;
    height: auto;
  }
}
.bl-pankuzu__list {
  --margin-list-LR: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px var(--padding-LR);
  background-color: #b3d8e6;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .bl-pankuzu__list {
    position: relative;
    padding-bottom: 10px;
  }
}
.bl-pankuzu__list li {
  padding: 10px 0;
  margin-right: 5px;
}
@media screen and (max-width: 600px) {
  .bl-pankuzu__list li {
    padding: 5px 0;
  }
}
.bl-pankuzu__list li a {
  color: #1a3f4d;
}
.bl-pankuzu__list li:not(:first-child) {
  margin-left: var(--margin-list-LR);
}
.bl-pankuzu__list li:not(:first-child)::before {
  content: ">";
  color: #337d99;
  margin-right: 5px;
}
.bl-pankuzu__item--current {
  font-weight: bold;
  color: #043c78;
}

/*------ トップページ目次 -------*/
.bl-menuIndex {
  padding-top: 32px;
  margin: 32px 0;
  border-top: 1px dashed #accfd2;
  font-size: 1.6rem;
  /* 大見出し */
  /* 小見出し */
}
@media screen and (max-width: 768px) {
  .bl-menuIndex a {
    text-decoration: underline;
  }
}
.bl-menuIndex a:hover {
  background-color: transparent;
  text-decoration: underline;
}
.bl-menuIndex__list {
  padding-left: 10px;
}
.bl-menuIndex__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.bl-menuIndex__item > a {
  color: #043c78;
  display: inline;
  padding: 0;
}
.bl-menuIndex__item > a:hover {
  opacity: 0.7;
}
.bl-menuIndex__item--noLink {
  color: #043c78;
  display: inline;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .bl-menuIndex__item {
    font-size: 1.4rem;
  }
}
.bl-menuIndex__item:not(:first-child) {
  margin-top: 20px;
}
.bl-menuIndex__item::before {
  font-family: "Font Awesome 6 Free";
  color: #043c78;
  content: "\f105";
  font-weight: 900;
  margin-right: 3px;
  display: inline-block;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.bl-menuIndex__listInner {
  margin: 10px 0;
  padding-left: 0px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: block;
}
.bl-menuIndex__itemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bl-menuIndex__itemInner {
    font-size: 1.4rem;
  }
}
.bl-menuIndex__itemInner:not(:first-child) {
  margin-top: 8px;
}
.bl-menuIndex__itemInner::before {
  content: "-";
  font-weight: 900;
  margin-right: 5px;
  text-decoration: none;
  display: inline-block;
  color: #668;
}
.bl-menuIndex__itemInner a {
  color: #668;
  padding-left: 0;
  padding-right: 0;
  width: auto;
}
.bl-menuIndex__itemInner a:hover {
  color: #ed6d1f;
  text-decoration: underline;
}

/*********************************

      キャラツイトピックまとめ

*********************************/
/*--------------------------------
      ナビゲーション
--------------------------------*/
.bl-menuTwitter {
  /* border-radius: 0 0 10px 10px; */
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: rgb(228, 244, 255);
}
.bl-menuTwitter__list, .bl-menuTwitter__listInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl-menuTwitter__item {
  border-radius: 0px;
  font-family: "Josefin Sans", sans-serif;
  /* font-family: Arial, Helvetica, sans-serif; */
}
.bl-menuTwitter__item--year:first-child {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .bl-menuTwitter__item--year:first-child {
    width: 100%;
  }
}
.bl-menuTwitter__item--year a {
  color: #043c78;
  padding: 10px 12px;
  margin: 0;
}
.bl-menuTwitter__item--year a:hover {
  color: #fff;
  background: #4682b4;
}
.bl-menuTwitter__item--month a {
  color: #667;
  width: 40px;
  padding: 10px 8px;
  text-align: center;
}
.bl-menuTwitter__item--month a:hover {
  background: #999;
}

/*--------------------------------
      見出し-日付
--------------------------------*/
/*------ 月 -------*/
.bl-tweetMonth {
  position: relative;
}
.bl-tweetMonth__HL {
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .bl-tweetMonth__HL {
    font-size: 18px;
  }
}
.bl-tweetMonth__HL a {
  text-decoration: none;
  color: #44617b;
  /* margin-top: 2px; */
  /* margin-bottom: -2px; */
  /* font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; */
  /* font-family: dnp-shuei-mgothic-std, sans-serif; */
}
.bl-tweetMonth__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl-tweetMonth__inner > * {
  line-height: 1.5;
}

/*------ 日 -------*/
.bl-tweetDate {
  font-weight: bold;
  font-size: 16px;
  width: 8.5em;
  margin-bottom: 12px;
}
.bl-tweetDate--Oct2020 {
  width: auto;
}
.bl-tweetDate a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0px;
}
.bl-tweetDate a::after {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  font-size: 0.85em;
  font-weight: 900;
  margin-left: 0.142em;
  color: currentColor;
  margin-left: 0.2em;
  text-decoration: none;
}
.bl-tweetDate .no-tweet {
  opacity: 0.75;
}

/* 曜日文字色 */
#a-Jul2015 .bl-tweetDate:nth-of-type(7n-4) *,
#a-Aug2015 .bl-tweetDate:nth-of-type(7n-5) *,
#a-Sep2015 .bl-tweetDate:nth-of-type(7n-1) *,
#a-Oct2015 .bl-tweetDate:nth-of-type(7n-3) *,
#a-Nov2015 .bl-tweetDate:nth-of-type(7n-6) *,
#a-Dec2015 .bl-tweetDate:nth-of-type(7n-1) * {
  color: #cc3300;
}

#a-Jul2015 .bl-tweetDate:nth-of-type(7n-5) *,
#a-Aug2015 .bl-tweetDate:nth-of-type(7n-6) *,
#a-Sep2015 .bl-tweetDate:nth-of-type(7n-2) *,
#a-Oct2015 .bl-tweetDate:nth-of-type(7n-4) *,
#a-Nov2015 .bl-tweetDate:nth-of-type(7n) *,
#a-Dec2015 .bl-tweetDate:nth-of-type(7n-2) * {
  color: #3366cc;
}

.bl-tweetEvent {
  margin: 0 0 12px 5px;
  font-weight: bold;
  font-size: 12px;
  color: #44617b;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.bl-tweetEvent__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.bl-tweetEvent__item {
  position: relative;
  padding: 2px 8px;
  border: 2px solid currentColor;
  border-radius: 5px;
}
.bl-tweetEvent__item--real {
  color: #ed6d1f;
}
.bl-tweetEvent__item--noTweet {
  color: #fff;
  background-color: #999;
  border-color: #999;
}

/*--------------------------------
      トピック
--------------------------------*/
.bl-tweetTopic {
  /*------ トピック配置 -------*/
  /*------ トピック見出し -------*/
  /*------ トピックラベル部分 -------*/
}
.bl-tweetTopic__wrapper {
  width: 100%;
  margin-bottom: 12px;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.bl-tweetTopic__list {
  margin: 0;
  padding-left: 32px;
  list-style: none;
  /* max-width: 600px; */
}
.bl-tweetTopic__list > li:not(.bl-tweetNote) {
  --topic-lh: 1.5;
  margin-top: 12px;
  line-height: var(--topic-lh);
  display: grid;
  grid-template-columns: 12px [topic] auto [border] 1fr [label] auto;
  grid-template-rows: 1fr;
  position: relative;
}
.bl-tweetTopic__list > li:not(.bl-tweetNote):first-child {
  margin-top: 0;
}
.bl-tweetTopic__list > li:not(.bl-tweetNote)::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 3px;
  height: 3px;
  background: #666;
  border-radius: 50%;
  align-self: center;
  /* position: absolute; */
}
.bl-tweetTopic__list > li:not(.bl-tweetNote)::after {
  content: "";
  display: block;
  grid-column: 3/4;
  grid-row: 1/2;
  align-self: center;
  justify-self: center;
  width: calc(100% - 10px);
  border-top: 1px dashed #ccc;
  position: absolute;
}
.bl-tweetTopic__list > li:last-child {
  margin-bottom: 24px;
}
.bl-tweetTopic__item {
  grid-column: topic;
  justify-self: start;
  /* display: inline; */
  display: inline-block;
  vertical-align: middle;
  color: #444;
  font-size: 14px;
}
.bl-tweetTopic__item a {
  text-decoration: none;
  border-bottom: 1px dashed #444;
  padding-bottom: 0px;
}
.bl-tweetTopic__labelWrapper {
  grid-column: label;
  justify-self: end;
  /* margin-left: 10px; */
  display: block;
  align-self: center;
  margin-top: -3px;
}
.bl-tweetTopic__labelWrapper span {
  display: inline-block;
  font-size: 1rem;
  width: 5rem;
  text-align: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  font-weight: bold;
  padding: 0px 0px 1px;
  margin: 0px;
  border-radius: 0.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  line-height: 1.6;
  /* リプライ以外の場合ラベル白文字 */
  /* リプライの場合ラベル白抜き */
}
.bl-tweetTopic__labelWrapper span:not(.res) {
  color: #ffffff;
}
.bl-tweetTopic__labelWrapper span.res {
  position: relative;
  background-color: #fff;
  border-radius: 1.5em 0.4rem 0.4rem 0;
  padding: 0 0px 0 2px;
}

/*------ トピック補足 -------*/
.bl-tweetNote__list {
  grid-column: 2/-1;
}
.bl-tweetNote__list li {
  color: #779;
  font-size: 1.2rem;
  margin-top: 6px;
  vertical-align: middle;
  padding-left: calc(1em + 16px);
  text-indent: -1em;
}
@media screen and (max-width: 600px) {
  .bl-tweetNote__list li {
    padding-left: 1em;
  }
}
.bl-tweetNote__list li::before {
  content: "";
  margin-right: 5px;
  margin-top: -2px;
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*------ トピック開閉ボタン -------*/
.c-btn-display--tweet {
  position: absolute;
  top: 96px;
  right: 0;
  width: 56px;
  height: 28px;
  border-radius: 9999px;
  background-color: #dddddd;
  cursor: pointer;
}
.c-btn-display--tweet::before {
  content: "詳細表示";
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: -4.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6em;
  padding-top: 2px;
  font-family: YakuHanRPs, "Nunito", "Kosugi Maru", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #4682b4;
}
.c-btn-display--tweet:has(:focus-visible) {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
.c-btn-display--tweet::after {
  content: "";
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 50%;
  left: 2px;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: none;
  background-color: #ffffff;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  cursor: pointer;
}

.acd-check:checked + .c-btn-display--tweet {
  background-color: #4682b4;
}
.acd-check:checked + .c-btn-display--tweet::after {
  left: calc(100% - 26px);
}

/* チェック時詳細表示 */
/* #acd-check-all:checked+.acd-label-all~.month-wrapper .topic-wrapper, */
.acd-check:checked + .acd-label--tweet ~ .bl-tweetMonth__inner .bl-tweetTopic__wrapper {
  height: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease-in 0ms;
  transition: opacity 0.3s ease-in 0ms;
}

/*--------------------------------

    キャラツイトピックまとめレスポンシブ

--------------------------------*/
@media screen and (max-width: 768px) {
  .bl-tweetMonth__inner {
    padding-left: 0px;
  }
  .bl-tweetTopic__Wrapper {
    margin-bottom: 40px;
  }
  .bl-tweetTopic__list {
    padding-left: 4px;
  }
  .bl-tweetTopic__item {
    margin-right: 4px;
  }
  .bl-tweetEvent {
    font-size: 14px;
    /* margin-top: 10px; */
  }
}
/*------ トピックモバイル配置 -------*/
@media screen and (max-width: 600px) {
  .bl-tweetDate {
    font-size: 1.4rem;
  }
  .bl-tweetEvent {
    font-size: 1.2rem;
  }
  .bl-tweetTopic__wrapper:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .bl-tweetTopic__list > li:not(.bl-tweetNote) {
    position: relative;
    display: grid;
    grid-template-columns: 12px auto;
    grid-template-rows: auto auto;
    margin-left: 6px;
    /* flex-basis: calc(100% - 20px); */
    /* flex-wrap: wrap; */
  }
  .bl-tweetTopic__list > li:not(.bl-tweetNote)::before {
    display: block;
    grid-column: 1/2;
    grid-row: 1/2;
    align-self: start;
    margin-top: calc(1em * var(--topic-lh) / 2 - 1px);
  }
  .bl-tweetTopic__list > li:not(.bl-tweetNote)::after {
    display: none;
    border: none;
    /* position: relative;
    width: 0; */
  }
  .bl-tweetTopic__item {
    display: inline-block;
    grid-column: 2/-1;
    grid-row: 1/2;
    font-size: 1.2rem;
  }
  .bl-tweetTopic__labelWrapper {
    display: block;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 100%;
    grid-column: 2/-1;
    grid-row: 2/-1;
    margin-top: 2px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}
/*********************************

      特典CD・特典小冊子まとめ

*********************************/
main.cdss {
  width: 1312px;
}

/*Google Chrome、Safariへの対応*/
.table-wrapper::-webkit-scrollbar {
  /* -webkit-appearance: none; */
  height: 10px;
  width: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
  background-color: #eee;
}

.table-wrapper::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.4);
  /* -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .4); */
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
  /* transition: 1s; */
}

.table-contents {
  /* width: auto; */
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0px;
  /* border: 1px solid #666; */
  /* white-space: nowrap; */
  border-bottom-color: #666;
}

.table-contents th,
.table-contents td {
  font-size: 12px;
  border-top: 1px solid #ccc;
}

tr:nth-child(2) > * {
  border-top: none;
}

/* 列見出し */
.th-col {
  left: 0;
  position: sticky;
  background: rgb(255, 255, 238);
  z-index: 2;
}

/* 行見出し */
.table-cdss .th-row1 {
  position: sticky;
  top: 0;
  /* background: #fff; */
  text-align: center;
  border-top: 2px solid #666;
  border-bottom: 2px solid #666;
  z-index: 1;
}

/* チェックボックス列 */
.table-cdss .th-col1 {
  position: sticky;
  left: 0;
  background: #f7d976;
  color: #000;
}

/* タイトル列 */
.table-cdss .th-col2 {
  position: sticky;
  left: 40px;
  border-right: 1px dotted #ccc;
  padding: 0;
}

/* 左上固定表示 */
.table-cdss .th-check,
.table-cdss .th-title {
  z-index: 3;
}

/* チェック欄 */
.table-cdss .th-col1 {
  width: 40px;
  min-width: 40px;
}

/* タイトル */
.table-cdss .th-col2 {
  width: 24em;
  min-width: 20em;
  /* width: calc(32em + 8px * 2);
  min-width: calc(32em + 8px * 2); */
}

.check-label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  cursor: pointer;
}

/* 対象 */
.table-cdss td:nth-of-type(1) {
  width: 10em;
  min-width: 10em;
}

/* 発売日 */
.table-cdss td:nth-of-type(2) {
  width: 8em;
  min-width: 8em;
}

/* 条件 */
.table-cdss td:nth-of-type(3) {
  width: 8em;
  min-width: 8em;
}

/* 店舗 */
.table-cdss td:nth-of-type(4) {
  width: 13em;
  min-width: 13em;
}

.shop-note {
  display: block;
  color: #999;
  font-size: 11px;
  text-indent: -1em;
  padding-left: 1em;
}

.shop-note::before {
  content: "※";
  color: #999;
  font-size: 11px;
}

/* キャラ */
.table-cdss td:nth-of-type(5) {
  width: 128px;
  min-width: 128px;
}

.table-cdss .topic-label {
  display: inline-block;
  width: calc(4em + 8px);
}

.table-cdss .topic-label * {
  width: 100%;
  text-align: center;
}

.table-cdss .td-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 5px;
}

/* あらすじ */
.table-cdss td:nth-of-type(6) {
  width: 30em;
  min-width: 30em;
}

/*********************************

      ゲーム攻略共通

*********************************/
/*--------------------------------
      ゲームテキスト共通設定
--------------------------------*/
/* セリフインデント */
.game-word {
  /* grid-template-columns: 3.7em auto; */
  margin: 0;
  line-height: 1.6;
}

.word-rem,
.word-shiki,
.word-roen1 {
  text-indent: -2.7em;
  padding-left: 2.7em;
}

.word-lindo,
.word-urie,
.word-mage,
.word-ritsuka {
  text-indent: -3.7em;
  padding-left: 3.7em;
}

.word-roen2 {
  text-indent: -4.7em;
  padding-left: 4.7em;
}

.word-sub5 {
  text-indent: -5.7em;
  padding-left: 5.7em;
}

.word-rem--4em,
.word-shiki--4em {
  padding-left: 3.7em;
}

.word-ritsuka--5em {
  padding-left: 4.7em;
}

.word-ritsuka--6em {
  padding-left: 5.7em;
}

/*--------------------------------
      ゲーム攻略ページ注意書きリスト共通
--------------------------------*/
.p-game-note {
  max-width: 750px;
  margin: 0 auto 60px;
}
.p-game-note__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-game-note__title {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-game-note__title {
    font-size: 1.4rem;
  }
}
.p-game-note__title:first-child {
  margin-top: 0px;
}
.p-game-note__title:not(:first-child) {
  margin-top: 3em;
}
.p-game-note__list {
  font-size: 1.4rem;
}

/*------ 表設定共通 -------*/
/*------ 表部分 -------*/
.table-wrapper {
  width: auto;
}

/* 行見出し */
.table-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-style: solid;
  border-width: 2px 0;
  text-align: center;
  font-weight: bold;
  z-index: 2;
}

/* 各セル共通設定 */
:root {
  --cell-padding: 8px;
  --anchor-padding: 80px;
}

.table-header *[class*=col-],
.table-contents *[class*=col-] {
  padding: var(--cell-padding);
  line-height: 1.6;
}

.table-contents > * {
  width: 100%;
}

/* 幕数 */
.game .col-game-chapter {
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .game .col-game-chapter {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .game .col-game-chapter {
    font-size: 1.4rem;
  }
}

/*------ ページ内リンク位置調整 -------*/
.game .table-wrapper .anchor {
  padding-top: calc(var(--anchor-padding) + var(--cell-padding));
  margin-top: calc(var(--anchor-padding) * -1);
}

/*********************************

ヒトかアクマか選択肢まとめ

*********************************/
input {
  accent-color: #669;
}

/*------ 表部分 -------*/
.human-or-devil .table-wrapper {
  width: auto;
  font-size: 12px;
}

/*------ ヒトアクマグリッドレイアウト -------*/
/* 列見出し配置 */
.human-or-devil .table-header {
  display: grid;
  grid-template-columns: 4em auto 26em 180px 32px;
}

/* 表本体配置 */
.human-or-devil .table-contents {
  display: grid;
  grid-template-columns: 4em auto calc(30em + 180px + 32px);
  margin: 0;
}

.human-or-devil .row-select-wrapper {
  display: grid;
  grid-template-columns: 26em calc(4em + 180px + 32px);
  margin: 0;
}

.human-or-devil .row-select-wrapper dt {
  grid-row: span 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.human-or-devil .row-select-wrapper dd label {
  display: grid;
  grid-template-columns: 4em 180px 32px;
}

.human-or-devil .common-root dl {
  grid-template-rows: repeat(8, auto);
}

.human-or-devil .personal-root dl {
  grid-template-rows: repeat(4, auto);
}

.col-select-question {
  grid-row: span 2;
}

/*------ ヒトアクマ各セル設定 -------*/
/* 幕数 */
.human-or-devil .col-game-chapter {
  padding-left: 0;
  padding-right: 0;
}

/* 質問 */
.human-or-devil .col-select-question {
  padding-left: 4px;
  /* padding-left: calc(3em + 8px); */
}

/*選択肢*/
.human-or-devil .row-select-human .row-check:hover {
  background-color: #fffdec;
}

.human-or-devil .row-select-devil .row-check:hover {
  background-color: #fef0ff;
}

.row-check > span {
  display: inline-block;
}

.row-select-wrapper dd > * {
  min-height: 36px;
}

.human-or-devil .col-select-label {
  height: 36px;
  width: 4em;
  font-weight: bold;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding-left: 4px;
  padding-right: 0;
}

.col-select-answer {
  font-weight: bold;
  padding-right: 0;
  /* white-space: nowrap; */
}

.selection-inner {
  display: inline-block;
  text-indent: -14px;
  padding-left: 14px;
}
.selection-inner::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0da";
  display: inline-block;
  text-indent: 0;
  padding-right: 8px;
  line-height: 1.6;
  width: 14px;
}

/* ヒト */
.row-select-human {
  color: #b39200;
}

/* アクマ */
.row-select-devil {
  color: #884898;
}

/* チェックボックス列 */
.table-header i.fa-check {
  display: block;
  height: 36px;
  line-height: 36px;
}

.human-or-devil .col-check {
  width: 32px;
  min-width: 32px;
  text-align: center;
  padding: 0;
}

.human-or-devil .table-contents .row-check {
  cursor: pointer;
}

.human-or-devil .label-check {
  width: 32px;
  height: 36px;
  display: block;
}

.col-check input {
  margin: 11px 0px;
}

/*------ 罫線設定 -------*/
/* .table-contents *[class*="row-"] */
.table-contents > * {
  border-bottom: 1px solid #666;
}

.human-or-devil .row-select-wrapper > *:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}

.row-select-wrapper .row-select-human {
  border-bottom-style: dotted;
}

/*********************************

      好感度選択肢（攻略）

*********************************/
.koryaku {
  /* 表全体 */
}
.koryaku .table-wrapper {
  font-size: 1.3rem;
}

/*------ 好感度共通ルート表レイアウト -------*/
.koryaku-common {
  /* 列見出し配置 */
  /* 表本体配置 */
}
.koryaku-common .table-header {
  display: grid;
  grid-template-columns: 5em auto 18em 8em 10em;
}
.koryaku-common .table-contents {
  display: grid;
  grid-template-columns: 5em auto 36em;
  margin: 0;
}
.koryaku-common .row-wrapper {
  display: grid;
  height: 100%;
}
.koryaku-common .row-wrapper:not(.grid-rows2) {
  grid-template-rows: repeat(3, 1fr);
}
.koryaku-common .row-select-wrapper {
  display: grid;
  grid-template-columns: 18em 8em 10em;
  margin: 0;
  font-weight: bold;
}
.koryaku-common .col-game-chapter {
  grid-column: 1;
}
.koryaku-common .col-game-lastword {
  grid-column: 2;
}
.koryaku-common .row-select-wrapper {
  grid-column: 3;
}

/*------ 好感度個別ルート表レイアウト -------*/
.koryaku-personal {
  /* 表本体配置 */
}
.koryaku-personal .table-header {
  /* 列見出し配置 */
  display: grid;
  grid-template-columns: 5em auto 20em 10em;
}
.koryaku-personal .table-contents {
  display: grid;
  grid-template-columns: 5em auto;
  margin: 0;
}
.koryaku-personal .row-wrapper {
  display: grid;
  grid-template-columns: auto 30em;
}
.koryaku-personal .row-select-wrapper {
  display: grid;
  grid-template-columns: 20em 5em 5em;
  margin: 0;
  font-weight: bold;
}
.koryaku-personal .col-game-chapter {
  grid-row: span 1;
  grid-column: 1;
}
.koryaku-personal .table-contents .col-game-lastword {
  grid-row: 1;
  grid-column: 1;
}
.koryaku-personal .col-select-score {
  text-align: right;
}
.koryaku-personal .col-select-total {
  padding-left: 0;
}
.koryaku-personal .acd-check {
  grid-row: 1;
  grid-column: 1;
}

/*------ 選択肢色 -------*/
.row-select-rem {
  color: #3366cc;
}

.row-select-lindo {
  color: #cc3333;
}

.row-select-urie {
  color: #cc3399;
}

.row-select-mage {
  color: #cc9933;
}

.row-select-shiki {
  color: #884898;
}

.row-select-roen {
  color: #888;
}

.koryaku-common .selection-inner {
  color: #966;
}

/* 個別ルート-チェック時選択肢表示 */
.koryaku-personal .table-contents .col-game-lastword,
.koryaku-personal .personal-root {
  color: #fff;
  -webkit-transition: color 0.2s 0ms;
  transition: color 0.2s 0ms;
}

.koryaku-personal .acd-check:checked + .col-game-lastword {
  color: #333;
  -webkit-transition: color 0.2s ease-in 0ms;
  transition: color 0.2s ease-in 0ms;
}

.koryaku-personal .acd-check:checked ~ .personal-root .row-select-bad {
  color: #666;
  -webkit-transition: color 0.2s ease-in 0ms;
  transition: color 0.2s ease-in 0ms;
}

.koryaku-personal .acd-check:checked ~ .personal-root .row-select-correct {
  color: #db6b10;
  -webkit-transition: color 0.2s ease-in 0ms;
  transition: color 0.2s ease-in 0ms;
}

/*------ 罫線設定 -------*/
.table-commonA .col-game-lastword:nth-of-type(8n-7),
.table-commonA .common-root:nth-of-type(8n-6),
.table-commonB .col-game-lastword:nth-of-type(4n-3),
.table-commonB .common-root:nth-of-type(4n-2) {
  border-bottom: 1px solid #ccc;
}

.table-commonB .col-game-lastword:nth-of-type(17),
.table-commonB .common-root:nth-of-type(18) {
  border-bottom-color: #666;
}

.koryaku .row-select-wrapper:not(:last-child) {
  border-bottom: 1px dotted #ccc;
}

/*------ セル結合共通設定 -------*/
.table-contents .row-span6 {
  grid-row: span 6;
}

.table-contents .row-span4 {
  grid-row: span 4;
}

.table-contents .row-span2 {
  grid-row: span 2;
}

/*********************************

        レスポンシブ-攻略

*********************************/
@media screen and (max-width: 768px) {
  .for-pc,
  body.game .for-pc {
    display: none;
  }
  main.game {
    margin: 0 auto;
    width: 100%;
    padding: 32px 20px;
  }
  /*------ 表部分 -------*/
  .game .table-wrapper {
    font-size: 1.3rem;
    max-width: 540px;
    margin: 0 auto;
  }
  .human-or-devil .table-contents,
  .koryaku .table-contents {
    grid-template-columns: auto;
  }
  /*------ ページ内リンク位置調整 -------*/
  .game .col-game-chapter:first-child {
    padding-top: var(--anchor-padding);
  }
  /* 幕の間40px */
  .game .table-wrapper .anchor:not(:first-child) {
    margin-top: calc(40px + var(--anchor-padding) * -1);
  }
  /* padding分重なりによるクリック不可防止 */
  .common-root {
    z-index: 1;
  }
  .game-root {
    z-index: 1;
  }
  /* 幅・余白 */
  .game .col-game-chapter,
  .game .col-game-lastword,
  .koryaku .row-wrapper {
    width: 100%;
  }
  .game .col-game-chapter {
    /* padding-left: 0; */
    text-align: center;
    padding-bottom: 16px;
  }
  .game .col-game-lastword {
    padding: 10px 8px 12px 15px;
  }
  .game .col-select-question {
    padding-right: 0;
  }
  .table-rem .row-select-wrapper dd,
  .table-shiki .row-select-wrapper dd {
    padding-left: 2em;
  }
  .table-lindo .row-select-wrapper dd,
  .table-urie .row-select-wrapper dd,
  .table-mage .row-select-wrapper dd {
    padding-left: 3em;
  }
  .table-roen .row-select-wrapper dd {
    padding-left: 4em;
  }
  .human-or-devil .col-select-label {
    width: 3.4em;
    padding-left: 0;
    padding-right: 0;
  }
}
/*--------------------------------
    ヒトアクマレスポンシブ
--------------------------------*/
@media screen and (max-width: 768px) {
  /* グリッド配置 */
  .human-or-devil .row-select-wrapper {
    grid-template-columns: auto;
  }
  .human-or-devil .row-select-wrapper dt {
    grid-row: span 1;
  }
  .human-or-devil .row-select-wrapper dd label {
    grid-template-columns: 36px 3.4em auto;
  }
  .human-or-devil .common-root dl {
    grid-template-rows: repeat(12, auto);
  }
  .human-or-devil .personal-root dl {
    grid-template-rows: repeat(6, auto);
  }
  .human-or-devil .col-select-question {
    grid-row: span 1;
  }
  .human-or-devil .col-select-label {
    grid-column: 2;
  }
  .human-or-devil .col-select-answer {
    grid-column: 3;
  }
  .human-or-devil .col-check {
    grid-column: 1;
    grid-row: 1;
  }
}
/*--------------------------------

    通常選択肢レスポンシブ

--------------------------------*/
@media screen and (max-width: 959px) {
  .koryaku-common .table-wrapper {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  /* グリッド配置 */
  .koryaku .row-wrapper {
    grid-template-columns: auto;
  }
  .koryaku-personal .row-select-wrapper {
    grid-template-columns: auto 3em 3em;
  }
  .koryaku-common .col-game-lastword {
    grid-column-start: 1;
  }
  .koryaku-common .row-select-wrapper {
    grid-template-columns: auto 6em 6em;
    grid-column: 1;
  }
  .koryaku-common .table-commonA .common-root,
  .koryaku-common .table-commonB .common-root {
    border-bottom: none;
  }
  .koryaku-common .table-commonA .col-game-lastword,
  .koryaku-common .table-commonB .col-game-lastword {
    border-bottom-width: 2px;
    margin-bottom: 10px;
  }
  .koryaku-common .common-root + .col-game-lastword {
    margin-top: 30px;
  }
  /* 幅・余白 */
  .koryaku .col-select-score {
    padding-left: 0;
  }
  .koryaku .col-select-total {
    padding-right: 0;
  }
  .koryaku .personal-root {
    margin-top: 10px;
    padding: 0 3px 0 10px;
    min-width: 320px;
    max-width: 540px;
  }
  /*--------------------------------

                罫線設定

    --------------------------------*/
  /* 罫線解除 */
  .table-contents > *,
  .human-or-devil .row-select-wrapper > *:not(:last-of-type) {
    border-bottom: none;
  }
  /* 罫線-直前のセリフ */
  .col-game-lastword {
    border: 2px solid #ccc;
    color: #888;
    margin: 0 auto;
    border-radius: 8px;
    padding: 15px;
  }
  .koryaku-personal .col-game-lastword {
    border-radius: 8px 0 8px 8px;
  }
  .col-game-lastword::before {
    /* .grid .row .col-game-lastword+.col-game-question::before { */
    content: "直前のセリフ";
    display: block;
    font-weight: bold;
    color: #db6b10;
    margin-bottom: 5px;
  }
  /* 罫線-ヒトアクマ質問 */
  .table-contents .col-select-question {
    border-top: 1px dotted #ccc;
    margin-top: 10px;
    padding-top: 20px;
    width: 100%;
  }
  .table-contents .col-select-question:first-child {
    border-top: none;
  }
}
/*********************************

      ボイスコレクションまとめ

*********************************/
main.vc-wrapper {
  width: 100%;
}

main.vc-wrapper div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

main.vc-wrapper h2 {
  width: 100%;
}

.table-vc {
  table-layout: fixed;
}

.table-vc th,
.table-vc td {
  font-size: 16px;
  padding: 4px 6px;
}

.table-vc th:first-child {
  width: 50px;
  text-align: center;
  border-right: 1px solid #666;
}

.table-vc th:nth-of-type(2) {
  border-right: 1px solid #666;
  white-space: nowrap;
  font-weight: normal;
  width: 16em;
}

.table-vc .vc-chara,
.table-vc td {
  white-space: nowrap;
  width: 5em;
  min-width: 5em;
  text-align: center;
}

/* 行見出し */
.table-vc tr:first-child > * {
  border-bottom: 1px solid #666;
  font-weight: bold;
  text-align: center;
}

/* ダミヘアイコン */
.icon-dhm {
  position: relative;
  padding-left: 21px;
}

.icon-dhm::before,
.icon-dhm::after {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  text-align: center;
  width: 18px;
  left: 0;
  font-weight: 900;
  margin-right: 5px;
}

.icon-dhm::before {
  content: "\f025";
  font-size: 18px;
}

.icon-dhm::after {
  content: "\f004";
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  font-size: 12px;
  bottom: -3px;
  color: #eaffc4;
}

.table-vc th:first-child,
.table-vc td {
  /* font-family: Arial; */
  font-weight: bold;
}

.table-vc td {
  cursor: pointer;
}

.table-vc th.vc-chara:not(:nth-of-type(3)),
.table-vc td:not(:first-of-type) {
  border-left: 1px solid #ccc;
}

.table-vc1 td:nth-of-type(1) {
  /* background-color: #d7f2ff; */
  color: #3366cc;
}

.table-vc1 td:nth-of-type(2) {
  /* background-color: #ffdada; */
  color: #cc3300;
}

.table-vc1 td:nth-of-type(3) {
  /* background-color: #ffe2f5; */
  color: #cc3399;
}

.table-vc1 td:nth-of-type(4) {
  /* background-color: #fff9d5; */
  color: #bd8a26;
}

.table-vc1 td:nth-of-type(5) {
  /* background-color: #f8e8ff; */
  color: #884898;
}

.table-vc1 td:nth-of-type(6) {
  /* background-color: #e4e4e4; */
  color: #666;
}

.table-vc2 td:nth-of-type(1) {
  /* background-color: #e4e4e4; */
  color: #db6b10;
}

.table-vc2 td:nth-of-type(2) {
  /* background-color: #e4e4e4; */
  color: #21940a;
}

.table-vc2 td:nth-of-type(3) {
  /* background-color: #e4e4e4; */
  color: #666;
}/*# sourceMappingURL=style.css.map */