:root {
  --color-red: #ff5148;
  --color-yellow: #fce800;
  --color-green: #0583a3;
  --font-color-gray: #484848;
  --inner-width: 1180px;
}

* {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 768px) {
  html {
    font-size: 2.326vw;
  }
}

body {
  font-family: "Noto Sans JP", YakuHanJP, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-weight: var(--fw-nomal);
  font-size: 1.6rem;
  line-height: 1.87;
  letter-spacing: 0.1em;
  background-color: #2f2526;
  color: #fff;
}

/*----- header -----*/
.header {
  background-color: #121a25;
}
.header__poster img {
  width: 100%;
}
.header__broadcast {
  margin: 0;
  padding: 1.6rem;
  font-size: 3rem;
  text-align: center;
  line-height: 1.5;
  background-color: #121a25;
}
@media (max-width: 768px) {
  .header__broadcast {
    padding: 0 0 0 1.6rem;
    text-align: left;
  }
}
.header__broadcast span {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .header__broadcast span {
    font-size: 1.3rem;
  }
}
.header__broadcast-em {
  font-style: normal;
  font-size: 1.4em;
  font-weight: 700;
}
.header__broadcast-network {
  display: block;
  font-size: 1.2rem;
}
.header__broadcast-time {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header__broadcast-time {
    font-size: 1.6rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.6rem 0;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 1.2rem 1.6rem;
  }
}
.header__left {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .header__left {
    gap: 0;
  }
}
.header__dodora {
  margin: 0;
  width: 9rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__dodora {
    margin: -1rem 0 0 -2rem;
    width: 44px;
  }
}
.header__dodora img {
  width: 100%;
  height: auto;
}
.header__logo {
  margin: 0;
}
.header__logo a {
  height: 14.8rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 444/148;
}
@media (max-width: 768px) {
  .header__logo a {
    height: auto;
    width: 43vw;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}

/*-----navArea-----*/
.navArea {
  background-image: linear-gradient(180deg, rgb(204, 183, 198) 50%, rgb(165, 144, 165));
}
.navArea__inner {
  max-width: var(--inner-width);
  padding: 0 2rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}
@media (max-width: 768px) {
  .navArea__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.navArea__item {
  background-color: transparent;
  transition: background-color 0.2s ease;
  border-right: 1px solid #fff;
  height: 100%;
  align-content: center;
}
.navArea__item:first-child {
  border-left: 1px solid #fff;
}
.navArea__item .current {
  background-color: #fff;
}
.navArea__item .current .navArea__link {
  color: #05193e;
  font-weight: bold;
}
@media (max-width: 768px) {
  .navArea__item {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .navArea__item:last-child {
    grid-column: 1/-1;
  }
}
.navArea__link {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 1em 0;
  color: #05193e;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (any-hover: hover) {
  .navArea__link {
    transition: all 0.3s ease-in;
  }
  .navArea__link:hover {
    color: #8a6a8a;
  }
}
@media (max-width: 768px) {
  .navArea__link {
    padding: 1em 0.3em;
    font-size: 1.8rem;
  }
}

.snsNav {
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 1000px;
  margin: 30px auto 0;
}
.snsNav__title {
  font-size: 2.4rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .snsNav__title {
    font-size: 1.6rem;
  }
}
.snsNav__inner {
  display: grid;
  grid-template-columns: repeat(3, 35px);
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-left: 24px;
}
@media (max-width: 768px) {
  .snsNav__inner {
    grid-template-columns: repeat(3, 25px);
    -moz-column-gap: 14px;
         column-gap: 14px;
    margin-left: 12px;
  }
}

.vodList {
  background-image: url(../img/story_bg2.webp);
  background-size: cover;
  background-position: center;
}
.vodList__inner {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.vodList__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5.7rem;
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .vodList__inner {
    grid-template-columns: repeat(1, 1fr);
    padding: 5rem 2rem;
  }
}
.vodList__link {
  display: block;
  box-shadow: 0 0 3px #000;
}

.article {
  overflow: hidden;
  margin-top: 50px;
  border-radius: 30px;
  border: 10px solid #61a8a5;
}
@media (max-width: 768px) {
  .article {
    margin-top: 40px;
    border-radius: 20px;
    border-width: 3px;
  }
}
.article__inner {
  padding: 50px 75px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .article__inner {
    padding: 20px 10px;
  }
}
.article__day {
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
  color: var(--color-green);
  text-align: right;
}
.article__title {
  margin-top: 34px;
  margin-bottom: 20px;
  color: var(--color-red);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .article__title {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}

.textArea > :last-child {
  margin-bottom: 0 !important;
}
.textArea .heading1 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 20px 36px;
  border-radius: 20px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.42;
  background-color: #11c1b9;
}
@media (max-width: 768px) {
  .textArea .heading1 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
}
.textArea .heading1 rt {
  font-size: 1rem;
}
.textArea .heading2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #0fc1b9;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .textArea .heading2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.textArea .heading3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .textArea .heading3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.textArea .heading-short {
  max-width: 300px;
  margin: 40px auto 20px;
  padding: 20px 36px;
  border-radius: 20px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.42;
  text-align: center;
  background-color: #11c1b9;
}
@media (max-width: 768px) {
  .textArea .heading-short {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
}
.textArea .text {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.87;
}
@media (max-width: 768px) {
  .textArea .text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.textArea .img {
  max-width: 80%;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .textArea .img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.textArea .img2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 80%;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .textArea .img2 {
    gap: 10px;
    max-width: 90%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.textArea .movieWrap {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .textArea .movieWrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.textArea .c-black {
  color: #000;
}
.textArea .c-red {
  color: var(--color-red);
}

/*----- common class -----*/
.highlight {
  display: inline;
  padding: 0;
  color: #fff;
}
.highlight-main {
  background: linear-gradient(transparent 50%, var(--bg-brown) 50%) !important;
}
.highlight-red {
  background: linear-gradient(transparent 50%, var(--bg-red) 50%) !important;
}
.highlight-blue {
  background: linear-gradient(transparent 50%, var(--bg-blue) 50%) !important;
}
.highlight-green {
  background: linear-gradient(transparent 50%, var(--bg-green) 50%) !important;
}
.highlight-pink {
  background: linear-gradient(transparent 50%, var(--bg-pink) 50%) !important;
}

.bg-red {
  background-color: var(--bg-red);
}

.bg-blue {
  background-color: var(--bg-blue);
}

.fc-keycolor {
  color: var(--text-brown);
}

.fc-red,
.fl-red::first-letter {
  color: var(--text-red);
}

.fc-blue,
.fl-blue::first-letter {
  color: var(--text-blue);
}

.fc-green {
  color: var(--bg-green);
}

.fc-pink {
  color: var(--text-pink);
}

.fc-orange {
  color: var(--text-orange);
}

.fw-b {
  font-weight: bold;
}

.fz-l {
  font-size: 1.1em;
}

.ta-c,
.align-center {
  text-align: center;
}

.centering {
  display: grid;
  place-content: center;
}

.sprite {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}

.disabled {
  pointer-events: none;
  filter: grayscale(1) brightness(0.8) !important;
}

.movieWrap {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #fff;
}
.movieWrap iframe,
.movieWrap img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

.hover {
  display: block;
}
@media (any-hover: hover) {
  .hover {
    transition: all 0.3s ease-in;
  }
}

.db-sp {
  display: none;
}

@media (max-width: 768px) {
  .db-pc {
    display: none !important;
  }
  .db-sp {
    display: block !important;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 768px) {
  .mt10 {
    margin-top: 1.5% !important;
  }
  .mt15 {
    margin-top: 2.3% !important;
  }
  .mt20 {
    margin-top: 3.1% !important;
  }
  .mt25 {
    margin-top: 3.9% !important;
  }
  .mt30 {
    margin-top: 4.6% !important;
  }
  .mt35 {
    margin-top: 5.4% !important;
  }
  .mt40 {
    margin-top: 6.2% !important;
  }
  .mt45 {
    margin-top: 7% !important;
  }
  .mt50 {
    margin-top: 7.8% !important;
  }
  .mt60 {
    margin-top: 9.3% !important;
  }
  .mt64 {
    margin-top: 10% !important;
  }
  .mt70 {
    margin-top: 10.9% !important;
  }
  .mt80 {
    margin-top: 12.5% !important;
  }
  .mb10 {
    margin-bottom: 1.5% !important;
  }
  .mb15 {
    margin-bottom: 2.3% !important;
  }
  .mb20 {
    margin-bottom: 3.1% !important;
  }
  .mb25 {
    margin-bottom: 3.9% !important;
  }
  .mb30 {
    margin-bottom: 4.6% !important;
  }
  .mb35 {
    margin-bottom: 5.4% !important;
  }
  .mb40 {
    margin-bottom: 6.2% !important;
  }
  .mb45 {
    margin-bottom: 7% !important;
  }
  .mb50 {
    margin-bottom: 7.8% !important;
  }
  .mb60 {
    margin-bottom: 9.3% !important;
  }
  .mb64 {
    margin-bottom: 10% !important;
  }
  .mb70 {
    margin-bottom: 10.9% !important;
  }
  .mb80 {
    margin-bottom: 12.5% !important;
  }
}
:root {
  --bg-main: #2b2022;
  /*#212226;*/
  --bg-red: #b92519;
  --bg-blue: #352bc3;
  --bg-brown: #997c6a;
  --bg-green: #70ab63;
  --bg-pink: #ac7378;
  --bg-orange: #e08e72;
  --bg-img: url("../img/staff_bg.webp");
  --text-brown: #e0a885;
  --text-red: #ff3322;
  --text-blue: #5289ff;
  --text-pink: #de949b;
  --color-yellow: #fff100;
  --ribbon-cut: 5%;
  --fw-bold: 600;
  --fw-nomal: 400;
}

/*-----contentsArea-----*/
.contentsArea__title {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contentsArea__title::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -50%;
  width: 637px;
  height: 296px;
  background: url("../img/title_bg.webp") no-repeat;
  background-size: cover;
  z-index: -3;
}
@media (max-width: 768px) {
  .contentsArea__title::before {
    top: -20%;
    left: -30%;
    width: 50vw;
    height: 23.25vw;
  }
}
.contentsArea__title img {
  margin: 0 auto;
}
.contentsArea.page {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background: url("../img/bg02.webp");
  background-size: cover;
}
@media (max-width: 768px) {
  .contentsArea.page {
    padding-bottom: 6rem;
  }
}
.contentsArea__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}

/*-----heading--border-----*/
.heading--border {
  max-width: 600px;
  margin: 0 auto;
}
.heading--border img {
  width: 100%;
  height: auto;
}

/*-----Introduction-----*/
.intro .contentsArea__title {
  max-width: 65rem;
}
@media (max-width: 768px) {
  .intro .contentsArea__title {
    max-width: 70%;
  }
}
.intro .contentsArea__inner {
  max-width: 120rem;
}
.introTop {
  background-image: url("../../intro/img/intro_bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #4f4144;
  position: relative;
  margin-top: 10rem;
  padding-top: 16rem;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .introTop {
    padding-top: 5rem;
  }
}
.introTop__inner {
  position: relative;
  z-index: 5;
}
.introTop__title {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.8;
  margin-top: 3.2rem;
}
@media (max-width: 768px) {
  .introTop__title {
    font-size: 2.55rem;
  }
}
.introTop__text {
  font-size: 2rem;
  line-height: 2.5;
  margin-top: 2em;
}
@media (max-width: 768px) {
  .introTop__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.introTop__textArea {
  margin-top: 4.8rem;
}
.introTop__textArea::after {
  content: "";
  display: block;
  clear: both;
}
.introTop__footer {
  font-size: 2.2rem;
  line-height: 2.5;
  margin-top: 2em;
  text-align: center;
  font-weight: var(--fw-bold);
}
@media (max-width: 768px) {
  .introTop__footer {
    font-size: 2rem;
    line-height: 2;
  }
}
.introTop__img {
  width: 35%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.431372549);
}
@media (max-width: 768px) {
  .introTop__img {
    width: 80%;
  }
}
.introTop__img01, .introTop__img03, .introTop__img05 {
  float: right;
  transform: rotate(2deg);
  margin-left: 2.4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .introTop__img01, .introTop__img03, .introTop__img05 {
    float: none;
    margin: 2rem auto 0;
  }
}
.introTop__img02, .introTop__img04 {
  float: left;
  transform: rotate(-2deg);
  margin-right: 2.4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .introTop__img02, .introTop__img04 {
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .introTop__img05 {
    transform: rotate(0) translateX(0);
  }
}
.introComment {
  padding-top: 2rem;
}
.introComment__wrappre {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 6.5rem;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .introComment__wrappre {
    grid-template-columns: repeat(1, 1fr);
  }
}
.introComment__item {
  padding: 3rem;
  position: relative;
  z-index: 3;
}
.introComment__item::before, .introComment__item::after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.introComment__item::before {
  background-color: #fff;
  z-index: 1;
}
.introComment__item:first-child .introComment__title {
  background-color: var(--bg-red);
}
.introComment__item:first-child::after {
  z-index: 0;
  background-color: var(--bg-red);
  transform: rotate(3deg);
}
.introComment__item:last-child .introComment__title {
  background-color: var(--bg-blue);
}
.introComment__item:last-child::after {
  z-index: 0;
  background-color: var(--bg-blue);
  transform: rotate(3deg);
}
.introComment__title {
  position: relative;
  display: inline-block;
  z-index: 4;
  margin-left: -3rem;
  padding: 0 4rem;
}
.introComment__text {
  position: relative;
  z-index: 4;
  color: #000;
  margin-top: 4rem;
}

/*-----caststaff-----*/
.caststaff .contentsArea__title {
  max-width: 497px;
}
@media (max-width: 768px) {
  .caststaff .contentsArea__title {
    max-width: 80%;
  }
}
.caststaff .contentsArea__inner {
  max-width: 80rem;
}

/*-----castSection-----*/
.castSection {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .castSection {
    margin-top: 50px;
  }
}
.castSection .heading--border {
  margin-bottom: 0;
}

/*-----castList-----*/
.castList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 84px;
  align-items: center;
  margin-top: 50px;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .castList {
    gap: 16px 60px;
    margin-top: 30px;
    font-size: 5vw;
  }
}
.castList__part {
  position: relative;
  text-align: right;
}
.castList__part::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 23px);
  translate: 0 -50%;
  width: 35px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .castList__part::after {
    left: calc(100% + 15px);
    width: 30px;
  }
}
.castList__actor {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  text-align: left;
}
@media (max-width: 768px) {
  .castList__actor {
    display: block;
  }
}
.castList__actor span {
  padding-left: 0.5em;
  font-size: 0.7em;
}
@media (max-width: 768px) {
  .castList__actor span {
    display: block;
    padding-left: 0;
  }
}
.castList__divider {
  margin-top: 30px;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .castList__divider {
    margin-top: 20px;
  }
}

/*-----staffSection-----*/
.staffSection {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .staffSection {
    margin-top: 80px;
  }
}

/*-----staffList-----*/
.staffList {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .staffList {
    width: 100%;
    margin-top: 20px;
  }
}
.staffList--top {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 60px;
  line-height: 1.7;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .staffList--top {
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 30px;
  }
}
.staffList__block {
  text-align: center;
}
.staffList__part {
  margin-top: 30px;
  color: #e2d5de;
  text-align: center;
}
@media (max-width: 768px) {
  .staffList__part {
    margin-top: 20px;
  }
}
.staffList__name {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .staffList__name {
    font-size: 1.8rem;
  }
}
.staffList__name span {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .staffList__name span {
    font-size: 1.4rem;
  }
}
.staffList__name ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*-----news-----*/
.news .contentsArea__title {
  max-width: 50rem;
}
@media (max-width: 768px) {
  .news .contentsArea__title {
    max-width: 43.5%;
  }
}

/*-----newsFeature-----*/
.newsFeature {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
.newsFeature__item {
  background-color: #E7E8EA;
  border-radius: 5px;
  color: #000;
}
.newsFeature__item + .newsFeature__item {
  margin-top: 20px;
}
.newsFeature__link {
  display: block;
  padding: 4rem;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .newsFeature__link {
    transition: all 0.3s ease-in;
  }
  .newsFeature__link:hover {
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .newsFeature__link {
    padding: 16px;
  }
}
.newsFeature__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .newsFeature__title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.newsFeature__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .newsFeature__content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.newsFeature__thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #ccc;
}
.newsFeature__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsFeature__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsFeature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.newsFeature__tag {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  background-color: #fff;
}
.newsFeature__tag span {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #695535;
  z-index: 3;
}
.newsFeature__tag::after, .newsFeature__tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 2;
}
.newsFeature__tag::before {
  background-color: #2F2526;
  transform: rotate(6deg) scale(1.02);
}
.newsFeature__tag::after {
  background-color: #fff;
}
.newsFeature__text {
  line-height: 1.7;
  margin: 0;
  color: #333;
}
.newsFeature__date {
  font-size: 1.4rem;
  color: #999;
  margin: 0;
  margin-top: auto;
}

/*-----newsList-----*/
.newsList {
  margin-top: 30px;
}
.newsList__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .newsList__grid {
    grid-template-columns: 1fr;
  }
}
.newsList__item {
  background-color: #655F54;
}
.newsList__link {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .newsList__link {
    transition: all 0.3s ease-in;
  }
  .newsList__link:hover {
    opacity: 0.8;
  }
}
.newsList__thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #333;
}
.newsList__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.newsList__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsList__text {
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .newsList__text {
    font-size: 1.2rem;
  }
}
.newsList__date {
  font-size: 1.4rem;
  margin: 0;
}

/*-----newsArticle-----*/
.newsArticle {
  margin: 60px auto 0;
  padding: 30px;
  border-radius: 5px;
  background-color: #E7E8EA;
  color: #000;
}
@media (max-width: 768px) {
  .newsArticle {
    margin-top: 40px;
    padding: 20px 16px;
  }
}
.newsArticle__mainImg {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #ccc;
}
.newsArticle__mainImg img {
  width: 100%;
  height: auto;
}
.newsArticle__title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.newsArticle__title::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 2rem;
  background: linear-gradient(to right, #ff0000 0%, #ff0000 50%, #0c499b 50%, #0c499b 100%);
}
@media (max-width: 768px) {
  .newsArticle__title {
    font-size: 1.8rem;
  }
}
.newsArticle__heading1 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 5rem 0 2rem;
  padding: 1rem 1.6rem;
  color: #fff;
  background-color: #C39DC7;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .newsArticle__heading1 {
    margin: 1.6rem auto;
  }
}
.newsArticle__heading2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: #684A6C;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .newsArticle__heading2 {
    margin: 1.6rem auto;
  }
}
.newsArticle__text {
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.newsArticle__img {
  margin: 4rem auto;
  max-width: 640px;
}
.newsArticle__img-vertical {
  margin: 4rem auto;
  max-width: 480px;
}
.newsArticle__img img {
  width: 100%;
  height: auto;
}
.newsArticle__imgs {
  margin: 20px 0 8px;
}
.newsArticle__imgs--col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
}
@media (max-width: 768px) {
  .newsArticle__imgs--col2 {
    grid-template-columns: 1fr;
  }
}
.newsArticle__figure {
  margin: 0;
  background-color: #ccc;
}
.newsArticle__figure img {
  width: 100%;
  height: auto;
}
.newsArticle__caption {
  font-size: 1.2rem;
  color: #e03a2f;
  margin: 8px 0 20px;
  line-height: 1.6;
}
.newsArticle .faq dt {
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 2rem;
}

/*-----Character-----*/
.character .contentsArea__title {
  max-width: 500px;
}
@media (max-width: 768px) {
  .character .contentsArea__title {
    max-width: 70%;
  }
}

/*-----Character Chart-----*/
.characterChart {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .characterChart {
    margin-top: 40px;
  }
}
.characterChart img {
  width: 100%;
  height: auto;
}

/*-----characterList-----*/
.characterList {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .characterList {
    margin-top: 50px;
  }
}
.characterList__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .characterList__item {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
}
.characterList__item:first-child {
  margin-top: 0;
}
.characterList__item--01 .characterList__img-wrapper::after {
  background-color: var(--bg-red);
}
.characterList__item--01 .characterList__name {
  background-color: var(--bg-red);
}
.characterList__item--02 .characterList__img-wrapper::after {
  background-color: var(--bg-blue);
}
.characterList__item--02 .characterList__name {
  background-color: var(--bg-blue);
}
.characterList__item--03 .characterList__img-wrapper::after {
  background-color: var(--bg-pink);
}
.characterList__item--03 .characterList__name {
  background-color: var(--bg-pink);
}
.characterList__item--04 .characterList__img-wrapper::after {
  background-color: var(--bg-green);
}
.characterList__item--04 .characterList__name {
  background-color: var(--bg-green);
}
.characterList__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
  position: relative;
  z-index: 3;
}
.characterList__img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  background-color: #333;
}
.characterList__img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(3deg);
}
.characterList__body {
  padding: 30px 30px 30px 30px;
}
@media (max-width: 768px) {
  .characterList__body {
    padding: 20px 16px;
  }
}
.characterList__name {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 2rem;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .characterList__name {
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
}
.characterList__text {
  line-height: 1.8;
  margin: 0;
}

/*-----specialGuest-----*/
.specialGuest {
  margin-top: 8rem;
  aspect-ratio: 1000/280;
  overflow: hidden;
}
.specialGuest__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-----guest-----*/
.guest .contentsArea__title {
  max-width: 500px;
}
@media (max-width: 768px) {
  .guest .contentsArea__title {
    max-width: 70%;
  }
}

/*-----guestHeading-----*/
.guestHeading {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 30px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .guestHeading {
    font-size: 3.2rem;
    margin: 30px 0 20px;
  }
}

/*-----guestNav-----*/
.guestNav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .guestNav {
    gap: 6px;
    margin-bottom: 30px;
  }
}
.guestNav__item a {
  position: relative;
  z-index: 0;
  display: grid;
  place-content: center;
  padding: 0.8em 0;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .guestNav__item a {
    width: 60px;
    font-size: 1.3rem;
  }
}
.guestNav__item a::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: -50%;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-top: 4px solid #ff0000;
  border-bottom: 4px solid #0c499b;
  transition: transform 0.3s ease;
  transform: translateX(50%) skew(15deg);
}
.guestNav__item a.current::before, .guestNav__item a:hover::before {
  transform: translateX(50%) skew(0);
}

/*-----guestProfile-----*/
.guestProfile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .guestProfile {
    gap: 40px;
  }
}
.guestProfile__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
}
@media (max-width: 768px) {
  .guestProfile__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.guestProfile__img {
  background-color: #333;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.guestProfile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guestProfile__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guestProfile__name {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  padding: 1rem 1.6rem;
  background-color: #574E5A;
}
@media (max-width: 768px) {
  .guestProfile__name {
    font-size: 1.8rem;
  }
}
.guestProfile__text {
  line-height: 1.8;
  margin: 0;
}

/*-----guestBack-----*/
.guestBack {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .guestBack {
    margin-top: 40px;
  }
}
.guestBack a {
  display: inline-block;
  padding: 1em 3em;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .guestBack a {
    transition: all 0.3s ease-in;
  }
  .guestBack a:hover {
    opacity: 0.7;
  }
}

/*-----story-----*/
.story .contentsArea__title {
  max-width: 50rem;
}
@media (max-width: 768px) {
  .story .contentsArea__title {
    max-width: 43.5%;
  }
}

/*-----storyEpisode-----*/
.storyEpisode {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .storyEpisode {
    margin-top: 4rem;
  }
}
.storyEpisode__mv {
  background-color: #333;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0px 0px 22px 5px var(--bg-blue);
}
.storyEpisode__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.storyEpisode__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .storyEpisode__header {
    gap: 12px;
    margin-top: 16px;
    align-items: center;
  }
}
.storyEpisode__num {
  position: relative;
  padding-left: 0.5em;
  padding-bottom: 0.2em;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@media (max-width: 768px) {
  .storyEpisode__num {
    padding-left: 1.5rem;
    font-size: 3rem;
    width: 3.5em;
  }
}
.storyEpisode__num span {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .storyEpisode__num span {
    font-size: 2rem;
  }
}
.storyEpisode__num::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 80px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .storyEpisode__num::before {
    width: 100%;
    height: 60px;
  }
}
.storyEpisode__date {
  font-size: 2.4rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}
.storyEpisode__text {
  margin-top: 2.4rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .storyEpisode__text {
    margin-top: 1.6rem;
  }
}
.storyEpisode .movieWrap {
  margin-top: 4rem;
}
.storyEpisode__imgs {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .storyEpisode__imgs {
    margin-top: 16px;
  }
}
.storyEpisode__imgs img {
  width: 100%;
  height: auto;
  background-color: #333;
}
.storyEpisode__imgs--col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .storyEpisode__imgs--col2 {
    gap: 8px;
  }
}
.storyEpisode__imgs--col1 {
  display: block;
}

/*-----backnumber-----*/
.backnumber {
  padding: 60px 0;
  background-color: #c8c8c8;
}
@media (max-width: 768px) {
  .backnumber {
    padding: 40px 0;
  }
}
.backnumber__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 16px;
}
.backnumber__heading {
  display: grid;
  place-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 0.8em 3em;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  border: 2px solid #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .backnumber__heading {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.backnumber__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .backnumber__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
.backnumber__link {
  display: block;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .backnumber__link {
    transition: all 0.3s ease-in;
  }
  .backnumber__link:hover {
    opacity: 0.8;
  }
}
.backnumber__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #999;
}
.backnumber__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.backnumber__num {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #1b2231;
}
.backnumber__date {
  margin: 6px 0 0;
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .backnumber__date {
    font-size: 1rem;
  }
}/*# sourceMappingURL=page.css.map */