:root {
  --bg-color: #ffffff;
  --bg-rgb: 255, 255, 255;
  --bg-hover-color: #e8e8e8;
  --border-color: #d0d0d0;
  --accent-gray-color: #b8b8b8;
  --text-color: #000000;
  --text-hover-color: #484848;
  --space: 15px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #000000;
    --bg-rgb: 0, 0, 0;
    --bg-hover-color: #181818;
    --border-color: #303030;
    --accent-gray-color: #484848;
    --text-color: #ffffff;
    --text-hover-color: #b8b8b8;
  }
}
:root[data-theme=light] {
  --bg-color: #ffffff;
  --bg-rgb: 255, 255, 255;
  --bg-hover-color: #e8e8e8;
  --border-color: #d0d0d0;
  --accent-gray-color: #b8b8b8;
  --text-color: #000000;
  --text-hover-color: #484848;
}
:root[data-theme=dark] {
  --bg-color: #000000;
  --bg-rgb: 0, 0, 0;
  --bg-hover-color: #181818;
  --border-color: #303030;
  --accent-gray-color: #484848;
  --text-color: #ffffff;
  --text-hover-color: #b8b8b8;
}
@media screen and (min-width: 640px) {
  :root {
    --space: 20px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --space: 25px;
  }
}

* {
  border-color: var(--border-color);
  border-style: solid;
  border-width: 0;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.symbol {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

body {
  padding-bottom: 60px;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 640px) {
  body {
    padding-bottom: 0;
  }
}

footer {
  padding: 25px 0;
}
footer .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .link-list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
footer .link-list li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  width: 60px;
}
footer .link-list li a:hover {
  color: var(--text-hover-color);
}
footer .link-list li.youtube a svg {
  height: 30px;
}
footer .link-list li.x a svg {
  height: 22px;
}
footer .copyright {
  border-right: 1px solid var(--border-color);
  color: #808080;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 25px;
  text-align: center;
}

main {
  overflow: hidden;
}

h1 {
  border-bottom: 1px solid var(--border-color);
  font-family: "Dela Gothic One", sans-serif;
  line-height: 1;
  padding: 24px 0;
  text-align: center;
}
@media screen and (min-width: 640px) {
  h1 {
    font-size: 32px;
    padding: 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    padding: 40px 0;
    font-size: 40px;
  }
}
h1 .ja {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-indent: 0.1em;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}
@media screen and (min-width: 640px) {
  h1 .ja {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1024px) {
  h1 .ja {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
h1 .en {
  color: var(--accent-gray-color);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
  vertical-align: 0.5em;
}
@media screen and (min-width: 640px) {
  h1 .en {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  h1 .en {
    font-size: 20px;
  }
}

h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: var(--space);
  padding: var(--space) 0 var(--space) var(--space);
  border-bottom: 4px solid var(--text-color);
}
@media screen and (min-width: 640px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 4px solid var(--text-color);
}

.panel-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1px;
  position: relative;
}
.panel-list > li {
  border-color: var(--border-color);
  border-style: solid;
  border-width: 0 1px 1px 0;
}
.panel-list > li a {
  display: block;
  padding: var(--space);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.panel-list > li a:hover {
  background-color: var(--bg-hover-color);
}
.panel-list > li a .thumbnail {
  margin-bottom: var(--space);
}
.panel-list > li a .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  line-height: 17.5px;
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 640px) {
  .panel-list > li a .title {
    font-size: 20px;
    line-height: 22px;
  }
}
.panel-list > li a .title::before {
  background-color: var(--accent-gray-color);
  content: "";
  display: block;
  height: calc(100% + 10px);
  left: 0;
  position: absolute;
  top: -15px;
  width: 4px;
}
@media screen and (min-width: 640px) {
  .panel-list > li a .title::before {
    height: calc(100% + 20px);
    top: -20px;
  }
}
@media screen and (min-width: 1024px) {
  .panel-list > li a .title::before {
    height: calc(100% + 25px);
    top: -25px;
  }
}
.panel-list::after {
  border-bottom: 1px solid var(--border-color);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}
.panel-list.column-4 > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.panel-list.column-4 > li:nth-child(2n) {
  border-right-width: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1px);
          flex: 0 0 calc(50% - 1px);
  margin-right: -1px;
}
@media screen and (min-width: 640px) {
  .panel-list.column-4 > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
  }
  .panel-list.column-4 > li:nth-child(2n) {
    border-right-width: 1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    margin-right: 0;
  }
  .panel-list.column-4 > li:nth-child(3n) {
    border-right-width: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333333333% - 1px);
            flex: 0 0 calc(33.3333333333% - 1px);
    margin-right: -1px;
  }
}
@media screen and (min-width: 1024px) {
  .panel-list.column-4 > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .panel-list.column-4 > li:nth-child(2n), .panel-list.column-4 > li:nth-child(3n) {
    border-right-width: 1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin-right: 0;
  }
  .panel-list.column-4 > li:nth-child(4n) {
    border-right-width: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 1px);
            flex: 0 0 calc(25% - 1px);
    margin-right: -1px;
  }
}
.panel-list.column-2 > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.panel-list.column-2 > li:nth-child(2n) {
  border-right-width: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1px);
          flex: 0 0 calc(50% - 1px);
  margin-right: -1px;
}
@media screen and (min-width: 640px) {
  .panel-list.column-2 > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .panel-list.column-2 > li:nth-child(2n) {
    border-right-width: 1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-right: 0;
  }
  .panel-list.column-2 > li:nth-child(3n) {
    border-right-width: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1px);
            flex: 0 0 calc(50% - 1px);
    margin-right: -1px;
  }
}
.panel-list.vertical > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.panel-list.vertical > li a .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  margin-bottom: 0;
  margin-right: 15px;
}
@media screen and (min-width: 640px) {
  .panel-list.vertical > li a .thumbnail {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .panel-list.vertical > li a .thumbnail {
    margin-right: 25px;
  }
}
.panel-list.vertical > li a .title {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding-left: 25px;
}
.panel-list.vertical > li a .title::before {
  height: 4px;
  margin-left: -25px;
  top: 0;
  width: 25px;
}

@media screen and (min-width: 640px) {
  .post-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.post-link > div {
  height: 61px;
  border-bottom-width: 1px;
}
.post-link > div a {
  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;
  line-height: 1;
  font-size: 16px;
  height: 100%;
  padding: 0 60px;
}
.post-link > div a:hover {
  background-color: var(--bg-hover-color);
}
.post-link > div a::before, .post-link > div a::after {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 16;
}
.post-link > div a::before {
  margin-right: 0.5em;
}
.post-link > div a::after {
  margin-left: 0.5em;
}
@media screen and (min-width: 640px) {
  .post-link .next, .post-link .prev {
    width: 50%;
  }
}
.post-link .next:not(:has(a)), .post-link .prev:not(:has(a)) {
  display: none;
}
@media screen and (min-width: 640px) {
  .post-link .next:not(:has(a)), .post-link .prev:not(:has(a)) {
    display: block;
  }
}
.post-link .next a, .post-link .prev a {
  position: relative;
}
.post-link .next a .thumbnail, .post-link .prev a .thumbnail {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
}
.post-link .next a .thumbnail img, .post-link .prev a .thumbnail img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 640px) {
  .post-link .next {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .post-link .next {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 33.3333333333%;
  }
}
.post-link .next a::after {
  content: "arrow_forward";
}
.post-link .next a .thumbnail {
  right: 10px;
}
@media screen and (min-width: 640px) {
  .post-link .prev {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    border-right-width: 1px;
  }
}
@media screen and (min-width: 1024px) {
  .post-link .prev {
    width: 33.3333333333%;
  }
}
.post-link .prev a::before {
  content: "arrow_back";
}
.post-link .prev a .thumbnail {
  left: 10px;
}
@media screen and (min-width: 640px) {
  .post-link .back {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 1024px) {
  .post-link .back {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 33.3333333333%;
    border-right-width: 1px;
  }
}
.post-link .back a::before {
  content: "undo";
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 16;
}

header {
  height: 41px;
  border-bottom-width: 1px;
  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;
  position: relative;
}
@media screen and (min-width: 640px) {
  header {
    height: 61px;
    -webkit-box-flex: nowrap;
        -ms-flex: nowrap;
            flex: nowrap;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media screen and (min-width: 640px) {
  header .logo {
    height: 100%;
    border-right-width: 1px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
header .logo a {
  height: 100%;
  padding: 0 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .logo a:hover {
  background-color: var(--bg-hover-color);
}
@media screen and (min-width: 640px) {
  header .logo a {
    height: 100%;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  header .logo a {
    padding: 0 25px;
  }
}
header .logo svg {
  height: 20px;
  margin-left: -4px;
}
@media screen and (min-width: 640px) {
  header .logo svg {
    height: 30px;
    margin-left: -6px;
  }
}
header nav {
  width: 100%;
  z-index: 2;
  height: 61px;
  background-color: var(--bg-color);
  border-top-width: 1px;
  border-bottom-width: 1px;
  padding-bottom: calc(env(safe-area-inset-bottom) - 1px);
  bottom: -1px;
  left: 0;
  position: fixed;
}
@media screen and (min-width: 640px) {
  header nav {
    height: 100%;
    border-bottom-width: 0;
    border-top: 0;
    padding-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    position: static;
    width: auto;
  }
}
header nav .menu-list {
  height: 100%;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header nav .menu-list > li {
  width: 20%;
  height: 100%;
  border-right-width: 1px;
  font-weight: bold;
}
header nav .menu-list > li:last-child {
  border-right: 0;
}
header nav .menu-list > li a {
  width: 100%;
  height: 100%;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media screen and (min-width: 1024px) {
  header nav .menu-list > li a {
    font-size: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
}
header nav .menu-list > li a:hover {
  background-color: var(--bg-hover-color);
}
header nav .menu-list > li a:hover:not([href]) {
  background-color: transparent;
}
header nav .menu-list > li a:not([href]) > * {
  opacity: 0.25;
}
header nav .menu-list > li a .symbol {
  margin-bottom: 5px;
  font-size: 24px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
@media screen and (min-width: 1024px) {
  header nav .menu-list > li a .symbol {
    margin-bottom: 0;
    margin-right: 0.25em;
  }
}
header #setting-btn {
  width: 40px;
  height: 40px;
  font-size: 24px;
  letter-spacing: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left-width: 1px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header #setting-btn::before {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
header #setting-btn:hover {
  background-color: var(--bg-hover-color);
}
header #setting-btn.open-btn::before {
  content: "settings";
}
header #setting-btn.close-btn::before {
  content: "close";
}
@media screen and (min-width: 640px) {
  header #setting-btn {
    width: 60px;
    height: 60px;
    font-size: 36px;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 36;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
header #setting {
  width: 100%;
  height: auto;
  right: 0;
  top: 0;
  z-index: 3;
  display: none;
  position: fixed;
  overflow: hidden;
  background-color: rgba(var(--bg-rgb), 0.9);
}
@media screen and (min-width: 640px) {
  header #setting {
    border-left-width: 1px;
    position: absolute;
    top: calc(100% + 1px);
    width: 320px;
  }
}
header #setting > .inner {
  height: 100dvh;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 640px) {
  header #setting > .inner {
    height: auto;
    padding: 15px 0 0;
  }
}
header #setting #setting-close-btn {
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  border-width: 0 0 1px 1px;
  font-size: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 640px) {
  header #setting #setting-close-btn {
    display: none;
  }
}
header #setting #setting-close-btn::before {
  content: "close";
  font-family: "Material Symbols Rounded";
}
header #setting section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header #setting section h2 {
  width: 100%;
}
header #setting section #theme-list {
  width: 100%;
}
header #setting section #theme-list > li {
  height: 40px;
  padding: 0 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-width: 1px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 1;
  position: relative;
}
header #setting section #theme-list > li:first-child {
  border-top-width: 1px;
}
header #setting section #theme-list > li::before {
  font-family: "Material Symbols Rounded";
  margin-right: 0.5em;
}
header #setting section #theme-list > li.current {
  font-weight: bold;
}
header #setting section #theme-list > li.current::before {
  font-weight: normal;
  font-variation-settings: "FILL" 1;
}
header #setting section #theme-list > li.current::after {
  height: 100%;
  right: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "check";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Material Symbols Rounded";
  position: absolute;
}
header #setting section #theme-list > li.auto::before {
  content: "devices";
}
header #setting section #theme-list > li.light::before {
  content: "light_mode";
}
header #setting section #theme-list > li.dark::before {
  content: "dark_mode";
}

@media screen and (min-width: 640px) {
  body.front .slider .slide .square {
    display: none;
  }
}
body.front .slider .slide .landscape {
  display: none;
}
@media screen and (min-width: 640px) {
  body.front .slider .slide .landscape {
    display: block;
  }
}
body.front .news .news-list {
  border-top-width: 1px;
}
body.front .news .news-list > li {
  border-bottom-width: 1px;
}
body.front .news .news-list > li a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--space);
  font-size: 12px;
}
@media screen and (min-width: 640px) {
  body.front .news .news-list > li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  body.front .news .news-list > li a {
    font-size: 20px;
  }
}
body.front .news .news-list > li a:hover {
  background-color: var(--bg-hover-color);
}
body.front .news .news-list > li a .date {
  color: var(--text-hover-color);
  width: 7em;
}

body.characters-single .character-wrap {
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 640px) {
  body.characters-single .character-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
body.characters-single .character-wrap .character-image {
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 640px) {
  body.characters-single .character-wrap .character-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    border-bottom-width: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body.characters-single .character-wrap .character-image .image-area {
  padding: var(--space);
  height: 100vw;
}
@media screen and (min-width: 640px) {
  body.characters-single .character-wrap .character-image .image-area {
    min-height: 50vw;
    height: 100%;
  }
}
body.characters-single .character-wrap .character-image .image-area .image-wrap {
  position: relative;
  height: 100%;
}
body.characters-single .character-wrap .character-image .image-area .image-wrap .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  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;
}
body.characters-single .character-wrap .character-image .image-area .image-wrap .img img {
  max-width: 100%;
  max-height: 90%;
}
body.characters-single .character-wrap .character-image .image-area .image-wrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  opacity: 0.25;
  background-repeat: no-repeat;
}
body.characters-single .character-wrap .character-detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (min-width: 640px) {
  body.characters-single .character-wrap .character-detail {
    border-right-width: 1px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
body.characters-single .character-wrap .character-detail > div {
  padding: var(--space);
}
body.characters-single .character-wrap .character-detail .description-area {
  border-bottom-width: 1px;
}
@media screen and (min-width: 640px) {
  body.characters-single .character-wrap .character-detail .description-area {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  body.characters-single .character-wrap .character-detail .description-area {
    font-size: 20px;
  }
}
body.characters-single .character-wrap .character-detail .profile-area {
  border-bottom-width: 1px;
}
body.characters-single .character-wrap .character-detail .voice-area .actor {
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (min-width: 640px) {
  body.characters-single .character-wrap .character-detail .voice-area .actor {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  body.characters-single .character-wrap .character-detail .voice-area .actor {
    font-size: 20px;
  }
}
body.characters-single .character-wrap .character-detail .voice-area .sample-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.characters-single .character-wrap .character-detail .voice-area .sample-list > li {
  border-color: var(--text-color);
  border-width: 1px;
  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;
  height: 40px;
  border-radius: 20px;
  padding: 0 10px 0 5px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
  font-size: 12px;
}
body.characters-single .character-wrap .character-detail .voice-area .sample-list > li:last-child {
  margin-right: 0;
}
body.characters-single .character-wrap .character-detail .voice-area .sample-list > li::before {
  content: "play_arrow";
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 16;
  font-size: 1.5em;
}
body.characters-single .character-wrap .character-detail .voice-area .sample-list > li.playing, body.characters-single .character-wrap .character-detail .voice-area .sample-list > li:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}
body.characters-single .character-wrap .character-detail .voice-area .sample-list > li.playing::before {
  content: "stop";
}