@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ol,
ul,
dl,
dd {
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

ol,
ul {
  list-style: none;
}

@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;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  color: #333;
  background-color: #fcfaf8;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

a {
  transition: 0.2s;
  text-decoration: none;
  color: #333;
}
a:hover, a:active, a:focus {
  color: #37d1ff;
}

.male {
  display: none;
}
.l-body[data-mode=male] .male {
  display: block;
}

.l-body[data-mode=male] .female {
  display: none;
}

@media screen and (min-width: 768px) {
  .l-main {
    padding-left: 200px;
  }
}

.l-footer {
  margin-top: auto;
}

.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.l-nav__bg {
  position: fixed;
  right: 65%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s 0.1s;
}
.l-nav__bg--inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-nav__bg--box {
  width: 100%;
  height: 100%;
  -webkit-animation: scroll 40s linear infinite alternate 0.8s;
          animation: scroll 40s linear infinite alternate 0.8s;
}
.l-nav__bg--img {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/nav_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.l-nav__content {
  margin-left: auto;
  width: 66%;
  height: 100%;
}
.l-nav__menu {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 70;
  transition: opacity 0.5s 0.1s;
  margin: 0 auto;
  background: url(../img/bg_menu_female.png);
  background-size: 50px;
  width: 100%;
  height: 100%;
}
.l-nav.is-open {
  pointer-events: painted;
}
.l-nav.is-open .l-nav__menu,
.l-nav.is-open .l-nav__bg {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(65%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(65%);
  }
}
.l-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}
.l-body.is-load {
  opacity: 1;
}

.l-container {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 50px;
  }
}

.c-bg {
  z-index: -1;
}
.c-bg__header {
  height: 13px;
  background-image: url(../img/bg_border_female.png);
  background-repeat: repeat-x;
  background-size: contain;
}
.l-body[data-mode=male] .c-bg__header {
  background-image: url(../img/bg_border_male.png);
}
.c-bg__wing {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_wing.png);
  background-position: center top;
  background-repeat: repeat;
}

.c-bg,
.c-bg__header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.c-hamburger {
  position: fixed;
  z-index: 1000;
  top: 10px;
  right: 10px;
  background: #ec7986;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  display: flex;
  justify-content: center;
}
.l-body[data-mode=male] .c-hamburger {
  background: #3f83a6;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 10px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 50%;
}
.c-hamburger span:nth-of-type(1) {
  top: 10px;
}
.c-hamburger span:nth-of-type(2) {
  top: 16px;
}
.c-hamburger.is-open {
  background: #fff;
}
.l-body[data-mode=male] .c-hamburger.is-open {
  background: #fff;
}
.c-hamburger.is-open span {
  background: #ec7986;
}
.l-body[data-mode=male] .c-hamburger.is-open span {
  background: #3f83a6;
}
.c-hamburger.is-open span:nth-of-type(1) {
  top: 6px;
  left: 10px;
  transform: translateY(6px) rotate(-30deg);
  width: 50%;
}
.c-hamburger.is-open span:nth-of-type(2) {
  top: 18px;
  left: 10px;
  transform: translateY(-6px) rotate(30deg);
  width: 50%;
}
.c-hamburger.is-open .c-hamburger__txt {
  color: #ec7986;
}
.l-body[data-mode=male] .c-hamburger.is-open .c-hamburger__txt {
  color: #3f83a6;
}
.c-hamburger.is-open .c-hamburger__txt--open {
  display: none;
}
.c-hamburger.is-open .c-hamburger__txt--close {
  display: block;
}
.c-hamburger .c-hamburger__txt {
  position: absolute;
  font-size: 11px;
  color: #fff;
  bottom: 7px;
}
.c-hamburger .c-hamburger__txt--close {
  display: none;
}

.c-header__content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-header__content {
    position: absolute;
    pointer-events: painted;
    width: 200px;
  }
}
.c-header__content.is-open {
  pointer-events: painted;
}
.c-header__content.is-open .c-header__menu,
.c-header__content.is-open .c-header__bg {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
.c-header__bg {
  position: fixed;
  right: 65%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s 0.1s;
}
@media screen and (min-width: 768px) {
  .c-header__bg {
    display: none;
  }
}
.c-header__bg--inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-header__bg--box {
  width: 100%;
  height: 100%;
  -webkit-animation: scroll 40s linear infinite alternate 0.8s;
          animation: scroll 40s linear infinite alternate 0.8s;
}
.c-header__bg--img {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/nav_bg.png);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.c-header__navarea {
  margin-left: auto;
  width: 66%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-header__navarea {
    width: 100%;
  }
}
.c-header__menu {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 70;
  transition: opacity 0.5s 0.1s;
  margin: 0 auto;
  background: url("../img/bg_menu_female.png");
  background-size: 50px;
  width: 100%;
  height: 100%;
}
.l-body[data-mode=male] .c-header__menu {
  background: url("../img/bg_menu_male.png");
  background-size: 50px;
}
@media screen and (min-width: 768px) {
  .c-header__menu {
    justify-content: flex-start;
    opacity: 1;
    background: none;
    padding-top: 50px;
  }
  .l-body[data-mode=male] .c-header__menu {
    background: none;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(65%);
  }
  100% {
    transform: translateX(0);
  }
}
.c-header__logo {
  width: 200px;
  padding: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    display: none;
  }
}
.c-header__logo--menu {
  width: 100%;
  padding: 10%;
}
@media screen and (min-width: 768px) {
  .c-header__logo--menu {
    display: block;
    padding: 0 10% 20%;
  }
  .c-header__logo--menu a {
    display: block;
  }
  .c-header__logo--menu a:hover {
    opacity: 0.7;
  }
}
.c-header__logo--top {
  display: none;
}

.c-footer {
  background: url(../img/bg_menu_female.png);
  background-size: 50px;
  color: #fff;
  padding: 10% 0 15%;
  text-align: center;
}
.l-body[data-mode=male] .c-footer {
  background: url(../img/bg_menu_male.png);
  background-size: 50px;
}
@media screen and (min-width: 768px) {
  .c-footer {
    padding: 40px 0;
  }
}
.c-footer__inner {
  margin: 0 auto;
  width: 95%;
  position: relative;
  max-width: 1600px;
}
@media screen and (min-width: 768px) {
  .c-footer__inner {
    padding-left: 300px;
    text-align: right;
  }
}
.c-footer__logo {
  width: 60%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-footer__logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 216px;
  }
}
.c-footer__share {
  margin: 20px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .c-footer__share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
}
.c-footer__share--title {
  font-size: 14px;
}
.c-footer__share--list {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-footer__share--list {
    margin-top: 0;
    margin-left: 10px;
  }
}
.c-footer__share--item + .c-footer__share--item {
  margin-left: 15px;
}
.c-footer__share--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 24px;
  color: #ec7986;
}
.c-footer__share--link:hover, .c-footer__share--link:active, .c-footer__share--link:focus {
  color: #ef8f9a;
}
.l-body[data-mode=male] .c-footer__share--link:hover, .l-body[data-mode=male] .c-footer__share--link:active, .l-body[data-mode=male] .c-footer__share--link:focus {
  color: #4692b8;
}
.l-body[data-mode=male] .c-footer__share--link {
  color: #3f83a6;
}
.c-footer__link {
  font-size: 16px;
  margin-top: 20px;
  color: #fff;
}
.c-footer__link::before {
  font-family: "Font awesome 5 Free";
  content: "\f0e0";
  font-weight: 800;
  margin-right: 0.3em;
}
.c-footer__link a {
  color: #fff;
}
.c-footer__note {
  font-size: 14px;
  margin-top: 20px;
}
.c-footer__copy {
  font-size: 12px;
  margin-top: 5px;
}

.c-menu__item {
  position: relative;
}
.c-menu__item + .c-menu__item {
  margin-top: 15%;
}
.c-menu__link {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-menu__link {
    color: #333;
  }
}
.c-menu__link.is-current {
  color: #ffe873;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-menu__link.is-current {
    color: #ec7986;
  }
  .l-body[data-mode=male] .c-menu__link.is-current {
    color: #3f83a6;
  }
}
.c-menu__link:hover {
  color: #ffe873;
}
@media screen and (min-width: 768px) {
  .c-menu__link:hover {
    color: #777;
  }
}
.c-menu__link:focus, .c-menu__link:active {
  color: #ffe873;
}
@media screen and (min-width: 768px) {
  .c-menu__link:focus, .c-menu__link:active {
    color: #ec7986;
  }
  .l-body[data-mode=male] .c-menu__link:focus, .l-body[data-mode=male] .c-menu__link:active {
    color: #3f83a6;
  }
}
.c-menu__en {
  font-size: 20px;
}
.c-menu__ja {
  font-size: 14px;
}

.c-content-title {
  margin: 10% 0;
  text-align: center;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .c-content-title {
    margin: 1em 0;
  }
}
.c-content-title__en {
  font-size: 7vw;
}
@media screen and (min-width: 768px) {
  .c-content-title__en {
    font-size: 40px;
  }
}
.c-content-title__ja {
  font-size: 3.5vw;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .c-content-title__ja {
    font-size: 14px;
  }
}
.c-content-title img {
  margin: 0 auto;
}

.c-content-subTitle {
  display: inline-block;
  position: relative;
  text-align: center;
  margin-bottom: 1em;
  font-size: 5vw;
}
@media screen and (min-width: 768px) {
  .c-content-subTitle {
    font-size: 30px;
  }
}
.c-content-subTitle::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #223a70;
  top: 50%;
  left: -70px;
  margin: -1px 0 0 0;
  position: absolute;
}
.c-content-subTitle::after {
  content: "";
  width: 50px;
  top: 50%;
  right: -70px;
  height: 1px;
  background: #223a70;
  margin: -1px 0 0 0;
  position: absolute;
}

.c-content-wrapper {
  margin-bottom: 40px;
}
.c-content-wrapper.type-narrow {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.top-hero {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-hero__container {
    display: flex;
  }
}
.top-hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.top-hero__visual--main {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-hero__visual--main {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-hero__title {
  position: absolute;
  bottom: 17%;
  padding: 0 10%;
  filter: drop-shadow(0 0 1px white) drop-shadow(0 0 3px white) drop-shadow(0 0 5px white) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.top-hero__title img {
  width: 100vw;
}
.top-hero__onair {
  position: absolute;
  bottom: 2%;
  padding: 0 10%;
  filter: drop-shadow(0 0 1px white) drop-shadow(0 0 3px white) drop-shadow(0 0 5px white) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.top-hero__catch {
  position: absolute;
  top: 3%;
  left: 5%;
  transform: skewY(-10deg);
}
@media screen and (min-width: 768px) {
  .top-hero__catch {
    position: static;
    top: auto;
    left: auto;
    margin: 0 30px;
    width: 300px;
  }
}
.top-hero__catch--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-hero__catch--img {
  filter: drop-shadow(0 0 1px white) drop-shadow(0 0 3px white) drop-shadow(0 0 5px white) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.top-hero__catch--main button {
  width: 23vw;
  padding-top: 61vw;
  background: url("../img/catch_01_female.png") no-repeat;
  background-size: 100%;
  text-indent: -9999px;
  transition: 0.4s transform;
}
@media screen and (min-width: 768px) {
  .top-hero__catch--main button {
    width: 140px;
    padding-top: 264%;
  }
}
.l-body[data-mode=male] .top-hero__catch--main button {
  background: url("../img/catch_01_male.png");
  background-size: 100%;
}
.top-hero__catch--main:hover button {
  background: url("../img/catch_01_male.png") no-repeat;
  transform: rotateY(360deg);
  background-size: 100%;
}
.l-body[data-mode=male] .top-hero__catch--main:hover button {
  background: url("../img/catch_01_female.png");
  background-size: 100%;
}
.top-hero__catch--first img {
  width: 6vw;
  margin: 0 auto;
}
.top-hero__catch--second {
  position: relative;
}
.top-hero__catch--second a {
  width: 9vw;
  padding-top: 22.7vw;
  background: url(../img/txt_02_female.png) no-repeat;
  background-size: 100%;
  display: block;
  text-indent: -9999px;
  transition: 0.4s transform;
}
.top-hero__catch--second:hover a {
  background: url("../img/txt_02_male.png") no-repeat;
  transform: rotateY(360deg);
  background-size: 100%;
}
.top-hero__catch--second::after {
  position: absolute;
  content: "";
  background-image: url(../img/txt_02_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.52vw;
  padding-top: 17vw;
  left: 100%;
  top: 50%;
  transform: translate(50%, -50%);
}
.top-hero__catch--third img {
  width: 6vw;
  margin: 0 auto;
}
.top-hero__catch--4th {
  position: absolute;
  bottom: 10%;
  left: 100%;
  transform: translateX(-50%);
  width: 8vw;
}
@media screen and (min-width: 768px) {
  .top-hero__catch--4th {
    width: 67px;
    bottom: 38px;
  }
}

.rotate {
  -webkit-animation: catchRotate 0.2s linear infinite alternate 0.8s;
          animation: catchRotate 0.2s linear infinite alternate 0.8s;
}

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

@keyframes catchRotate {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.fuwa {
  -webkit-animation: 2s fuwa ease-in-out 1s infinite alternate;
          animation: 2s fuwa ease-in-out 1s infinite alternate;
}

@-webkit-keyframes fuwa {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2%);
  }
}

@keyframes fuwa {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2%);
  }
}
.topToBottom {
  -webkit-animation: 1s topToBottom ease-out;
          animation: 1s topToBottom ease-out;
}

@-webkit-keyframes topToBottom {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes topToBottom {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  .top-news-twitter__container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1025px) {
  .top-news-twitter__container .top-news,
.top-news-twitter__container .top-twitter {
    width: 50%;
  }
}

.top-news {
  margin: 2em 0;
  padding: 0 30px;
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .top-news {
    margin: 5% 0;
    font-size: 16px;
  }
}
.top-news__heading {
  font-size: 7vw;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .top-news__heading {
    font-size: 40px;
  }
}
.top-news__heading--ja {
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .top-news__heading--ja {
    font-size: 14px;
  }
}
.top-news__item + .top-news__item {
  margin-top: 1em;
}
.top-news__link {
  display: flex;
}
.top-news__date {
  color: #ec7986;
  width: 8em;
  flex: none;
}
.l-body[data-mode=male] .top-news__date {
  color: #3f83a6;
}
.top-twitter {
  margin: 2em 0;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .top-twitter {
    margin: 5% 0;
  }
}
.top-twitter__heading {
  font-size: 7vw;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .top-twitter__heading {
    font-size: 40px;
  }
}
.top-twitter__heading--ja {
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .top-twitter__heading--ja {
    font-size: 14px;
  }
}
.top-twitter__body {
  padding: 15px;
  background-color: #fff;
  border-radius: 20px;
}

.top-pr {
  margin: 2em 0;
  padding: 0 30px;
}
.top-pr__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-pr__list {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .top-pr__item {
    width: 300px;
  }
}
.top-pr__item + .top-pr__item {
  margin: 15px 0 0 0;
}
@media screen and (min-width: 768px) {
  .top-pr__item + .top-pr__item {
    margin: 0 0 0 15px;
  }
}

.chara-content .chara-detail {
  position: relative;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail {
    max-width: 900px;
    margin: auto;
  }
}
.chara-content .chara-detail__visual {
  width: 50%;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__visual {
    width: 40%;
    padding: 3%;
  }
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__data {
    position: absolute;
    top: 15%;
    left: 45%;
    margin-right: 30px;
  }
}
.chara-content .chara-detail__name {
  position: absolute;
  top: 40vw;
  left: 52vw;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__name {
    position: static;
    top: auto;
    left: auto;
  }
}
.chara-content .chara-detail__name--ja {
  font-size: 7vw;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__name--ja {
    font-size: 52px;
  }
}
.chara-content .chara-detail__name--en {
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__name--en {
    font-size: 18px;
  }
}
.chara-content .chara-detail__switch {
  position: absolute;
  cursor: pointer;
  top: 74vw;
  left: 56vw;
  width: 25vw;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__switch {
    position: relative;
    top: auto;
    left: auto;
    width: 25%;
    margin-top: 2em;
  }
}
.chara-content .chara-detail__switch--btn2 {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.chara-content .chara-detail__switch--btn2:hover {
  transform: rotate(-90deg);
}
.chara-content .chara-detail__cv {
  display: block;
  margin-top: 1em;
}
.chara-content .chara-detail__cv--text {
  position: relative;
  font-size: 4.5vw;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__cv--text {
    font-size: 20px;
  }
}
.chara-content .chara-detail__cv--text::before {
  color: #fff;
  background-color: #ec7986;
  display: inline-block;
  content: "CV";
  padding: 0 0.5em;
  border-radius: 8px;
  margin-right: 0.5em;
}
.l-body[data-mode=male] .chara-content .chara-detail__cv--text::before {
  background-color: #3f83a6;
}
.chara-content .chara-detail__explanation {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__explanation {
    padding: 2em 0 0 0;
  }
}
.chara-content .chara-detail__explanation--text {
  font-size: 4vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .chara-content .chara-detail__explanation--text {
    font-size: 15px;
  }
}

.chara-content .swiper-thumbnail {
  max-width: 60vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .chara-content .swiper-thumbnail {
    max-width: 340px;
  }
}
.chara-content .swiper-thumbnail__list--item {
  cursor: pointer;
}
.chara-content .swiper-thumbnail__list--item .default {
  display: block;
}
.chara-content .swiper-thumbnail__list--item .selected {
  display: none;
}
.chara-content .swiper-thumbnail__list--item:hover .default {
  display: none;
}
.chara-content .swiper-thumbnail__list--item:hover .selected {
  display: block;
}
.chara-content .swiper-thumbnail__list--item.swiper-slide-thumb-active .default {
  display: none;
}
.chara-content .swiper-thumbnail__list--item.swiper-slide-thumb-active .selected {
  display: block;
}

.story__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.story__list--item {
  width: 16.6666666667%;
}
@media screen and (min-width: 768px) {
  .story__list--item {
    width: auto;
  }
}
.story__list--item.type-intro {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .story__list--item.type-intro {
    width: auto;
  }
}
.story__list--item + .story__list--item {
  margin-left: 8px;
}
.story__list--link {
  color: #ec7986;
  text-align: center;
  background: #fff;
  border: 2px solid #ec7986;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  border-radius: 4px;
}
.l-body[data-mode=male] .story__list--link {
  color: #3f83a6;
  border: 2px solid #3f83a6;
}
.story__list--link:hover {
  color: #ec7986;
  background: #fce9ed;
}
.l-body[data-mode=male] .story__list--link:hover {
  color: #3f83a6;
  background: #d2dfe6;
}
.story__list--link.is-current {
  background: #ec7986;
  color: #fff;
  pointer-events: none;
}
.l-body[data-mode=male] .story__list--link.is-current {
  background: #3f83a6;
  color: #fff;
}

.story-episode {
  text-align: center;
  margin-bottom: 1em;
  font-size: 6vw;
}
@media screen and (min-width: 768px) {
  .story-episode {
    font-size: 30px;
  }
}
.story-episode__number {
  margin-right: 0.2em;
}
.story-detail {
  padding: 0 30px;
  margin-top: 30px;
}
.story-detail__header {
  border-bottom: 2px dotted #333;
  margin-bottom: 0.5em;
  padding-bottom: 0.2em;
}
.story-detail__text {
  font-size: 14px;
  margin-bottom: 2em;
}
.story-detail__table {
  font-size: 14px;
}
.story-detail__th {
  text-align: left;
  padding-right: 0.5em;
  width: 6em;
}

.story-content .swiper-container {
  padding: 0 30px;
}
.story-content .swiper-thumbnail {
  margin: 8px auto 0 auto;
}
.story-content .swiper-thumbnail__list--item {
  cursor: pointer;
}
.story-intro {
  padding: 0 30px;
  margin-top: 30px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .story-intro {
    padding: 0 300px 0 30px;
  }
}
.story-intro__header {
  margin-bottom: 1em;
}
.story-intro__text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .story-intro__text {
    font-size: 18px;
  }
}
.story-intro__text.accent {
  font-size: 1.2em;
  font-weight: 800;
  color: #ec7986;
}
.l-body[data-mode=male] .story-intro__text.accent {
  color: #3f83a6;
}
@media screen and (min-width: 1025px) {
  .story-intro__img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
  }
}
.story-intro__table {
  font-size: 14px;
}
.story-intro__th {
  text-align: left;
  padding-right: 0.5em;
}

.onair {
  padding: 0 30px;
}
.onair__heading {
  text-align: center;
}
.onair__list--item {
  padding: 1em 0;
  border-top: 1px dotted #ccc;
}
.onair__list--item:last-of-type {
  border-bottom: 1px dotted #ccc;
}
.onair + .onair {
  margin-top: 2em;
}

.onair-detail__dt {
  color: #ec7986;
}
.l-body[data-mode=male] .onair-detail__dt {
  color: #3f83a6;
}
.onair-detail__dd {
  display: flex;
  margin-top: 0.2em;
}
.onair-detail__dd .date {
  width: 40%;
  padding-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .onair-detail__dd .date {
    width: 25%;
  }
}
.onair-detail__dd .time {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .onair-detail__dd .time {
    width: 75%;
  }
}

.staffcast {
  padding: 0 30px;
  text-align: center;
}
.staffcast__list--item {
  padding: 1em 0;
  border-top: 1px dotted #ccc;
}
.staffcast__list--item:last-of-type {
  border-bottom: 1px dotted #ccc;
}
.staffcast + .staffcast {
  margin-top: 2em;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: -2em;
}
.staff-list__item {
  width: 50%;
}
@media screen and (min-width: 1025px) {
  .staff-list__item {
    width: 33.3333333333%;
  }
}
.staff-list__item + .staff-list__item {
  margin-top: 2em;
}
.staff-list__item--last {
  width: 100%;
}
.staff-list__work {
  font-size: 3.5vw;
  color: #ec7986;
}
.l-body[data-mode=male] .staff-list__work {
  color: #3f83a6;
}
@media screen and (min-width: 768px) {
  .staff-list__work {
    font-size: 16px;
  }
}
.staff-list__name {
  display: block;
  font-size: 5.5vw;
}
@media screen and (min-width: 768px) {
  .staff-list__name {
    font-size: 26px;
  }
}
.staff-list__more {
  display: block;
  font-size: 3vw;
}
@media screen and (min-width: 768px) {
  .staff-list__more {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */