@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS（基本的にこのCSSは変更しないようにしてください）
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
}

.wrapper {
  position: relative;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1;
  word-wrap: break-word;
  overflow: hidden;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.wrapper a {
  display: block;
}

section,
main,
header,
footer {
  position: relative;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(710 / 750 * 100%);
  z-index: 2;
}

.main > * {
  padding: 10rem 0;
}
.main .inner {
  padding: 10rem calc(30 / 750 * 100%);
}

.main p,
.popup p {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1600 * 100vw);
  }
  .wrapper {
    font-size: 18px;
    font-size: max(1.8rem, 14px);
  }
  .wrapper a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .wrapper a:hover {
    opacity: 0.7;
  }
  .inner {
    width: 90%;
    max-width: 1200px;
  }
  .main .inner {
    padding: 5rem calc(100 / 1600 * 100%);
    max-width: 1000px;
  }
  .main p,
  .popup p {
    line-height: 1.777;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
  .main .inner {
    padding: 50px 100px;
  }
}
/* =====================================================================
*    header
* =================================================================== */
.header_top {
  position: relative;
}
.header_top h1 {
  margin: 0 calc(50% - 50vw);
}
.header_top .banner_list {
  margin-top: 2.2rem;
}
.header_date {
  padding: 4.5rem 0;
}

.nav {
  padding: 5rem 0;
}
.nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .nav_menu {
    margin: 0 calc(50% - 50vw);
  }
}
.nav_menu li {
  position: relative;
  text-align: center;
  width: 25%;
  font-size: 2.8rem;
}
.nav_menu li::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  border-left: 2px solid;
}
@media screen and (max-width: 767px) {
  .nav_menu li:nth-child(4n)::after {
    display: none;
  }
}
.nav_menu li a {
  padding: 0.45em 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav_menu li.nolink a {
  opacity: 0.35;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  pointer-events: none;
}
.nav_menu li.nav_backnumber a {
  font-size: 92%;
  letter-spacing: -0.1em;
}
.nav_date {
  position: absolute;
  text-align: center;
  top: -1.6em;
  left: 50%;
  padding: 0.2em 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  font-weight: 600;
  font-size: 80%;
  white-space: nowrap;
  z-index: 1;
}
.nav .banner_list {
  margin-top: 6rem;
}
.nav .banner_list li {
  width: calc(486 / 710 * 100%);
}

@media screen and (min-width: 768px) {
  .header_top h1 img {
    margin: 0 auto;
    max-width: 1200px;
  }
  .header_date {
    padding: 2rem 0;
    margin: 0 auto;
    width: calc(900 / 1200 * 100%);
  }
  .nav {
    padding: 3.5rem 0;
  }
  .nav_menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .nav_menu li {
    margin: 0;
    min-width: 7em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
  }
  .nav_menu li:first-child::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    border-left: 2px solid;
  }
  .nav_menu li a {
    padding-left: 1em;
    padding-right: 1em;
  }
  .nav_menu li a:hover {
    opacity: 0.6;
  }
  .nav .banner_list {
    margin-top: 3.5rem;
    -webkit-column-gap: calc(30 / 1000 * 100%);
       -moz-column-gap: calc(30 / 1000 * 100%);
            column-gap: calc(30 / 1000 * 100%);
  }
  .nav .banner_list li {
    width: calc(290 / 1000 * 100%);
  }
}
/* =====================================================================
    subpage
======================================================================*/
.gDef-wrapper:not(#top) .header_top h1 img {
  margin: 0 auto;
  width: calc(480 / 750 * 100%);
}

@media screen and (min-width: 768px) {
  .gDef-wrapper:not(#top) .header_top .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gDef-wrapper:not(#top) .header_top h1 {
    margin: 0;
    width: calc(480 / 1200 * 100%);
    background-color: transparent;
  }
  .gDef-wrapper:not(#top) .header_top h1 img {
    width: 100%;
  }
  .gDef-wrapper:not(#top) .header_date {
    margin: 0;
    width: calc(620 / 1200 * 100%);
  }
}
/* =====================================================================
    banner_list
======================================================================*/
.banner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.banner_list li {
  width: calc(600 / 710 * 100%);
}

@media screen and (min-width: 768px) {
  .banner_list {
    gap: 3rem calc(40 / 1000 * 100%);
  }
  .banner_list li {
    width: calc(480 / 1000 * 100%);
  }
  .banner_list li a {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .banner_list li a:hover {
    opacity: 1;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
}
/* =====================================================================
    共通
======================================================================*/
.sec_ttl {
  margin: 0 auto 8rem !important;
  width: 48rem;
}

.movie_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie_embed iframe,
.movie_embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .sec_ttl {
    margin-bottom: 5rem !important;
    width: 47rem;
  }
}
/* =====================================================================
    info
======================================================================*/
.info_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
.info_content_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
.info_content_images li {
  width: 100%;
}
.info_content_images li figure figcaption {
  text-align: center;
  margin-top: 0.5em;
  font-size: 80%;
  line-height: 1.35;
}
.info_content time {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.3em 1em;
  font-weight: 900;
  font-size: 86%;
  letter-spacing: 0.05em;
  border-radius: 3em;
}
.info_content h3 {
  font-weight: 600;
  font-size: 120%;
  line-height: 1.59;
}
.info_content header {
  width: 100%;
}
.info_content header h3 {
  padding-bottom: 0.5em;
  font-size: 120%;
  border-bottom: 2px solid currentColor;
}
.info_content h4 {
  padding-left: 0.8em;
  font-size: 115%;
  font-weight: 600;
  line-height: 1.666;
  border-left: 0.18em solid;
}
.info_content h4 + p {
  margin-top: -4rem;
}
.info_content h5 {
  line-height: 1.666;
}
.info_content h5 + p {
  margin-top: -4rem;
}
.info_content p strong {
  font-weight: normal;
}
.info_content p a {
  display: inline;
  text-decoration: underline;
}
.info_content p a::before {
  content: "";
  position: relative;
  display: inline-block;
  top: -0.1em;
  width: 0.55em;
  height: 0.55em;
  margin-right: 0.6em;
  border-top: 3px solid;
  border-right: 3px solid;
  border-color: currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.info_date {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 128%;
}

@media screen and (min-width: 768px) {
  .info_content {
    gap: 4rem;
  }
  .info_content_images {
    -webkit-column-gap: calc(32 / 800 * 100%);
       -moz-column-gap: calc(32 / 800 * 100%);
            column-gap: calc(32 / 800 * 100%);
  }
  .info_content_images li:not(.large) {
    width: calc(384 / 800 * 100%);
  }
  .info_content h3 {
    font-size: 136%;
  }
  .info_content header h3 {
    font-size: 136%;
  }
  .info_content h4 + p,
  .info_content h5 + p {
    margin-top: -2rem;
  }
  .info_content p strong {
    font-weight: normal;
  }
}
/* =====================================================================
    nextstory
======================================================================*/
.nextstory_date {
  text-align: center;
  padding: 0.35em;
  width: 100%;
  font-size: 120%;
  font-weight: 600;
  line-height: 1.5 !important;
  letter-spacing: 0.05em;
  border-radius: 3em;
}
@media screen and (min-width: 768px) {
  .nextstory_date {
    margin: 0 auto;
    padding: 0.35em 1.5em;
    width: auto;
    font-size: 155%;
    letter-spacing: 0.1em;
  }
}
.nextstory_date em {
  font-style: normal;
  font-size: 132%;
}
.nextstory_date + .nextstory_notice {
  margin-top: -4rem;
}
@media screen and (min-width: 768px) {
  .nextstory_date + .nextstory_notice {
    margin-top: -2rem;
  }
}
.nextstory_notice {
  text-align: center;
  font-size: 80%;
}

/* =====================================================================
    cast
======================================================================*/
.cast > .inner > *:not(:last-child),
.staff > .inner > *:not(:last-child) {
  margin-bottom: 8rem;
}

.cast_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem calc(50 / 650 * 100%);
}
.cast_list li {
  width: calc(300 / 650 * 100%);
}
.cast_list li figure {
  margin-bottom: 1.5rem;
}
.cast_list li dl {
  text-align: center;
  font-size: 146%;
  line-height: 1.4;
}
.cast_list li dl dt {
  position: relative;
  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;
  margin-bottom: 0.1em;
  font-weight: 900;
  font-size: 63%;
}
.cast_list li dl dt::before, .cast_list li dl dt::after {
  content: "";
  width: 1em;
  border-top: 1px solid currentColor;
}
.cast_list li dl dt::before {
  margin-right: 0.5em;
}
.cast_list li dl dt::after {
  margin-left: 0.5em;
}
.cast_list li dl dd {
  font-weight: 700;
}
.cast_list_main li {
  width: calc(480 / 650 * 100%);
}
.cast_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.cast_item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 146%;
  line-height: 1.4;
}
.cast_item dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1em;
  padding: 0.25em 1em;
  font-size: 63%;
}
.cast_item dl dd {
  font-weight: 700;
}
.cast + .staff {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .cast_list {
    gap: 4rem calc(40 / 1000 * 100%);
  }
  .cast_list li {
    width: calc(340 / 1000 * 100%);
  }
  .cast_list li dl {
    font-size: 166%;
  }
  .cast_list_main li {
    width: calc(300 / 1000 * 100%);
  }
  .cast_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
  .cast_item dl {
    min-width: 48%;
    font-size: 166%;
  }
}
/* =====================================================================
    tver
======================================================================*/
.tver_embed {
  position: relative;
  width: 100%;
}
.tver_embed a {
  position: relative;
  display: block;
  width: 100%;
}
.tver_embed a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18.4615384615%;
  max-width: 120px;
  aspect-ratio: 1/1;
  background-image: url(../images/common/icon_tver.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .tver_embed a:hover {
    opacity: 1;
  }
  .tver_embed a:hover::before {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}

/* =====================================================================
    news & backnumber
======================================================================*/
.n_b > section + section {
  padding-top: 10rem;
}

.news_list li {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid;
}
.news_list li:last-child {
  margin-bottom: 0;
}
.news_list li time {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.3em 1em;
  font-weight: 900;
  font-size: 86%;
  letter-spacing: 0.05em;
  border-radius: 3em;
}
.news_list li h3 {
  margin-bottom: 2rem;
  font-size: 120%;
  font-weight: 700;
  line-height: 1.666;
}
.news_list li p {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .news_list li {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .news_list li h3 {
    margin-bottom: 0.1em;
    font-size: 111%;
  }
}
/* =====================================================================
*    footer
* =================================================================== */
.footer_banner {
  padding: 10rem 0;
}
.footer_sns {
  padding: 10rem 0;
}
.footer_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.footer_sns_list li {
  width: calc(518 / 710 * 100%);
}
.footer_sns_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  padding: 1.666em 1em;
  letter-spacing: 0.05em;
}
.footer_sns_list li a svg {
  margin: 0 1.5em;
  width: 1.833em;
  height: 1.833em;
}
.footer_ranking {
  padding: 12rem 0 35rem;
  background: #f5f5f5;
}
.footer_ranking .sec_ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .footer_ranking_wrap {
    margin: 0 calc(50% - 50vw);
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
.footer_ranking_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 140rem;
  padding: 0 calc(20 / 750 * 100%) 3rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 2;
  counter-reset: number 0;
}
.footer_ranking_list li {
  width: 42rem;
  counter-increment: number 1;
}
@media screen and (max-width: 767px) {
  .footer_ranking_list li {
    margin-right: 3rem;
  }
}
.footer_ranking_list li figure {
  position: relative;
}
.footer_ranking_list li figure::before {
  content: counter(number);
  position: absolute;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 1.58em;
  height: 1.58em;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  background-color: #000000;
  border-bottom-right-radius: 0.384em;
}
.footer_ranking_list li p {
  margin-top: 0.3em;
  font-size: 86%;
  line-height: 1.615;
}

.fix_content {
  position: fixed;
  bottom: 2rem;
  right: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.fix_content.is-show {
  opacity: 1;
  visibility: visible;
}

.delivery_bnr {
  margin-bottom: 3rem;
}
.delivery_bnr_close {
  position: absolute;
  top: -0.8em;
  left: -0.8em;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: #f1f1f1;
  z-index: 1;
}
.delivery_bnr_close::after {
  content: "×";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 1em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #000;
  letter-spacing: 0;
  cursor: pointer;
}
.delivery_bnr_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: auto;
}
.delivery_bnr_list li {
  width: 22rem;
}
.delivery_bnr_list li a {
  display: block;
  width: 100%;
  padding: 0.5em 0;
}
.delivery_bnr_list li a img {
  width: 72.7272727273%;
  margin: 0 auto;
}
.delivery_bnr_list li p {
  margin-bottom: 0.5em;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
}
.delivery_bnr_list li.delivery_bnr_tver a {
  background: #21abe6;
}
.delivery_bnr_list li.delivery_bnr_fod a {
  background: #1a1c22;
}
.delivery_bnr_list li.delivery_bnr_fod a span {
  color: #bb012b;
  font-weight: 700;
}

.pagetop {
  margin-left: auto;
  width: 12rem;
  height: 12rem;
}
.pagetop a {
  position: relative;
  width: 100%;
  height: 100%;
}
.pagetop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 42%;
  left: 50%;
  width: 20%;
  height: 20%;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: translateX(-50%) rotate(315deg);
          transform: translateX(-50%) rotate(315deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.copyright {
  text-align: center;
  padding: 4rem 0;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .footer_banner {
    padding: 5rem 0;
  }
  .footer_sns {
    padding: 5rem 0;
  }
  .footer_sns_list {
    gap: 3rem calc(40 / 1200 * 100%);
  }
  .footer_sns_list li {
    width: calc(270 / 1200 * 100%);
  }
  .footer_sns_list li a {
    text-align: center;
    display: block;
    padding: 1.15em;
    font-size: 2rem;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .footer_sns_list li a:hover {
    opacity: 1;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  .footer_sns_list li a svg {
    display: block;
    margin: 0 auto 0.8em;
  }
  .footer_ranking {
    padding-top: 6rem;
  }
  .footer_ranking_list {
    width: 100%;
    padding: 0;
    gap: 0 calc(40 / 1200 * 100%);
  }
  .footer_ranking_list li {
    width: calc(270 / 1200 * 100%);
  }
  .footer_ranking_list li figure::before {
    font-size: 88%;
  }
  .footer_ranking_list li p {
    font-size: 100%;
  }
  .delivery_bnr_list a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .delivery_bnr_list a:hover {
    opacity: 1;
  }
  .delivery_bnr_list a:hover img {
    opacity: 0.7;
  }
  .pagetop {
    width: 10rem;
    height: 10rem;
  }
  .pagetop a:hover {
    opacity: 1;
  }
  .pagetop a:hover::after {
    top: 35%;
  }
  .copyright {
    padding: 2rem 0;
    font-size: 1.6rem;
  }
}
/* =====================================================================
    print
======================================================================*/
@media print {
  .header_top img,
  .info_content_images img,
  .cast_list img,
  .footer_ranking_list img {
    display: none;
  }
}/*# sourceMappingURL=layout.css.map */