@charset "UTF-8";
/* ===============================================
#擬似要素中央配置 mixin
=============================================== */
/* ===============================================
# navigation
=============================================== */
:root {
  --header_bg_color: linear-gradient(180deg, #212123 0%, rgba(33, 33, 35, 0) 100%);
  --mobile_bg_color:#000;
  --bg_color: #000;
  --link_color: #fff;
  --txt_color: #fff;
  --txt_sub: #6A6A6C;
  --key_color: #9061A6;
  --ac_color: #d1202d;
  --ob_lighten: #413445;
  --ob_darken: #261D29;
  --button-color:#000;
  --button-text-color:#fff;
  --flex-gap:30px;
  --font-noto:"Noto Sans JP", sans-serif;
  --main_padding:20px;
  --caution:#FF2D17;
}

/* ===============================================
# SNSカラー
=============================================== */
.container {
  padding-top: 100px;
}

.h_outer {
  margin-bottom: 40px;
}

.sec_h {
  display: inline-block;
  position: relative;
  color: var(--ob_lighten);
  background: #fff;
  font-size: 50px;
  line-height: 1em;
  letter-spacing: 2px;
  font-weight: bold;
  padding: 10px;
}
.sec_h:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 18px;
  background: #fff;
  top: 0;
  right: -40px;
}
.sec_h:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  background: #fff;
  bottom: 0;
  right: -20px;
}

.sec_h_sub {
  text-align: center;
  font-size: 20px;
  line-height: 1.4em;
  color: var(--txt_sub);
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .sec_h {
    font-size: 30px;
  }
}
.body_top .header__title {
  transform: translateY(-103%);
  transition: 0.3s;
}
.body_top .header__title.active {
  transform: translateY(0);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .body_top .header__title {
    transform: translateY(0);
  }
}

.front_ob {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0.2;
  pointer-events: none;
}
.front_ob .net_wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.front_ob .net_wrap .ob {
  position: absolute;
}
.front_ob .net_wrap .ob01 {
  left: 0;
  top: 0;
  width: 46%;
}
.front_ob .net_wrap .ob02 {
  left: 0;
  bottom: 0;
  width: 34%;
}
.front_ob .net_wrap .ob03 {
  right: 0;
  top: 0;
  width: 46%;
}
.front_ob .net_wrap .ob04 {
  right: 0;
  bottom: 0;
  width: 40%;
}

.fix_bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.fix_bg video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

main {
  z-index: 2;
  position: relative;
}

.news-wrap li {
  border-bottom: 1px solid var(--ob_lighten);
}
.news-wrap .link_arrow {
  right: 20px;
  position: absolute;
  background: url(../images/icon_next.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 16px;
  top: 25px;
}
.news-wrap .news_link {
  display: block;
  width: 100%;
  align-items: center;
  color: #fff;
  padding: 20px 0 20px 10px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.news-wrap .news_link.disactive {
  pointer-events: none !important;
}
.news-wrap .news_link:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--ob_darken);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.news-wrap .news_link:hover {
  opacity: 1;
  color: #fff;
}
.news-wrap .news_link:hover::before {
  transform-origin: 0% 50%;
  transform: scale(1);
}
.news-wrap .news_link:hover .link_arrow:before {
  border-color: #fff;
}
.news-wrap .news_link:hover .link_arrow:after {
  background: #fff;
}
.news-wrap .news_link:hover .date {
  color: #fff;
}
.news-wrap .date {
  width: 100%;
  position: relative;
  margin-bottom: 0.4em;
  color: var(--key_color);
  display: flex;
  align-items: center;
}
.news-wrap .date span {
  display: block;
  font-weight: bold;
}
.news-wrap .date span.month {
  line-height: 1em;
}
.news-wrap .text {
  width: 100%;
  padding-right: 70px;
  font-size: 14px;
  line-height: 1.6em;
}
.news-wrap ul {
  margin-bottom: 30px;
}
.news-wrap .button {
  margin-left: 1px;
  margin-right: auto;
  max-width: 300px;
}
.news-wrap .button a:before {
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
}

.single article {
  margin-bottom: 60px;
}
.single .day {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--key_color);
}
.single .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
.single .txt_box a {
  color: #fff;
  text-decoration: underline;
}
.single h2 {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: bold;
  border-left: 5px solid var(--key_color);
  padding: 0.4em 0.6em 0.3em;
  margin-bottom: 0.6em;
}
.single blockquote {
  padding: 30px;
  background: var(--ob_darken);
  border-radius: 10px;
  margin-bottom: 2em;
}
.single p {
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 1.5em;
}
.single .button {
  margin: 0 auto;
}

.pagination {
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  border: 1px solid #707070;
  padding: 14px 16px;
  margin: 0 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2509803922);
  font-size: 14px;
  line-height: 1em;
  box-sizing: border-box;
  width: 44px;
}
.pagination .page-numbers.current {
  background: var(--key-color);
  color: #fff;
  border-color: var(--key_color);
}
.pagination .page-numbers.prev {
  width: auto;
}
.pagination .page-numbers.next {
  width: auto;
}

@media screen and (max-width: 768px) {
  .news-wrap .link_arrow {
    right: 0px;
  }
  .news-wrap .text {
    padding-right: 40px;
  }
  .news-wrap .news_link:hover .link_arrow {
    right: -10px;
  }
  .news-wrap .button {
    margin: 0 auto;
    max-width: inherit;
  }
  .news-wrap .button a {
    padding: 16px;
  }
  .single .title {
    font-size: 18px;
  }
  .single h2 {
    font-size: 16px;
    border-width: 3px;
  }
  .single blockquote {
    padding: 20px;
  }
  .single p {
    font-size: 13px;
  }
}
/* ================================= FV =================================== */
#fv .bg_txt {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
}
#fv .bg_txt .txt img {
  display: block;
}
#fv .bg_txt .txt.txt02 {
  margin-top: -0.7%;
  opacity: 0.7;
}
#fv .top_inner {
  display: flex;
  width: 88%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#fv .top_inner .text_block {
  width: 38vw;
  position: absolute;
  padding-top: 100px;
}
#fv .top_inner .text_block.fixed {
  position: fixed;
  top: 0;
}
#fv .top_inner .text_block.btm {
  position: absolute;
  bottom: 0;
  top: inherit;
}
#fv .top_inner .text_block .block_inner {
  width: 86%;
  margin: 0 auto;
}
#fv .top_inner .text_block .logo {
  margin: 0 auto 14%;
  width: 92%;
}
#fv .top_inner .text_block .date {
  margin: 0 auto 14%;
  width: 100%;
}
#fv .top_inner .img_block {
  width: 55%;
  position: relative;
  margin-right: 0;
  margin-left: auto;
}
#fv .top_inner .img_block .kv_txt {
  width: 6%;
  position: absolute;
  bottom: 0;
  right: -10%;
}
#fv .button {
  max-width: 100%;
}
#fv .button_wrap .button:not(:last-of-type) {
  margin-bottom: 2.2%;
}
#fv .button_wrap .button.bnr a {
  padding: 2em 32px 2em 1.2em;
  font-size: min(1.2vw, 14px);
}
#fv .fv_box {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  max-height: 50%;
  z-index: 2;
  pointer-events: none;
}
#fv .fv_box .kv_txt {
  width: 4%;
  bottom: 4%;
  right: 0;
  position: absolute;
}
#fv .fv_box .kv_txt img {
  max-height: 60vh;
}

@media screen and (max-width: 768px) {
  #fv .bg_txt {
    top: 60px;
  }
  #fv .top_inner {
    flex-direction: column-reverse;
  }
  #fv .top_inner .text_block {
    position: relative;
    width: 100%;
    padding-top: 0;
    margin-top: 3vw;
    z-index: 3;
  }
  #fv .top_inner .text_block .block_inner {
    width: 100%;
  }
  #fv .top_inner .text_block .logo {
    width: 80%;
    margin: 0 auto 6%;
  }
  #fv .top_inner .text_block .date {
    margin: 0 auto 10%;
  }
  #fv .top_inner .img_block {
    width: 100%;
  }
  #fv .fv_box {
    z-index: 1;
  }
  #fv .fv_box .kv_txt {
    bottom: inherit;
    top: 80vw;
    width: 9%;
  }
  #fv .button_wrap .button.bnr a {
    font-size: 3vw;
    line-height: 1.6em;
  }
}
/* ================================= FV =================================== */
/* ================================= ニュース =================================== */
.section_outer_news {
  display: flex;
  width: min(92%, 1100px);
  margin: 0 auto;
  gap: 4%;
}
.section_outer_news .section_wrap {
  width: 48%;
}

.x_box {
  background: #fff;
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 768px) {
  .section_outer_news {
    display: block;
    margin: 0 auto 60px;
  }
  .section_outer_news .section_wrap {
    width: 100%;
  }
}
/* ================================= ニュース =================================== */
/* ================================= TOPキャスト =================================== */
.cast_wrap ul {
  display: flex;
  justify-content: center;
}
.cast_wrap ul:not(:last-of-type) {
  margin-bottom: 20px;
}
.cast_wrap ul.row-2 {
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 14px;
}
.cast_wrap ul.row-2 li {
  margin: 0 1.6% 1.4%;
}
.cast_wrap li {
  margin: 0 1.6%;
}
.cast_wrap li dl {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.6em;
}
.cast_wrap li dl dt {
  color: var(--key_color);
  font-size: 14px;
  margin-right: 8px;
}
.cast_wrap li dl dd {
  font-weight: bold;
}
.cast_wrap li.main dl dd {
  font-size: 20px;
}
.cast_wrap li.main dl dd .small {
  font-size: 14px;
}

#cast {
  margin-bottom: 140px;
  padding-top: 100px;
}
#cast .content_wrap:not(:last-of-type) {
  margin-bottom: 50px;
}
#cast .h_outer {
  margin-bottom: 24px;
}
#cast .button {
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  .cast_wrap ul {
    flex-wrap: wrap;
  }
  .cast_wrap ul.row-2 {
    margin: 0 auto 30px;
  }
  .cast_wrap li {
    margin: 0 4% 4%;
  }
  .cast_wrap li dl dt {
    font-size: 12px;
  }
  .cast_wrap li.main {
    margin: 0;
  }
  #cast {
    width: 96%;
    margin: 0 auto 80px;
  }
  #cast .button {
    max-width: inherit;
    width: 92%;
  }
}
/* ================================= TOPキャスト =================================== */
/* ================================= TOPムービー =================================== */
#movie {
  overflow: hidden;
}
#movie .movie_block {
  position: relative;
}
#movie .movie_block .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#movie .movie_block .video-block {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
#movie .movie_block .video-block img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
  opacity: 0.8;
}
#movie .movie_block a:hover {
  opacity: 1;
}
#movie .movie_block a:hover .video-block img {
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.2s;
  opacity: 1;
}

/* ================================= TOPムービー =================================== */
/* ================================= 下層 =================================== */
.body_in .container {
  padding-bottom: 50px;
  padding-top: 120px;
}
.body_in .h_outer {
  position: relative;
  margin-bottom: 110px;
}
.body_in .h_outer .slider-box {
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.body_in .h_outer .page_title {
  z-index: 2;
  position: relative;
}
.body_in .content_wrap:not(:last-of-type) {
  margin-bottom: 100px;
}
.body_in .sec-inner {
  padding-bottom: 10px;
}
.body_in .section_wrap {
  overflow: hidden;
}

.page_title {
  position: relative;
}
.page_title img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  max-height: 154px;
  -webkit-animation: scaleVertical 0.4s both;
          animation: scaleVertical 0.4s both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.page_title:before {
  position: absolute;
  content: attr(data-title) "";
  font-weight: bold;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
  -webkit-animation: showOut 0.4s both;
          animation: showOut 0.4s both;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes scaleVertical {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes scaleVertical {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes showOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeup {
  0% {
    transform: translateY(5%);
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(5%);
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
@-webkit-keyframes fadeupSp {
  0% {
    transform: translateY(5%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeupSp {
  0% {
    transform: translateY(5%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeScale {
  0% {
    opacity: 0;
    transform: translateY(2%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: translateY(2%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-play.fadeInBottom {
  -webkit-animation: fadeup 0.6s both ease-in-out;
          animation: fadeup 0.6s both ease-in-out;
}
.js-play.fadeScale {
  -webkit-animation: fadeScale 0.6s both ease-in-out;
          animation: fadeScale 0.6s both ease-in-out;
}

@media screen and (max-width: 768px) {
  .body_in .h_outer {
    margin-bottom: 60px;
  }
  .page_title {
    width: 94%;
    margin: 0 auto;
  }
  .page_title img {
    max-height: 90px;
  }
}
.intro_text {
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 2.6em;
  font-weight: bold;
  margin-bottom: 180px;
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .intro_text {
    font-size: 14px;
    text-align: left;
    width: 94%;
    margin: 0 auto 60px;
    padding-top: 20px;
  }
}
.story_wrap {
  background: var(--ob_lighten);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.story_wrap:before {
  position: absolute;
  content: "";
  background: url(../images/story_cross.svg) no-repeat center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
}
.story_wrap .sub_title {
  font-size: 80px;
  font-weight: bold;
  line-height: 1.1em;
  position: relative;
  padding-top: 82px;
  margin-bottom: 52px;
  color: var(--key_color);
}
.story_wrap .sub_title:before {
  position: absolute;
  content: "";
  background: url(../images/story_subtitle.svg) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 82px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.story_wrap .text_block {
  position: relative;
}
.story_wrap .text_block p {
  line-height: 2em;
  letter-spacing: 0.1em;
}
.story_wrap .text_block p.catch {
  font-size: 30px;
  font-weight: bold;
}
.story_wrap .text_block p:not(:last-of-type) {
  margin-bottom: 2em;
}
.story_wrap.js-play {
  transition: 0.3s;
}
.story_wrap.js-play:before {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .story_wrap {
    padding: 50px 0;
  }
  .story_wrap .sub_title {
    font-size: 40px;
  }
  .story_wrap .text_block {
    font-size: 14px;
    text-align: left;
    width: 92%;
    margin: 0 auto;
  }
  .story_wrap .text_block p.catch {
    font-size: 20px;
  }
}
.section_title {
  width: 94%;
  margin: 0 auto 50px;
}
.section_title span {
  display: inline-block;
  width: 100%;
  background: var(--key_color);
  color: #fff;
  font-size: 50px;
  line-height: 1.1em;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  position: relative;
}
.section_title span:before {
  position: absolute;
  content: "";
  width: 105%;
  height: 18px;
  background: var(--key_color);
  top: 0;
  left: 50.8%;
  transform: translateX(-50%);
  z-index: -1;
}
.section_title span:after {
  position: absolute;
  content: "";
  width: 105%;
  height: 18px;
  background: var(--key_color);
  bottom: 0;
  left: 49.2%;
  transform: translateX(-50%);
  z-index: -1;
}
.section_title.js-play {
  -webkit-animation: wideOut 0.4s both;
          animation: wideOut 0.4s both;
}

@-webkit-keyframes wideOut {
  0% {
    opacity: 0;
    transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes wideOut {
  0% {
    opacity: 0;
    transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .section_title span {
    font-size: 30px;
    line-height: 1.3em;
    padding: 5px;
  }
}
.cs {
  color: var(--key_color);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 100px;
  padding-top: 50px;
}

/* ================================= キャスト =================================== */
.cast:not(:last-of-type) {
  margin-bottom: 120px;
}
.cast .list_01 {
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}
.cast .list_01 li {
  width: 24%;
  margin: 0 1%;
  text-align: center;
}
.cast .list_01 li a {
  color: #fff;
}
.cast .list_01 li figure {
  line-height: 0;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.cast .list_01 li .castname {
  color: var(--key_color);
  margin-bottom: 0.6em;
}
.cast .list_01 li .actname {
  font-size: 20px;
  line-height: 1em;
  font-weight: bold;
}
.cast .list_01 li .actname span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 3em;
  color: #fff;
  margin-top: 0.4em;
}
.cast .list_01 li:nth-child(4n) {
  margin-right: 0;
}
.cast .list_01.twin {
  position: relative;
  padding-bottom: 140px;
}
.cast .list_01.twin .twin_box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cast .list_01.twin .badge_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.cast .list_01.twin .badge_wrap .badge {
  background: var(--key_color);
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 10px;
}
.cast .other {
  font-size: 16px;
  line-height: 2em;
  margin-bottom: 6em;
}
.cast .list_02 {
  margin-bottom: 40px;
  font-family: var(--font-noto);
  width: 100%;
}
.cast .list_02 li {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 12px;
  padding-right: 0.5em;
}
.cast .list_02 li.togashi {
  margin-bottom: 40px;
}
.cast .list_02 li.togashi .staffname {
  font-size: 30px;
  line-height: 1.5em;
}
.cast .list_02 li.togashi .staffname span {
  font-size: 0.6em;
}
.cast .list_02 li .rolename {
  color: var(--txt_sub);
  font-size: 12px;
  line-height: 1.5em;
  margin-bottom: 0.4em;
}
.cast .list_02 li .staffname {
  font-weight: bold;
}
.cast .list_02 li .staffname .logo {
  display: inline-block;
  width: 90px;
}
.cast .list_02.flex {
  display: flex;
  flex-wrap: wrap;
}
.cast .list_02.flex li {
  width: 33%;
}
.cast .list_02.flex li.lastsingle {
  width: 100%;
}
.cast .list_02:not(:last-of-type) { /*border-bottom: 1px solid var(--ob_lighten);*/
  padding-bottom: 20px;
}
.cast .ensemble {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 42em;
  margin: 0 auto 80px;
}
.cast .ensemble li {
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 14.28%;
  text-align: center;
  margin-bottom: 0.5em;
}
.cast .ensemble:not(:last-of-type) {
  margin-bottom: 1em;
}
.cast .other_box {
  text-align: center;
  font-weight: bold;
}
.cast .other_box p {
  font-size: 22px;
  line-height: 1.6em;
  margin-bottom: 0.8em;
  font-weight: bold;
}
.cast .other_box ul li .castname {
  color: var(--key_color);
  margin-bottom: 0.6em;
}
.cast .other_box ul li .actname {
  font-size: 20px;
  line-height: 1em;
  font-weight: bold;
}
.cast .other_box ul li .actname span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 3em;
  color: #fff;
  margin-top: 0.4em;
}
.cast .card_wrap .card_block {
  position: relative;
  transform-style: preserve-3d;
  aspect-ratio: 400/520;
  -webkit-animation: animation-cardImage 7s both infinite linear;
          animation: animation-cardImage 7s both infinite linear;
}
.cast .card_wrap .card {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cast .card_wrap .card_back {
  transform: rotateY(180deg);
}
@-webkit-keyframes animation-cardImage {
  0% {
    transform: rotateY(0deg);
  }
  5% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  55% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes animation-cardImage {
  0% {
    transform: rotateY(0deg);
  }
  5% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  55% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 768px) {
  .cast .list_01 {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .cast .list_01 li {
    width: 70%;
    margin-bottom: 30px;
  }
  .cast .list_01 li:nth-of-type(even) {
    margin-right: 0;
  }
  .cast .list_01.twin {
    padding-bottom: 105px;
  }
  .cast .list_01.row-2 {
    margin-bottom: 0;
  }
  .cast .list_02 li {
    display: block;
    font-size: 15px;
    line-height: 1.5em;
  }
  .cast .list_02 li.togashi .staffname {
    font-size: 24px;
  }
  .cast .list_02 li.togashi span {
    display: block;
    line-height: 1.5em;
  }
  .cast .list_02 li.nelke {
    width: 100%;
  }
  .cast .list_02.lead li {
    font-size: 16px;
  }
  .cast .list_02 .flex li {
    width: 50%;
    margin-right: 0%;
  }
  .cast .ensemble {
    width: 100%;
    font-size: 3.5vw;
    margin: 0 auto 40px;
  }
  .cast .ensemble li {
    letter-spacing: 0;
    width: 20%;
    margin: 0 0 0.5em;
  }
  .cast .other_box p {
    font-size: 18px;
    line-height: 1.6em;
  }
  .cast .other_box ul li {
    font-size: 16px;
    line-height: 1.4em;
  }
}
.modal_box {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  display: block;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  background-position: center;
  pointer-events: none;
  transition: 0.4s;
}
.modal_box .modal_inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.modal_box .modal_inner .img-wrap {
  position: relative;
  width: 60vh;
}
.modal_box .modal_inner .img-wrap figure {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0;
}
.modal_box .modal_inner .logo-wrap {
  width: calc((100% - 60vh) / 2);
}
.modal_box .modal_inner .logo-wrap figure {
  margin: 0 auto;
  width: 60%;
  transform: translateY(-40%);
  transition: 0.3s;
  opacity: 0;
}
.modal_box .modal_inner .txt-wrap {
  width: calc((100% - 60vh) / 2);
  transform: translateY(40%);
  transition: 0.3s;
  opacity: 0;
}
.modal_box .modal_inner .txt-wrap .name_block {
  width: 80%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  position: relative;
}
.modal_box .modal_inner .txt-wrap .name_block .name {
  font-size: min(24px,2vw);
  margin-bottom: 20px;
}
.modal_box .modal_inner .txt-wrap .name_block .actname {
  font-size: min(70px,4vw);
  margin-bottom: 30px;
  font-weight: bold;
}
.modal_box .modal_inner .txt-wrap .name_block .furigana {
  font-size: min(14px,1vw);
  line-height: 1em;
}
.modal_box .modal_inner .txt-wrap .name_block .modal_frame {
  position: absolute;
  pointer-events: none;
}
.modal_box .modal_inner .txt-wrap .name_block .modal_frame span {
  left: 0;
}
.modal_box .bg_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 100%;
}
.modal_box .bg_txt .txt01 {
  transform: translateX(100%);
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
}
.modal_box .bg_txt .txt02 {
  transform: translateX(-100%);
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
}

.modal_box:before {
  content: "";
  position: fixed;
  background: #000;
  opacity: 0.8;
  background-size: cover;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal_box.active {
  opacity: 1;
  visibility: visible;
  right: 0;
  pointer-events: all;
  transition: 0.4s;
}
.modal_box.active .img-wrap {
  -webkit-animation-name: scaleOut;
          animation-name: scaleOut;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  overflow-y: hidden;
}
.modal_box.active .logo-wrap figure {
  transform: translateY(0%);
  transition: 0.5s;
  opacity: 1;
}
.modal_box.active .txt-wrap {
  transform: translateY(0%);
  transition: 0.5s;
  opacity: 1;
}
.modal_box.active .bg_txt .txt01 {
  transform: translateX(0%);
  transition: 0.4s;
}
.modal_box.active .bg_txt .txt02 {
  transform: translateX(0%);
  transition: 0.4s;
}

@-webkit-keyframes scaleOut {
  from {
    transform: scale(0.8) skew(-60deg);
    opacity: 0;
  }
  to {
    transform: scale(1) skew(0deg);
    opacity: 1;
  }
}

@keyframes scaleOut {
  from {
    transform: scale(0.8) skew(-60deg);
    opacity: 0;
  }
  to {
    transform: scale(1) skew(0deg);
    opacity: 1;
  }
}
.modal_box .close {
  cursor: pointer;
  position: absolute;
  top: 80px;
  right: 20px;
  width: min(3vw, 36px);
}
.modal_box .close span {
  position: relative;
  width: 100%;
  height: 4vw;
  display: block;
}

@media screen and (max-width: 768px) {
  .modal_box {
    display: flex;
    align-items: center;
  }
  .modal_box .close {
    width: min(9vw,40px);
    top: 2vw;
    right: 0;
  }
  .modal_box .modal_inner {
    display: block;
    width: 92%;
    margin: 0 auto;
    height: auto;
  }
  .modal_box .modal_inner .img-wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 40vh;
  }
  .modal_box .modal_inner .logo-wrap {
    display: none;
  }
  .modal_box .modal_inner .txt-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .modal_box .modal_inner .txt-wrap .name_block {
    width: 100%;
  }
  .modal_box .modal_inner .txt-wrap .name_block .name {
    font-size: min(20px,6.5vw);
    margin-bottom: min(20px,6vw);
  }
  .modal_box .modal_inner .txt-wrap .name_block .actname {
    font-size: min(30px,10vw);
    margin-bottom: min(20px,6vw);
  }
  .modal_box .modal_inner .txt-wrap .name_block .furigana {
    font-size: min(14px,4vw);
    line-height: 1em;
  }
}
/* ================================= キャスト =================================== */
/* ================================= スケジュール =================================== */
.sch_block {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: bold;
  height: 500px;
  color: var(--ob_lighten);
}
@media screen and (max-width: 768px) {
  .sch_block {
    height: 300px;
    font-size: 30px;
  }
}

.schedule_wrap .schedule {
  text-align: center;
}
.schedule_wrap .schedule .tit {
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .schedule_wrap .schedule .tit {
    font-size: 22px;
  }
}
.schedule_wrap .schedule .text {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-noto);
  margin-bottom: 2em;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .schedule_wrap .schedule .text {
    font-size: 15px;
    line-height: 2.1em;
    letter-spacing: inherit;
  }
}
.schedule_wrap .schedule .text a {
  color: #fff;
  text-decoration: underline;
  font-weight: normal;
  padding-left: 0.5em;
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .schedule_wrap .schedule .text a {
    display: block;
    padding-left: inherit;
    font-size: 1.2em;
  }
}
.schedule_wrap .schedule .text strong {
  font-size: 2em;
}
.schedule_wrap .schedule:not(:last-of-type) {
  margin-bottom: 80px;
}

.caution_wrap {
  margin-bottom: 50px;
}

.red-note {
  position: relative;
  padding: 25px 20px 25px 70px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6em;
  border-top: 1px solid var(--caution);
  border-bottom: 1px solid var(--caution);
}
.red-note:before {
  position: absolute;
  content: "";
  background: url(../images/icon_notice.svg) no-repeat center;
  background-size: contain;
  width: 45px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}

.ticket_price_box .h_box {
  width: 100%;
  background: var(--ob_lighten);
  padding: 14px 10px 10px;
  text-align: center;
}
.ticket_price_box .h_box h3 {
  font-weight: bold;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.2em;
}
.ticket_price_box .price_list {
  display: flex;
  width: 100%;
  flex-direction: column;
  color: #fff;
  border: 1px solid var(--ob_lighten);
  padding: 30px;
}
.ticket_price_box .price_list .price_box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ob_lighten);
}
.ticket_price_box .price_list .price_box .price_inner {
  text-align: left;
  margin-bottom: 0em;
}
.ticket_price_box .price_list .price_box .price_inner p {
  display: inline-block;
}
.ticket_price_box .price_list .price_box .price_inner .title {
  font-weight: bold;
  font-size: clamp(18px, 3vw, 24px);
}
.ticket_price_box .price_list .price_box .price_inner .title_s {
  font-size: clamp(14px, 2vw, 18px);
}
.ticket_price_box .price_list .price_box .price_inner .price {
  font-weight: bold;
  font-size: clamp(20px, 3vw, 26px);
  text-align: left;
}
.ticket_price_box .price_list .price_box .price_inner .price span {
  font-size: 0.5em;
}
.ticket_price_box .price_list .price_box .price_inner .price_s {
  font-size: clamp(16px, 2vw, 20px);
}
.ticket_price_box .price_list .price_box:last-of-type {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ticket_block {
  font-weight: normal;
  margin-bottom: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7em;
}
.ticket_block.ippan {
  border: 1px solid #666;
  padding: 5%;
}
.ticket_block .period {
  padding: 0 0 0.75em;
  font-weight: bold;
  font-size: 20px;
  color: var(--key_color);
}
.ticket_block .border-box {
  border: 1px solid #E7E7E7;
  padding: 20px;
  border-radius: 10px;
}
.ticket_block .link_underline {
  text-decoration: underline;
  color: #fff;
}
.ticket_block .tk_head {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 30px;
  position: relative;
  padding-left: 40px;
}
.ticket_block .tk_head:before {
  position: absolute;
  content: "";
  background: var(--key_color);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  top: 48%;
  transform: translateY(-50%);
  left: 0;
}
.ticket_block .tk_st_txt {
  display: flex;
  margin-bottom: 0.3em;
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 30px;
  line-height: 1em;
  text-align: center;
  padding: 30px;
  align-items: baseline;
  justify-content: center;
  font-weight: bold;
}
.ticket_block .tk_st_txt .big {
  font-size: 1.3em;
  line-height: 1em;
  display: inline-block;
  margin: 0 10px;
  transform: translateY(2px);
  letter-spacing: 2px;
}
.ticket_block .tk_st_txt .moreless {
  font-size: 0.5em;
}
.ticket_block .tk_st_txt .period {
  font-size: 20px;
  line-height: 1.2em;
}
.ticket_block .tk_list li {
  margin-bottom: 30px;
}
.ticket_block .tk_list dl {
  font-size: clamp(16px, 1.7vw, 28px);
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: clamp(18px, 1.7vw, 25px) clamp(14px, 1.4vw, 20px);
  line-height: 1em;
  justify-content: space-between;
}
.ticket_block .tk_list dl span {
  font-size: clamp(10px, 0.9vw, 14px);
}
.ticket_block .tk_list dd span {
  font-size: clamp(10px, 0.9vw, 14px);
  line-height: 0.8em;
}
.ticket_block .note_box .block:not(:last-of-type) {
  margin-bottom: 1em;
}
.ticket_block .tk_box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  color: #000;
}
.ticket_block .tk_box:not(:last-of-type) {
  margin-bottom: 2em;
}
.ticket_block .tk_box .tit {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: bold;
  color: var(--key_color);
  margin-bottom: 1em;
}
.ticket_block .tk_box .in_txt {
  font-size: 16px;
  line-height: 1.7em;
  font-weight: bold;
}
.ticket_block .tk_box .in_txt span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  display: block;
  margin-bottom: 0.5em;
}
.ticket_block .tk_box .in_txt strong {
  font-size: 1.5em;
}
.ticket_block .tk_box .in_txt p {
  font-size: 14px;
  line-height: 1.6em;
}
.ticket_block .tk_box .in_txt .period {
  font-size: 20px;
  line-height: 1.6em;
}
.ticket_block .tk_box.disactive {
  filter: grayscale(0.8);
  position: relative;
}
.ticket_block .tk_box.disactive:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  z-index: 3;
}
.ticket_block .text-list {
  font-size: 14px;
  line-height: 1.7em;
}
.ticket_block.tk_type.ippan .box02 .button span {
  display: inline-block;
  line-height: 1.5em;
  font-size: 0.8em;
  margin-bottom: 0;
}
.ticket_block.tk_type .tk_head {
  margin-bottom: 0.3em;
}
.ticket_block .text_link {
  color: var(--key_color);
  text-decoration: underline;
}
.ticket_block .button {
  max-width: inherit;
}
.ticket_block .button a:before {
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
}
.ticket_block .big {
  font-size: 1.2em;
  line-height: 1.7em;
}

@media screen and (max-width: 768px) {
  .ticket_price_box {
    flex-direction: column;
    padding: calc(var(--main_padding) / 1.5) 0;
    border: none;
  }
  .ticket_price_box .price_list {
    width: 100%;
    padding: 20px;
  }
  .ticket_price_box .price_list .price_box {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .ticket_price_box .price_list .price_box .price_inner {
    margin-bottom: 0;
  }
  .ticket_price_box .price_list .price_box .price {
    margin-right: 0;
    margin-bottom: 0em;
  }
  .ticket_price_box .price_list .price_box .price:nth-of-type(2) {
    margin-top: 0.4em;
  }
  .ticket_price_box .price_list .price_box .notes {
    font-size: 12px;
    line-height: 1.8em;
  }
  .ticket_block {
    margin-bottom: 50px;
  }
  .ticket_block .tk_head {
    font-size: 18px;
  }
  .ticket_block .tk_st_txt {
    display: block;
    font-size: 20px;
    padding: 20px;
  }
  .ticket_block .tk_st_txt .txt_head {
    display: block;
    margin-bottom: 0.3em;
  }
  .ticket_block .tk_st_txt .txt_head .big {
    font-size: 1.3em;
    line-height: 1em;
    display: inline-block;
    margin: 0 4px;
    transform: translateY(2px);
    letter-spacing: 2px;
  }
  .ticket_block .tk_list dl {
    display: block;
    font-size: 20px;
    padding: 20px 15px;
  }
  .ticket_block .tk_list dt {
    margin-bottom: 0.3em;
  }
  .ticket_block .tk_box {
    padding: 20px;
  }
  .ticket_block .tk_box .tit {
    font-size: 18px;
    line-height: 1.5em;
  }
  .ticket_block .tk_box .in_txt {
    font-size: 13px;
  }
  .ticket_block .tk_box .in_txt span {
    font-size: 14px;
  }
  .ticket_block .tk_box .border-box .in_txt {
    font-size: 16px;
  }
  .ticket_block.tk_type.ippan .box02 .button span {
    display: block;
  }
  .ticket_block.bottom_box {
    font-size: 13px;
  }
  .ticket_block .big {
    font-size: 1.08em;
    line-height: 1.7em;
  }
  .ticket_block .tk_box .border-box .in_txt {
    font-size: 16px;
  }
  .ticket_block .button-green a {
    padding: 20px 10px;
  }
  .ticket_block .button.page_link a {
    padding: 20px;
    font-size: 22px;
  }
  .ticket_block.ippan .period {
    padding: 0 0 0.5em;
    font-weight: bold;
    font-size: 18px;
  }
}
/* ================================= GOODS =================================== */
#goods .figure_box {
  margin-bottom: 30px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.3607843137);
}

#goods .figure_box .swiper-container {
  border-radius: 10px;
}

#goods .figure_box .pagination_box {
  position: relative;
  bottom: -28px;
}

#goods .figure_box .pagination_box .swiper-pagination {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

#goods .figure_box .pagination_box .swiper-pagination-bullet {
  margin: 0 3px;
  background: #fff;
  opacity: 0.3;
}

#goods .figure_box .pagination_box .swiper-pagination-bullet-active {
  background: var(--key_color);
  opacity: 1;
}

#goods figure {
  margin: 0;
}

#goods figure img {
  display: block;
  line-height: 0;
  border-radius: 10px;
}

#goods .btn_wrap {
  margin-bottom: 60px;
}

#goods .button-green a {
  text-align: center;
  padding: 20px 40px;
}

#goods .button-green a:hover {
  opacity: 0.8;
}

#goods .g_tit {
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 10px;
}

#goods .txt_box {
  font-size: 16px;
  line-height: 1.8em;
}

#goods .txt_box p:not(:last-of-type) {
  margin-bottom: 1em;
}

#goods .button {
  max-width: initial;
}

#goods .button a:before {
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
}

#goods .modal-box .modal-inner .modal-content {
  margin: 3vh auto 0;
}

#goods .modal-box .modal-inner .modal-content .inner-scroll {
  max-height: calc(70vh - 40px);
}

#goods .modal-box .modal-inner .modal-content a {
  word-break: break-all;
}

.cs {
  padding-top: 98.8%;
  position: relative;
  background: #ccc;
  margin-bottom: 15px;
}

.cs figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  #goods .flex-box.center .box03 {
    width: 47%;
  }
}
@media only screen and (max-width: 768px) {
  #goods .flex-box.center .box03 {
    width: 100%;
  }
  #goods .btn_wrap .flex-box {
    --flex-gap:10px;
  }
  #goods .good_wrap .flex-box {
    --flex-gap:50px;
  }
}
/* ================================= GOODS =================================== */
/********************** GUIDE *******************************/
.guide {
  text-align: left;
}

.guide .guide_pages_link {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.guide .guide_pages_link a {
  display: block;
  width: 32%;
  border: 1px solid var(--key_color);
  text-align: center;
  font-size: clamp(14px, 3vw, 18px);
  color: #fff;
  line-height: 1.2em;
  white-space: nowrap;
  font-weight: bold;
  padding: 1.2em 0.8em;
  transition: 0.2s;
}

.guide .guide_pages_link a:hover {
  background-color: var(--key_color);
}

.guide .guide_pages_link a.now {
  background-color: var(--key_color);
}

.guide .block .stit {
  font-size: 24px;
  line-height: 1.7em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.guide .block .sstit {
  font-size: 24px;
  line-height: 1.5em;
  border-left: 5px solid var(--key_color);
  padding: 0.25em 0 0.25em 1em;
  margin-bottom: 1.5em;
  font-weight: bold;
}

.guide h4 {
  background-color: var(--key_color);
  margin-bottom: 0.5em;
  display: inline-block;
  padding: 0.1em 0.3em 0;
}

.guide .block {
  margin-bottom: 70px;
}
.guide .block p {
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 1.5em;
}
.guide .block a {
  text-decoration: underline;
  color: var(--key_color);
}

.guide .block.first {
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.guide figure img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
}

.guide .outer_block figure img {
  margin-bottom: 1em;
}

.guide ul {
  margin-bottom: 1em;
}
.guide ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.2em;
  font-size: 16px;
  line-height: 1.8em;
}
.guide ul li:before {
  position: absolute;
  display: block;
  content: "・";
  left: 0;
  top: 0;
}

.guide ul.kome li::before {
  content: "※";
}

.guide .st {
  font-weight: bold;
}

.guide strong {
  font-weight: bold;
  font-size: 1.2em;
}

@media only screen and (max-width: 768px) {
  .guide {
    font-size: 14px;
    line-height: 1.7em;
  }
  .guide .block {
    margin-bottom: 40px;
  }
  .guide .block p {
    font-size: 14px;
  }
  .guide ul li {
    font-size: 14px;
  }
  .guide .block .stit {
    font-size: 18px;
  }
  .guide .block .sstit {
    font-size: 18px;
    border-left: 2px solid var(--key_color);
    margin-bottom: 1em;
  }
}
.outer_block {
  border: 1px solid #666;
  padding: 5%;
}

.outer_block .block_head {
  background: var(--key_color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  margin-bottom: 1.4em;
  padding: 15px 15px 13px;
  line-height: 1.4em;
}

.outer_block .sstit {
  background: inherit;
  color: #fff;
  margin-bottom: 1em;
}

.outer_block .bg_box {
  background: #fff;
  padding: max(24px, 3.5%) max(20px, 3%) max(20px, 3%);
  border-radius: 10px;
  color: #000;
}

.outer_block .bg_box .bg_box_head {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 26px;
  background: inherit;
  color: var(--key_color);
  padding: 0;
  display: block;
}

.outer_block .bg_box .block {
  margin-bottom: 0;
}

.outer_block .block {
  margin-bottom: 40px;
}

.outer_block .block .button-green a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
}

.outer_block .block .button-green a:hover {
  opacity: 0.8;
}

.outer_block .block a {
  word-break: break-all;
}

.outer_block .block .button {
  max-width: 100%;
}

.outer_block .block .button a {
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.outer_block .block .button a:before {
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
}

.outer_block:not(:last-of-type) {
  margin-bottom: 50px;
}

.outer_block .block h5 span {
  background: var(--key_color);
  color: #fff;
  display: inline-block;
  padding: 0.3em 0.4em 0.2em;
  margin-bottom: 0.5em;
}

.outer_block .block hr {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3019607843);
  margin: 3em 0;
}

.b_block .outer_block {
  margin-bottom: 20px;
}

.b_block:not(:last-of-type) {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .outer_block .block_head {
    font-size: 20px;
  }
  .outer_block .bg_box .bg_box_head {
    font-size: 18px;
  }
  .outer_block .block .button-green a {
    font-size: 16px;
  }
  .outer_block .block .button a {
    font-size: 14px;
    padding: 1em;
  }
  .b_block .outer_block {
    margin-bottom: 12px;
  }
}
.dl_img {
  max-width: 800px;
  margin: 0 auto 2em;
}

#other {
  width: 100%;
}
#other .other_img {
  position: relative;
  width: 100%;
  height: 100vh;
}
#other .other_img img {
  position: absolute;
  width: 92%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1920px;
}

@media screen and (max-width: 768px) {
  #other .other_img img {
    width: 100%;
  }
}
/* ===============================================
# TOPアニメーション
=============================================== */
.certain {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}
.certain .box-wrap-outer {
  transform: rotate(45deg) scale(2);
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 50%;
}
.certain .box-wrap {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  width: 100vw;
  height: 100vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
.certain .box04 {
  background: #000;
  width: 50vw;
  height: 50vw;
}
.certain .box04:nth-of-type(1) {
  -webkit-animation: moveT 0.4s ease-in-out both;
          animation: moveT 0.4s ease-in-out both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.certain .box04:nth-of-type(2) {
  -webkit-animation: moveR 0.4s ease-in-out both;
          animation: moveR 0.4s ease-in-out both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.certain .box04:nth-of-type(3) {
  -webkit-animation: moveL 0.4s ease-in-out both;
          animation: moveL 0.4s ease-in-out both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.certain .box04:nth-of-type(4) {
  -webkit-animation: moveB 0.4s ease-in-out both;
          animation: moveB 0.4s ease-in-out both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.certain .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  opacity: 0.2;
  background: #000;
}
.certain .bg video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.certain .line-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  -webkit-animation: delete 0.5s both;
          animation: delete 0.5s both;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.certain .line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  -webkit-animation: delete 0.5s both;
          animation: delete 0.5s both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.certain .line:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 200vw;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: box-open_wide 1s both;
          animation: box-open_wide 1s both;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.certain .line:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 200vw;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-animation: box-open_wide 1s both;
          animation: box-open_wide 1s both;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.certain.off {
  opacity: 0;
  z-index: -1;
  transition: 0.4s;
}

@-webkit-keyframes box-open_bottom {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@keyframes box-open_bottom {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@-webkit-keyframes box-open_top {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes box-open_top {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@-webkit-keyframes box-open_wide {
  0% {
    -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes box-open_wide {
  0% {
    -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@-webkit-keyframes delete {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes delete {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes moveT {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, -100%);
  }
}
@keyframes moveT {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, -100%);
  }
}
@-webkit-keyframes moveR {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, -100%);
  }
}
@keyframes moveR {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, -100%);
  }
}
@-webkit-keyframes moveB {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
@keyframes moveB {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
@-webkit-keyframes moveL {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 100%);
  }
}
@keyframes moveL {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 100%);
  }
}
#fv .bg_txt .txt01 {
  transform: translateX(100%);
}
#fv .bg_txt .txt02 {
  transform: translateX(-100%);
}
#fv .top_inner .text_block {
  transform: translateX(100%);
  transition: 0.5s;
}
#fv .top_inner .img_block {
  transform: translateX(-100%);
  transition: 0.5s;
}

.intro_on #fv .bg_txt .txt01 {
  transform: translateX(0%);
  transition: 0.5s;
}
.intro_on #fv .bg_txt .txt02 {
  transform: translateX(0%);
  transition: 0.5s;
}
.intro_on #fv .top_inner .text_block {
  transform: translateX(0%);
  transition: 0.5s;
}
.intro_on #fv .top_inner .img_block {
  transform: translateX(0%);
  transition: 0.5s;
}
/*# sourceMappingURL=style.css.map */