@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*--------------------------
共通
--------------------------*/
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
.inner {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
}
h1.midashi_title {
  color: #8f1a1f;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
}
h2.read {
  color: #e50032;
  width: 85%;
  min-width: 470px;
  margin: 0 0 4%;
}
h3.sub {
  color: #e74473;
  margin: 0 0 2% 0;
}
.text {
  font-size: 18px;
  text-align: justify;
  text-align-last: left;
  font-weight: bold;
}
/*--------------------------
MENU
--------------------------*/
.menu {
  height: 15px;
  position: absolute;
  width: 30px;
  z-index: 79;
  cursor: pointer;
}
.menu_bg {
  width: 45px;
  height: 45px;
  position: fixed;
  top: 3%;
  right: 3%;
  z-index: 79;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.menu__line {
  background: #8f1a1f;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--center {
  top: 45%;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 45%;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 45%;
  transform: rotate(135deg);
}
/*gnav*/
.gnav {
  background-color: #dfd7ca;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto;
  width: 100%;
  z-index: 78;
}
.gnav__wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: inherit;
  flex-direction: row;
  padding: 4%;
  box-sizing: border-box;
}
.gnav__inner {
  width: 50%;
}
.gnav__menu__item {
  width: 100%;
  height: 10%;
  vertical-align: middle;
  line-height: 1;
  margin-bottom: 5vh;
  text-align: center;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
  color: #8f1a1f;
  font-weight: bold;
  font-size: clamp(18px, 1.8vw, 24px);
  text-decoration: none;
}
.gnav__menu__item a:hover {
  transition: .5s;
  opacity: 0.7;
}
.gnav .social__icon .gnav__menu__item {
  margin-bottom: 0;
}
.gnav .social__icon .gnav__menu__item a {
  color: #fff;
  background-color: #8f1a1f;
  width: 2vw;
  display: flex;
  height: 2vw;
  line-height: 2vw;
  text-align: center;
  border-radius: 2vw;
  margin: 0 auto;
  padding: 5px;
  justify-content: center;
  align-items: center;
}
.gnav .social__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
/*--------------------------
NAV
--------------------------*/
.nav_item {
  height: 55px;
  font-size: clamp(16px, 2vw, 18px);
  color: #000000;
  background-color: #c6bfb4;
  border: 0;
  overflow: hidden;
  position: relative;
  transition: 0.7s;
  -webkit-transition: 0.7s;
}
.nav_item a {
  height: 55px;
  display: inline-block;
  padding-left: 25px;
  padding-right: 25px;
  color: #3f3a39;
  cursor: default;
  vertical-align: middle;
  line-height: 55px;
}
.nav_item a:hover {
  transition: 1s;
}
.twitter {
  top: 3%;
  right: 5%;
  width: 40px;
  height: 40px;
}
.twitter a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
}
i {
  font-size: 1.5vw;
}
.nav_img_wrap {
  width: 50%;
  height: 100%;
  background-image: url("../img/nav_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/*--------------------------
LOADING
--------------------------*/
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #8f1a1f;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  text-align: center;
  z-index: 1000;
  color: #fff;
}
.logo img {
  width: 40%;
}
.blinking {
  display: block;
  -webkit-animation: blink 0.7s ease-in-out infinite alternate;
  -moz-animation: blink 0.7s ease-in-out infinite alternate;
  animation: blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------
TRAILER（POP）
--------------------------*/
.trailer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998;
  opacity: 0;
  display: none;
  transition-duration: 0.5s;
}
.trailer.on {
  opacity: 1;
}
.trailer_overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  z-index: 999999997;
  transition-duration: 1s;
}
.close_btn {
  position: fixed;
  top: 3%;
  right: 3%;
  width: 40px;
  height: 40px;
  z-index: 999999999;
  opacity: 0;
  cursor: pointer;
}
.trailer.on .close_btn {
  opacity: 1;
}
.close_btn::before, .close_btn::after {
  position: absolute;
  top: calc(50% - 1px);
  left: -1px;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
.close_btn::before {
  transform: skewY(-45deg);
}
.close_btn::after {
  transform: skewY(45deg);
}
.close_btn:hover {
  opacity: 0.5 !important;
}
.trailer.on .trailer_overlay {
  opacity: 1;
}
.trailer .trailer_inner {
  position: absolute;
  top: calc(50% - 8%);
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  width: 65%;
  aspect-ratio: 16 / 9;
  height: 1;
  z-index: 999999998;
  transition-duration: 0.5s;
}
.trailer .trailer_tab {
  position: absolute;
  color: #fff;
  top: 100%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
  z-index: 999999998;
}
.trailer .trailer_tab li {
  display: flex;
  justify-content: center;
  width: calc(100% / 2 - 3px);
  padding: 10px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #8f1a1f;
  background: #8f1a1f;
  color: #fff;
  margin-right: 0;
  font-size: 1rem;
  margin: 0 6px 6px 0;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.trailer_tab li:first-child {
  width: 100%;
  margin: 0 0 6px 0;
}
.trailer_tab li:nth-child(3), .trailer_tab li:nth-child(5) {
  margin-right: 0;
}
.trailer_tab li.f_act {
  cursor: pointer;
  background: #fff;
  color: #8f1a1f;
}
.trailer_tab li.f_act:hover {}
#youtube1, #youtube2, #youtube3, #youtube4, #youtube5, #youtube6, #youtube7, #youtube8, #youtube9, #youtube10 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1, 1);
  transition-duration: 1s;
  opacity: 1;
  z-index: 2;
}
.trailer.on #youtube1, .trailer.on #youtube2, .trailer.on #youtube3, .trailer.on #youtube4, .trailer.on #youtube5, .trailer.on #youtube6, .trailer.on #youtube7, .trailer.on #youtube8, .trailer.on #youtube9, .trailer.on #youtube10 {
  transform: scale(1, 1);
  opacity: 1;
}
.youtube_wrapper {
  width: 48%;
}
.youtube_wrapper:first-child {
  margin-right: 4%;
}
.youtube_inner {
  position: relative;
  padding-bottom: 56.25%;
  /*height: 0;*/
  overflow: hidden;
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.trailer_btn {
  overflow: hidden;
  width: 50%;
  margin: 0 auto;
  cursor: pointer;
}
.trailer_btn img {
  transition: 1s all;
}
.trailer_btn img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
.trailer_text {
  width: 50%;
  letter-spacing: 0.5rem;
  font-size: 1.1rem;
  box-sizing: border-box;
  margin: 15px auto 0;
  font-weight: bold;
  color: #8f1a1f;
  background-color: #fff;
  padding: 5px;
  text-align: center;
}
/*--------------------------
ANIMATION
--------------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.slideInY {
  animation-name: slideInAnimeY;
  animation-duration: 2s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
  animation-fill-mode: forwards;
  /*  animation: slideIn 5s ease 1s 1 normal backwards;*/
}
@keyframes slideInAnimeY {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------
TOP
--------------------------*/
.top {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #8f1a1f;
}
.top .inner {
  width: 100%;
  height: 100%;
  ;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 0;
}
.top_left {
  width: 50%;
  height: 100%;
  position: relative;
  background-image: url("../img/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.catchcopy {
  position: absolute;
  z-index: 3;
  width: 11.9%;
  top: 5.7%;
  right: 5.7%;
  opacity: 0;
  align-items: flex-start;
}
.illust01 {
  position: absolute;
  z-index: 3;
  width: 6.2%;
  top: 6.3%;
  left: 4.2%;
  opacity: 0;
}
.illust02 {
  position: absolute;
  z-index: 3;
  width: 6%;
  top: 7.65%;
  left: 17.1%;
  opacity: 0;
}
.illust03 {
  position: absolute;
  width: 12%;
  top: 43.7%;
  left: 32.5%;
  mix-blend-mode: multiply;
  z-index: 3;
  opacity: 0;
}
.illust04 {
  position: absolute;
  z-index: 3;
  width: 15.7%;
  top: 43.7%;
  right: 22.2%;
  opacity: 0;
}
.illust05 {
  position: absolute;
  width: 10%;
  top: 33.4%;
  right: 3.5%;
  z-index: 3;
  opacity: 0;
}
.flower_01 {
  position: absolute;
  width: 25.1%;
  top: 59.7%;
  transform: translate(0, -50%);
  left: 0;
  z-index: 2;
}
.flower_02 {
  position: absolute;
  width: 23%;
  top: 59%;
  transform: translate(0, -50%);
  right: 0;
  z-index: 2;
}
li.target {
  animation: horizontal 1.5s ease-in-out infinite alternate;
  list-style: none;
  opacity: 1;
}
li.target div {
  animation: vertical 1.5s ease-in-out infinite alternate;
  opacity: 1;
}
@keyframes horizontal {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-5px);
  }
}
@keyframes vertical {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}
li:nth-child(1) {
  animation-duration: 1.1s
}
li:nth-child(2) {
  animation-duration: 1.5s
}
li:nth-child(3) {
  animation-duration: 1.9s
}
li:nth-child(4) {
  animation-duration: 2.3s
}
li:nth-child(5) {
  animation-duration: 2.7s
}
.sign {
  position: absolute;
  bottom: 1.7%;
  right: 3%;
  width: 15%;
}
.top_right {
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}
.top_right_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  width: 95%;
  margin: 0 auto;
}
.butterfly {
  width: 14.6%;
  position: absolute;
  top: 37.6%;
  right: 10%;
  opacity: 0;
}
.titlelogo {
  width: 65.5%;
  margin: 17% auto 4.7%;
  opacity: 0;
}
.billing {
  width: 54%;
  margin: 0 auto 5%;
  opacity: 0;
}
.date {
  width: 61.5%;
  margin: 0 auto 5%;
  opacity: 0;
}
.top_right .social__icon {
  margin: 0 auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_right .social__icon a {
  width: 3vw;
  height: 3vw;
  display: flex;
  border: 1px solid #fff;
  border-radius: 50px;
  line-height: 3vw;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.top_right .social__icon i {
  color: #fff;
  font-size: 1.5vw;
}
.social__icon li.gnav__menu__item {
  height: auto;
  width: auto;
  margin: 0 1.5vw 0 0;
}
.social__icon li.gnav__menu__item:last-child {
  margin: 0 auto;
}
.top_icon {
  opacity: 0;
}
ul.top_bnr_wrap {
  position: absolute;
  bottom: 0%;
  left: 8%;
  width: 17%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  opacity: 0;
  z-index: 3;
}
ul.top_bnr_wrap.wrap02 {
  margin: 0 auto 5%;
}
li.bnr_item {
  width: 100%;
  max-width: 350px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  margin: 0 0 5% 0;
}
.wrap02 li.bnr_item:last-child {
  margin: 0;
}
ul.ulblogtitle {
  width: 80%;
  margin: 0 auto 1%;
  border: 2px solid #FDEABE;
  background-color: #fff;
  padding: 3% 0;
  box-sizing: border-box;
  height: 17%;
  overflow-y: scroll;
  scrollbar-color: #8F1A1F #FDEABE;
  scrollbar-width: thin;
  opacity: 0;
}
ul.ulblogtitle h1.midashi_title {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(18px, 1.7vw, 24px);
}
ul.ulblogtitle li {
  width: 90%;
  margin: 0 auto;
  padding: 3% 0 3% 0;
  background-image: linear-gradient(to right, #8F1A1F 1px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
ul.ulblogtitle li:last-child {
  padding: 3% 0;
}
.news_date {
  color: #8F1A1F;
  margin: 0 2% 0 0;
  width: 18%;
  text-align: left;
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: bold;
}
.news_title {
  width: 80%;
  text-align: left;
}
.news_title a {
  color: rgba(0, 0, 0, 0.9);
  text-align: left;
  text-align-last: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.5;
  font-weight: bold;
  transition: .7s;
  text-decoration: underline;
}
.news_title a:hover {
  opacity: 0.7;
  transition: .7s;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0 0 0 3%;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #8F1A1F;
  transform-origin: calc(100% - 0px) 50%;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}
.viewall {
  width: 80%;
  margin: 0 auto 5%;
  text-align: right;
  color: #fff;
  opacity: 0;
}
.viewall a {
  font-weight: bold;
  color: #fff;
  font-size: clamp(14px, 0.8vw, 16px);
  transition: .7s;
}
.viewall a:hover {
  transition: .7s;
  opacity: .7;
}
/*--------------------------
MVTK
--------------------------*/
section.mvtk_wrap {
  overflow: hidden;
}
section.mvtk_wrap .inner {
  padding: 5% 0 0;
}
.theater_bnr {
  width: 49%;
  margin: 0 2% 0 0;
}
.cmt_bnr {
  width: 49%;
}
.bnr_wrap {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2%;
}
.mvtk_img {
  width: 99%;
  margin: 0 2% 0 auto;
}
.mvtk_img img {
  height: auto;
}
.wowshop {
  margin: 0 auto;
}
.mvtk_on-line_wrap {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  margin: 0 auto 1%;
}
.mjr_bnr {
  width: 49%;
  margin: 0 2% 0 auto;
}
.mvws_bnr {
  width: 49%;
}
.theater_bnr a, .cmt_bnr a, .mvtk_img a, .mjr_bnr a, .mvws_bnr a {
  transition: .7s;
}
.theater_bnr a:hover, .cmt_bnr a:hover, .mvtk_img a:hover, .mjr_bnr a:hover, .mvws_bnr a:hover {
  transition: .7s;
  opacity: .7;
}
#mvtk-widgets-container {
  margin: 0 auto;
}
/*--------------------------
OFFICIAL＆TRAILER_S
--------------------------*/
.official_trailer_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
}
/*--------------------------
OFFICIAL
--------------------------*/
section.official {
  width: 48%;
  margin: 0 4% 0 auto;
  display: flex;
  flex-direction: column;
}
section.official .inner {
  width: 100%;
  padding: 0;
}
.twitter-timeline_wrap {
  position: relative;
  width: 100%;
  height: 29.5vw;
  overflow: hidden;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 15px;
}
.timeline_inner {
position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
	overflow-y: scroll;
}
.inner_btm {
  flex: 1;
}


/*--------------------------
TRAILER_S
--------------------------*/
section.trailer_s {
  width: 48%;
  position: relative;
  display: flex;
  flex-direction: column;
}
section.trailer_s .inner {
  width: 100%;
  padding: 0;
}
.trailer_btn {
  overflow: hidden;
  width: 50%;
  margin: 0 auto;
  cursor: pointer;
}
section.trailer_s .trailer_overlay {
  position: relative;
}
section.trailer_s .trailer_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  z-index: 2;
  transition-duration: 0.5s;
}
section.trailer_s .trailer_tab {
  position: inherit;
}
section.trailer_s .trailer_tab {
  position: inherit;
  color: #fff;
  top: 100%;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0.4vw 0 0;
}
.trailer_tab li {
  cursor: pointer;
  border: 1px solid #8f1a1f;
  background: #8f1a1f;
  color: #fff;
  width: calc(50% - 0.2vw);
  margin: 0 0 0.4vw;
  box-sizing: border-box;
  font-size: clamp(12px, 0.9vw, 18px);
  padding: 0.4vw;
}
section.trailer_s .trailer_tab li:nth-child(2) {
  margin: 0 0.4vw 0.4vw 0;
}
section.trailer_s .trailer_tab li:nth-child(1), section.trailer_s .trailer_tab li:nth-child(4), section.trailer_s .trailer_tab li:nth-child(5) {
  width: 100%;
}
section.trailer_s .trailer_tab li.f_act {
  transition: .7s;
  background: #fff;
  color: #8f1a1f;
}
section.trailer_s .trailer_tab li.f_act:hover {
  transition: .7s;
  background: #fff;
  color: #8f1a1f;
}
/*--------------------------
STORY
--------------------------*/
section.story {
  width: 100%;
  position: relative;
  background: #dfd7ca;
}
/*section.story::before{
content: "";
background-image: url("../img/story_bg.webp");
background-repeat: no-repeat;
background-position: bottom;
background-size: cover;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}*/
.story .inner {
  padding: 5% 0 0;
  position: relative;
  z-index: 2;
}
.story_inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.text_wrap {
  width: 74%;
  margin: 0 5% 0 0;
}
.img_wrap_pc {
  width: 21%;
}
.img_item {
  margin: 0 auto 6%;
}
.sub.first {
  width: 68%;
  min-width: 470px;
}
.sub.second {
  width: 43%;
  min-width: 300px;
}
.sub.third {
  width: 46%;
  min-width: 320px;
}
.story .text {
  margin: 0 auto 4%;
  line-height: 1.7;
}
.story_bg {
  width: 100%;
  margin: -5% 0 0;
  position: relative;
  z-index: 1;
}
.footer_titlelogo {
  width: 30%;
  position: absolute;
  bottom: 3%;
  left: 5%;
  z-index: 2;
}
/*--------------------------
PROFILE
--------------------------*/

.profile_wrap{
display: flex;
    align-items: center;
    justify-content: flex-start;
	max-width: 790px;
    min-width: 700px;
    margin: 0 auto 5%;
}
.name_wrap{
    text-align: left;
    font-weight: bold;
    width: 55%;
    margin: 0 5% 0 0;
}
.title{
    font-weight: bold;
    font-size: clamp(16px, 1.6vw, 18px);
    margin: 0 auto 5%;
}
.name{
font-weight: bold;
    font-size: clamp(20px, 1.8vw, 26px);
    margin: 0 auto 2%;
}
.name span{
font-weight: bold;
    font-size: clamp(18px, 1.7vw, 24px);
}
.real_name{
font-weight: bold;
font-size: clamp(16px, 1.6vw, 18px);
}
.profile_img{
width: 40%;
    text-align: right;
}

.profile_midashi{
text-align: left;
font-weight: bold;
margin: 0 auto 2%;
    color: #8f1a1f;
}
.profile .text{
font-size: 16px;
margin: 0 auto;
}

.profile_text_wrap{
background-color: #C5B79D;
padding: 5%;
box-sizing: border-box;
    width: 90%;
	margin: 0 auto;
}

/*--------------------------
COMMENT
--------------------------*/
section.comment {
  background-image: url("../img/cmt_bg_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
section.comment .inner {
  width: 80%;
  padding: 5% 0 50%;
}
ul.cmt_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto 2%;
}
li.cmt_item {
  width: 32.66666666666667%;
  margin-right: 1%;
  float: left;
  bottom: -15px;
  transition: 2s;
  filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.8));
}
.cmt_item:nth-child(3n) {
  margin-right: 0;
}
.cmt_item.fadein, .illust_item.fadein {
  opacity: 1;
  bottom: 0;
}
.notes {
  color: #E50032;
  text-align: left;
  margin: 0 auto 3%;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 1280px) {
  .twitter-timeline_wrap {
    height: 30.5vw;
  }
}
@media screen and (max-width: 900px) {
  /*--------------------------
共通
--------------------------*/
  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .inner {
    width: 80%;
    margin: 0 auto;
    padding: 12% 0;
  }
  h1.midashi_title {
    font-size: clamp(20px, 5.7vw, 32px);
    margin: 0 auto 5%;
  }
  h2.read {
    width: 100%;
    min-width: inherit;
    max-width: 400px;
    margin: 0 0 10%;
  }
  h3.sub {
    margin: 0 0 6% 0;
  }
  /*--------------------------
LOADING
--------------------------*/
  .logo img {
    width: 100%;
  }
  /*--------------------------
TRAILER
--------------------------*/
  .trailer_btn {
    width: 80%;
  }
  .trailer_text {
    width: 80%;
    margin: 10px auto 0;
    padding: 5px;
  }
  .trailer .trailer_inner {
    width: 90%;
  }
  .trailer .trailer_inner {
    top: calc(50% - 18%);
  }
  .trailer .trailer_tab li {
    width: 100%;
    padding: 7px;
    font-size: clamp(12px, 3.5vw, 16px);
    margin: 0 0 1.5% 0;
    box-sizing: border-box;
  }
  .trailer .trailer_tab li:nth-child(2n) {
    margin: 0 0 1.5% 0;
  }
  .trailer .trailer_tab li:last-child {
    margin: 0;
  }
  /*--------------------------
MENU
--------------------------*/
  #header-sp {
    display: block;
  }
  .nav_img_wrap {
    display: none;
  }
  .gnav__inner {
    width: 100%;
  }
  .gnav__menu__item {
    margin-bottom: 10vw;
  }
  .gnav__menu__item a {
    color: #8f1a1f;
    font-weight: bold;
    font-size: clamp(18px, 5.8vw, 28px);
  }
  .gnav .social__icon .gnav__menu__item a {
    width: clamp(35px, 9vw, 40px);
    height: clamp(35px, 9vw, 40px);
    line-height: clamp(35px, 9vw, 40px);
    border-radius: clamp(35px, 9vw, 40px);
  }
  i {
    font-size: clamp(18px, 6.5vw, 28px);
  }
  .social__icon li.gnav__menu__item {
    margin: 0 4vw 0 0;
  }
  /*--------------------------
TOP
--------------------------*/
  .top {
    width: 100%;
    aspect-ratio: auto;
    overflow: auto;
  }
  .top .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
  }
  .top_left {
    width: 100%;
    padding-bottom: 112%;
  }
  .illust02 {
    top: 5.65%;
  }
  .top_right {
    width: 100%;
  }
  .butterfly {
    width: 16.6%;
    position: absolute;
    top: 25.6%;
    right: 4%;
  }
  .titlelogo {
    width: 78.5%;
    max-width: 500px;
    margin: 12.7% auto 5.7%;
  }
  .billing {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 6%;
  }
  .date {
    width: 80.5%;
    max-width: 500px;
    margin: 0 auto 6%;
  }
  .top_right .social__icon {
    margin: 0 auto 6%;
  }
  .top_right .social__icon a {
    width: clamp(40px, 10vw, 45px);
    height: clamp(40px, 10vw, 45px);
    line-height: clamp(40px, 10vw, 45px);
  }
  .top_right .social__icon i {
    font-size: clamp(18px, 4.5vw, 28px);
  }
  section.mvtk_wrap .inner {
    padding: 12% 0 0;
  }
  ul.top_bnr_wrap {
    margin: 0 auto;
    width: 90%;
  }
  ul.top_bnr_wrap.wrap02 {
    position: inherit;
    margin: 0 auto 3%;
  }
  li.bnr_item, .wrap02 li.bnr_item:first-child {
    width: 100%;
    margin: 0 auto 3%;
  }
  ul.ulblogtitle {
    height: 200px;
    margin: 0 auto 2%;
    padding: 5% 0;
    width: 90%;
  }
  ul.ulblogtitle li {
    flex-direction: column;
    padding: 8% 0 8% 0;
  }
  ul.ulblogtitle li:first-of-type {
    padding: 5% 0 8% 0 !important;
  }
  ul.ulblogtitle li:last-child {
    padding: 8% 0;
  }
  .news_date {
    color: #8F1A1F;
    width: 100%;
    text-align: left;
    font-size: 14px;
    margin: 0 auto 3% 0;
  }
  .news_title {
    width: 100%;
  }
  .news_title a {
    font-size: 16px;
  }
  .viewall {
    width: 90%;
    margin: 0 auto 12.7%;
  }
  ul.ulblogtitle h1.midashi_title {
    font-size: clamp(20px, 5.7vw, 32px);
  }
  /*--------------------------
MVTK
--------------------------*/
  .mvtk_img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 3%;
  }
  .bnr_wrap {
    width: 100%;
    flex-direction: column;
    margin: 0 auto 3%;
  }
  .theater_bnr {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 3%;
  }
  .cmt_bnr {
    width: 100%;
    max-width: 350px;
  }
  .mvtk_on-line_wrap {
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
  .mjr_bnr {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 3%;
  }
  .mvws_bnr {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 6%;
  }
  /*--------------------------
OFFICIAL
--------------------------*/
  .official_trailer_wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 12% 0;
  }
  section.official {
    width: 100%;
    margin: 0 auto;
  }
  .twitter-timeline_wrap {
    height: 350px;
  }
  /*--------------------------
Trailer_s
--------------------------*/
  section.trailer_s {
    width: 100%;
    margin: 0 auto;
  }
  section.trailer_s .inner {
    padding: 12% 0 0;
  }
  section.trailer_s .trailer_tab {
    margin: 1vw 0 0;
  }
  section.trailer_s .trailer_tab li {
    margin: 0 0 1vw;
    box-sizing: border-box;
    font-size: clamp(12px, 4vw, 16px);
    padding: 2vw;
    width: calc(50% - 0.5vw);
  }
  section.trailer_s .trailer_tab li:first-child {
    margin: 0 0 1vw 0;
  }
  section.trailer_s .trailer_tab li:nth-child(2) {
    margin: 0 1vw 1vw 0;
  }
  /*--------------------------
Story
--------------------------*/
  .story .inner {
    padding: 12% 0 0;
  }
  .text_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .sub.first {
    width: 89%;
    max-width: 300px;
    min-width: inherit;
  }
  .sub.second {
    width: 58%;
    min-width: inherit;
    max-width: 210px;
  }
  .sub.third {
    width: 74%;
    min-width: inherit;
    max-width: 260px;
  }
  .story .text {
    margin: 0 auto 19%;
    line-height: 1.9;
  }
  .img_wrap {
    width: 100%;
    display: flex;
  }
  .img_item {
    margin: 0 auto 10%;
  }
  .img_item.third {
    margin: 0 auto 3%;
  }
  .story_bg {
    overflow: hidden;
  }
  .story_bg img {
    width: 120%;
    margin: 0 0 auto -12%;
    max-width: none;
  }
  .profile_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: inherit;
    min-width: inherit;
    flex-direction: column;
    margin: 0 auto 5%;
	}
  .name_wrap {
    text-align: left;
    font-weight: bold;
    width: 100%;
    margin: 0 auto 10%;
}
.profile_img {
    width: 100%;
	        text-align: center;
	}
.profile_text_wrap{
padding: 10% 7%;
width: 100%;
}
.name {
    font-size: clamp(22px, 5.5vw, 26px);
	    margin: 0 auto 4%;
	}
	.title, .real_name {
    font-size: clamp(16px, 3.5vw, 24px);
	}
	.story .profile .text{
	margin: 0 auto;
	}

  
  /*--------------------------
Footer
--------------------------*/
  footer {
    width: 100%;
    background-color: #8f1a1f;
    padding: 12% 0;
    box-sizing: border-box;
  }
  .footer_titlelogo {
    position: inherit;
    bottom: inherit;
    left: inherit;
    width: 60%;
    margin: 0 auto;
  }
  /*--------------------------
COMMENT
--------------------------*/
  section.comment {
    background-image: url("../img/cmt_bg_sp.jpg");
  }
  section.comment .inner {
    width: 80%;
    padding: 12% 0 130%;
  }
  ul.cmt_list {
    flex-direction: column;
    margin: 0 auto;
  }
  li.cmt_item {
    width: 100%;
    margin-right: auto;
    margin: 0 auto 5%;
  }
  .list2 li.cmt_item {
    width: 100%;
    margin-right: auto;
  }
  .list1 .cmt_item:nth-child(2n), .list2 .cmt_item:nth-child(3n) {
    margin-right: auto;
  }
  .notes {
    margin: 0 auto 7%;
    font-size: clamp(15px, 1vw, 18px);
  }
}
@media screen and (max-width: 500px) {
  /*--------------------------
共通
--------------------------*/
  h1.midashi_title {
    margin: 0 auto 8%;
  }
  /*--------------------------
TOP
--------------------------*/
  .titlelogo {
    width: 78.5%;
  }
}
@media screen and (max-width: 300px) {
  .twitter {
    width: 35px;
    height: 35px;
  }
  .twitter a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}