@charset "UTF-8";

main {
  padding: 10vh 0 100px 0;
  overflow: hidden;
  min-height: 120vh;
}

main h1 {
  text-align: center;
}

main h1 img {
  width: auto;
}

@media screen and (max-width: 767px) {
  main {
    padding: 80px 0;
  }

  main h1 {
    width: 50%;
    margin: 0 auto;
  }

  .page main h1 {
    width: 80%;
  }
}


.blur {
  animation-name: blurAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;

}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(.9);
    opacity: 0;

  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;

  }
}

.blurTrigger {
  opacity: 0;
}

.delay1 {
  animation-delay: 0.4s;
}

.delay2 {
  animation-delay: 0.8s;
}

/* NEWS
-------------------------------------------------- */
.page-news {
  background: url(../img/news/bg.jpg) no-repeat center top / cover;
}

.page-news h1,
.page h1 {
  margin-bottom: 80px;
}

.news_list {
  padding: 0 30px;
}

.news_list li {
  margin-bottom: 50px;
  position: relative;
  border-radius: 6px;
  transition: .3s;
}

.news_list li::before,
.news_list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}

.news_list li::before {
  background: #572500;
  background: linear-gradient(40deg, #431d00 0%, #572500 100%);
  z-index: 1;
}

.news_list li::after {
  background: #431d00;
  background: linear-gradient(40deg, #572500 0%, #431d00 100%);
  z-index: -1;
}

.news_list li:hover::before {
  opacity: 0;
}

.news_list li a {
  height: 174px;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 6px;
  z-index: 3;
}

.news_list li a::before,
.news_list li a::after {
  content: "";
  display: block;
  width: 30px;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: url(../img/news/frame_news.png) no-repeat left top, url(../img/news/frame_news2.png) no-repeat left bottom;
}

.news_list li a::after {
  left: auto;
  right: 10px;
  transform: scale(-1, 1);
}

.news_list li a .img {
  flex: 0 1 320px;
  position: relative;
  z-index: 2;
}

.news_list li a .img img {
  display: block;
  width: 100%;
  height: 174px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0px 0px 17.28px 0.72px rgba(136, 98, 83, 0.22);
  position: absolute;
  left: 30px;
  bottom: 30px;
  transition: .3s;
}

.news_list li a .txt {
  flex: 1 1 0%;
  margin-left: 70px;
  padding: 30px 240px 30px 0;
  position: relative;
}

.news_list li a .txt::after {
  content: "MORE";
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem;
  padding-right: 46px;
  background: url(../img/arrow.png) no-repeat right center / 38px auto;
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  transition: .3s;
}

.news_list li a:hover .txt::after {
  padding-right: 56px;
  right: 50px;
}

.news_list li a time {
  font-size: 1.2rem;
  font-family: 'Roboto Slab', serif;
}

.news_list li a p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
}

.pager {
  position: relative;
  padding: 0;
  overflow: hidden;

  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager li {
  width: 32px;
  line-height: 32px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Roboto Slab', serif;
  position: relative;
  transition: ease .2s;
  opacity: 1 !important;
  color: #491607;
  cursor: pointer;
  border-radius: 100%;
}

.pager li:hover,
.pager li.current {
  border: 1px solid #491607;

}

.pager li.prev,
.pager li.next {
  width: 50px;
  height: 60px;
}

.pager li.prev:hover,
.pager li.next:hover {
  border: none !important;
  border-radius: 0;
  opacity: 0.8;
}

@media screen and (max-width:767px) {
  .pager li {
    width: 28px;
    line-height: 28px;
    margin: 0 3px;
    font-size: 1.6rem;
  }

  .pager li.prev,
  .pager li.next {
    width: 42px;
    height: 50px;
  }
}

@media screen and (max-width: 1850px) {
  .list_wrap {
    /* margin-left: 290px; */
    padding: 0 20px 0 270px;
  }
}

@media screen and (max-width: 1400px) {
  .page-news header {
    left: 20px;
  }

  .list_wrap {
    margin-left: 0;
    max-width: none;
    padding: 0 20px 0 270px;
  }
}

@media screen and (max-width: 1024px) {
  .page-news header {
    left: 20px;
  }

  .list_wrap {
    margin-left: 0;
    max-width: none;
    padding: 0 20px 0 20px;
  }
}

@media screen and (max-width: 1200px) {
  .news_list li a .img {
    flex: 0 1 240px;
  }

  .news_list li a .txt {
    margin-left: 50px;
    padding: 30px 180px 30px 0;
  }
}

@media screen and (max-width: 1000px) {
  .news_list li a .img {
    flex: 0 1 174px;
  }
}

@media screen and (max-width: 767px) {

  .page-news main h1,
  .page main h1 {
    margin-bottom: 50px;
  }

  .list_wrap {
    margin-left: 0;
    padding: 0 20px;
  }

  .news_list {
    padding: 0 15px;
  }

  .news_list li a {
    display: block;
    height: auto;
  }

  .news_list li a .img {
    height: 150px;
    padding: 20px 20px 0 20px;
  }

  .news_list li a .img img {
    height: 150px;
    position: static;
    transform: translateY(-40px);
  }

  .news_list li a .txt {
    margin-left: 0;
    padding: 0 30px 30px 30px;
  }

  .news_list li a .txt::after {
    display: block;
    width: 60px;
    margin: 20px auto 0 auto;
    position: static;
    transform: translateY(0);
  }
}

/* NEWS詳細
-------------------------------------------------- */
.page-news-detail {
  background: url(../img/news/bg_detail.jpg) no-repeat center top / cover;
}

.detail {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
}

.detail h1 {
  margin-bottom: 100px;
}

.detail a {
  color: #ffca10;
}

.detail a:hover {
  text-decoration: underline;
}

.detail .ttl {
  text-align: center;
  line-height: 1.4;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  font-weight: 900;
  padding-bottom: 60px;
  background: url(../img/news/ttl_bg.png) no-repeat center bottom;
  margin-bottom: 60px;
}

.detail time {
  font-size: 1.2rem;
  font-family: 'Roboto Slab', serif;
}

.detail p {
  margin-bottom: 20px;
}

.detail dl {
  margin-bottom: 20px;
}

.detail dt {
  margin: 30px 0 5px 0;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 35px;
  background: url(../img/news/icon_dia.png) no-repeat 0 5px / 24px auto;
}

.detail dd {
  padding-left: 35px;
}

p.indent,
ul.indent li {
  text-indent: -1em;
  margin: 10px 0 0 1em;
  font-size: 75%;
}

.btn_back {
  margin-top: 120px;
  text-align: center;
}

.btn_back a {
  display: inline-block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 1.6rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  color: #612710;
  background: #fff;
  border-radius: 20px;
  position: relative;
}

.btn_back a::before {
  content: "";
  display: block;
  width: 39px;
  height: 16px;
  background: url(../img/arrow2.png) no-repeat right center / 100% auto;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 1;
  transition: .3s;
}

.btn_back a:hover::before {
  right: -25px;
}

@media screen and (max-width: 1400px) {
  .detail {
    margin-left: 290px;
  }
}

@media screen and (max-width: 1100px) {
  .page-news-detail header {
    left: 20px;
  }

  .detail {
    margin-left: 0;
    max-width: none;
    padding: 0 20px 0 270px;
  }
}

@media screen and (max-width: 1024px) {
  .page-news-detail header {
    left: 20px;
  }

  .detail {
    margin-left: 0;
    max-width: none;
    padding: 0 30px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .detail {
    padding: 0 20px;
    font-size: 1.4rem;
  }

  .detail h1 {
    margin-bottom: 50px;
  }

  .detail .ttl {
    font-size: 1.8rem;
    text-align: left;
    padding-bottom: 40px;
    background-size: 60px auto;
    margin-bottom: 40px;
  }

  .btn_back {
    margin-top: 60px;
    text-align: center;
  }
}

/* SPECIAL用_背景
-------------------------------------------------- */
.special-detail2 {
  background: url(../special/img/special/bg.jpg) no-repeat center top / cover;
}

/* TOP
-------------------------------------------------- */
.ttl {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 13rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 9px rgba(58, 19, 0, 0.7);
}

.ttl::first-letter {
  font-size: 125%;
}

.detail .ttl::first-letter {
  font-size: 100%;
}

@media screen and (max-width: 1000px) {
  .ttl {
    font-size: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .ttl {
    font-size: 4.5rem;
  }
}

#mv {
  height: 110vh;
  position: relative;
  z-index: 1;
  border-top: 1px solid #062551;
}

/* #mv::before{
  content: "";
  display: block;
  width: 100%;
  height: 1536px;
  background: url(../img/home/mv.png) no-repeat center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
} */

#mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 113vh;
  background: url(../img/home/mv3.jpeg) #7f8c97 center top;
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

#mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  /* background: #fff; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#mv h1 {
  text-align: center;
  margin-top: 30px;
  width: 26vw;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  #mv h1 {
    width: 55vw;
    margin: 0px auto;
  }
}

#mv h1 img {
  width: auto;
}

#mv .catch {
  position: absolute;
  top: 50px;
  right: 80px;
  width: 10vw;
}

@media screen and (max-width: 1024px) {
  #mv .catch {
    width: 13%;
    top: 210px;
  }
}

#mv .onair {
  position: absolute;
  bottom: 11vh;
  left: 29%;
  max-width: 660px;
}

/* #mv .onair{
  position: absolute;
  bottom: 6vw;
  left: 40px;
  max-width: 18vw;
} */
@media screen and (max-width: 1000px) {
  #mv .onair {
    max-width: 40vw;
    bottom: 18vw;
  }
}

#mv .wrap {
  width: 590px;
  position: absolute;
  right: 0;
  bottom: -50px;
}

#mv .wrap .bnr_campaign {
  max-width: 327px;
  margin-left: auto;
}

#mv .wrap .bnr_campaign a:hover {
  opacity: 0.8;
}

#mv .wrap ul li {
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 23px 0 0 23px;
}

#mv .wrap ul li a {
  padding: 0 30px 0 40px;
  display: flex;
  align-items: center;
  height: 36px;
  border-radius: 23px 0 0 23px;
  color: #000;
  font-size: 1.5rem;
  background: #fff;
  box-shadow: 0px 3px 9px 0px rgba(56, 17, 0, 0.1);
  margin-bottom: 8px;
  background-color: rgba(255, 255, 255, 0.8);
}

#mv .wrap ul li a:hover {
  box-shadow: 0px 3px 9px 0px rgba(56, 17, 0, 0.5);
}

#mv .wrap ul li a time {
  font-size: 1.3rem;
  margin-right: 15px;
  font-weight: bold;
}

#mv .wrap ul li a span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
}

#mv .wrap .more {
  width: 180px;
  margin: 15px 40px 0 auto;
}

#mv .wrap .more a {
  display: block;
  height: 40px;
  line-height: 40px;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Roboto Slab', serif;
  background: #612710;
  border-radius: 25px;
}

#mv .wrap .more a::before {
  content: "";
  display: block;
  width: 55px;
  height: 100%;
  background: url(../img/arrow4.png) no-repeat right center / 100% auto;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 2;
  transition: .3s;
}

#mv .wrap .more a:hover::before {
  right: -30px;
}

.tb-only {
  display: none;
}

@media screen and (min-width: 1450px) and (max-width: 2400px) {
  #mv::before {
    background-size: contain;
  }
}

@media screen and (max-width: 1300px) {
  #mv h1 img {
    /* width: 40%; */
  }

  #mv .catch {
    right: 30px;
  }
}

@media screen and (max-width: 1000px) {
  #mv::before {
    min-height: auto;
    background: url(../img/home/mv_smp.jpg) #062551 no-repeat center top / cover;
  }

  #mv {
    min-height: auto;
  }

  #mv .wrap {
    width: 50%;
  }

}

@media screen and (max-width: 1024px) {
  #mv::before {
    background: url(../img/home/mv_smp.jpg) #062551 no-repeat center top / cover;
  }

  #movie {
    background: url(../img/home/movie_bg_smp.jpg) no-repeat center top / 100% 100% !important;
  }

  #movie {
    min-height: 770px;
  }

  .tb-only {
    display: block;
  }

  .pc-only {
    display: none !important;
  }

  #mv {
    height: auto;
    border-bottom: solid 1px #8c97a1;
    background-color: #8c97a1;
  }

  #mv::before {
    height: 156vw;
    min-height: 156vw;
  }

  #mv::after {
    display: none;
  }

  #mv h1 {
    margin-top: 26px;
    width: auto;
  }

  #mv h1 img {
    width: 58%;
  }

  #mv .catch {
    width: 100%;
    position: static;
    margin-top: 61vw;
  }

  #mv .catch img {
    width: 63%;
    margin: 0 auto;
  }

  #mv .onair {
    max-width: 86%;
    position: static;
    margin: 20px auto;
  }

  #mv .wrap {
    width: 100%;
    margin: -12vw 0 0;
    padding: 60px 25px 60px 25px;
    position: static;
    background: url(../img/home/mv_bg_smp.png) no-repeat center top / 100% 100%;
  }

  #mv .wrap .bnr_campaign {
    max-width: 100%;
    margin: 0;
  }

  #mv .wrap ul li {
    margin: 10px 0 0 0;
  }

  #mv .wrap ul li a {
    padding: 15px 30px;
    display: block;
    height: auto;
    border-radius: 10px;
    font-size: 1.3rem;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.75);
  }

  #mv .wrap ul li a time {
    font-size: 1rem;
    margin-right: 0;
  }

  #mv .wrap ul li a span {
    -webkit-line-clamp: 2;
  }

  #mv .wrap .more {
    width: 80%;
    margin: 20px auto 0 auto;
  }

  #mv .wrap .more a {
    height: 50px;
    line-height: 50px;
  }

  #mv .wrap .bnr_transform {
    transform: translateX(12px) scale(1.03);
  }
}

#movie .bnr_area {
  display: flex;
  justify-content: center;
}

#movie .bnr_area a {
  width: 33%;
}

#movie {
  padding: 10vw 22vw 0 22vw;
  height: 70vw;
  margin-top: -7vw;
  background: url(../img/home/movie_bg.png) no-repeat center 11vh;
}

#movie .wrap {
  max-width: 1280px;
  padding: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/home/movie_frame.png) no-repeat center center / 100% auto;
}

.frame {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  cursor: pointer !important;
  opacity: 1;
  width: 90px !important;
  height: 120px !important;
  background: url(../img/home/btn_menu_close_white.png) no-repeat 0 0 / 100% auto #000 !important;
  border-radius: 0 !important;
}

.modaal-close::before,
.modaal-close::after {
  display: none !important;
}

.modaal-close:hover {
  opacity: 0.7 !important;
}

.modaal-video-wrap {
  padding: 50px !important;
  background: url(../img/home/movie_frame.png) no-repeat center center / auto 100% !important;
}

@media screen and (max-width: 1400px) {
  #movie {
    min-height: 850px;
  }

  .modaal-video-wrap {
    background-size: 100% 100% !important;
  }
}

@media screen and (max-width: 1024px) {
  #movie {
    padding: 50px 100px 30vw 100px;
    margin-top: 0;
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  #movie {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  #movie {
    margin: 0 0 9vw;
    padding: 0 25px 40vw 25px;
    height: auto;
    background: url(../img/home/movie_bg_smp.jpg) no-repeat center top / 100% 100% !important;
  }

  #movie .wrap {
    padding: 20px;
    height: auto;
    margin: 0 auto;
    background-size: 100% 100%;
  }

  .modaal-video-wrap {
    margin: auto 0 !important;
    padding: 20px !important;
  }

  .modaal-close {
    width: 78px !important;
    height: 104px !important;
    right: 10px !important;
    top: 10px !important;
  }
}

#twitter {
  height: 1146px;
  background: url(../img/home/bg_twitter.png) no-repeat center top;
  margin: -200px 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

#twitter .ttl {
  margin: 0px 0 0 25vmin;
}

#twitter ul {
  margin-top: 70px;
  max-width: 900px;
}

#twitter ul>* {
  flex: 0 1 44.5%;
}

#twitter ul>* h3 {
  text-align: center;
  line-height: 1;
  color: #612710;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
  font-family: 'Noto Serif JP', serif;
  padding-top: 30px;
  margin-bottom: 30px;
  background: url(../img/home/twitter_ttl_bg.png) no-repeat center top / auto 22px;
}

@media screen and (max-width: 767px) {
  #twitter {
    padding: 0 20px 50vw 20px;
    height: auto;
    background: url(../img/home/bg_twitter_smp.png) no-repeat center top / 100% 100%;
    margin: -32vw 0 -23vw 0;
  }

  #twitter .ttl {
    text-align: left;
    margin: auto;
  }

  #twitter ul {
    padding: 0 30px;
    margin-top: 40px;
  }

  #twitter ul>*:last-child {
    margin-top: 45px;
  }

  #twitter ul>* h3 {
    font-size: 1.8rem;
    padding-top: 25px;
    margin-bottom: 20px;
    background-size: auto 19px;
  }

  .twitter-timeline {
    height: 400px !important;
  }
}

@media screen and (max-width: 320px) {
  #twitter {
    margin: -32vw 0 -23vw 0;
  }

  #twitter ul {
    padding: 0;
  }
}

#intro_wrap {
  margin-top: -190px;
  background: url(../img/home/intro_bg.jpg) no-repeat center top;
  overflow: hidden;
}

@media screen and (min-width: 1920px) {
  #intro_wrap {
    background-size: 100% auto;
  }
}

#intro {
  height: 1120px;
  padding: 330px 20px 0 20px;
}

#intro .txt {
  max-width: 690px;
  margin: 0 auto;
}

#intro h2 {
  margin-bottom: 50px;
  text-align: center;
  padding-bottom: 55px;
  font-size: 6rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0px 0px 16.2px rgba(0, 112, 190, 0.7);
  background: url(../img/home/intro_ttl_bg.png) no-repeat center bottom;
}

#intro p {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(0, 112, 190, 1);
  font-weight: 600;
  text-align: center;
}

#intro .big {
  font-size: 2em;
}

@media screen and (max-width: 1250px) {
  #intro {
    height: 1120px;
    padding: 330px 20px 0 20px;
  }

  #intro .txt {
    margin: 0 0 0 300px;
  }

  #intro h2 {
    font-size: 4.6rem;
  }
}

@media screen and (max-width: 1024px) {
  #intro .txt {
    margin: 0 60px 0 60px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #intro_wrap {
    margin-top: 0;
    background: none;
  }

  #intro {
    height: auto;
    padding: 30vw 50px;
    background: url(../img/home/intro_bg.jpg) no-repeat center top / cover;
  }

  #intro .txt {
    margin: 0;
  }

  #intro h2 {
    font-size: 2.8rem;
  }

  #intro p {
    font-size: 1.2rem;
    text-align: left;
  }

  #intro .big {
    font-size: 1.7em;
  }

  #bg_bottom {
    margin: -20vw 0 0 0;
    background: url(../img/home/bg_bottom.png) no-repeat center top / 100% auto;
  }
}

@media screen and (max-width: 320px) {
  #intro {
    padding: 30vw 20px;
  }

  #bg_bottom {
    background: url(../img/home/bg_bottom.png) no-repeat center top, url(../img/home/bg_bottom.png) no-repeat center bottom;
    background-size: 100% auto, 100% auto;
  }
}

#story {
  height: 1070px;
  padding: 90px 20px 0 20px;
  color: #612710;
  font-size: 2rem;
  background: url(../img/home/story_bg.png) no-repeat center top;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  z-index: 0;
}

#story .inner {
  position: relative;
  z-index: 3;
}

#story::before {
  content: "";
  display: block;
  width: 66%;
  max-width: 1278px;
  height: 1352px;
  background: url(../img/home/story_chara.png) no-repeat right bottom / 100% auto;
  position: absolute;
  bottom: -190px;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 1400px) {
  #story::before {
    right: -10%;
    width: 80%;
  }
}

#story h3,
#story p {
  max-width: 590px;
}

#story h3 {
  margin-top: 30px;
  font-size: 3.6rem;
  line-height: 1.4;
}

#story p {
  margin-top: 90px;
  line-height: 2;
  font-weight: 600;
}

@media screen and (max-width: 1800px) {
  #story {
    padding: 90px 20px 0 270px;
  }

  #story h3,
  #story p {
    max-width: 590px;
  }
}

@media screen and (max-width: 1024px) {
  #story {
    padding: 90px 80px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  #story {
    height: auto;
    padding: 10px 20px 10vw 20px;
    font-size: 1.3rem;
    background: none;
  }

  #story::before {
    display: none;
  }

  #story h3,
  #story p {
    max-width: none;
    padding: 0 30px;
  }

  #story h3 {
    margin-top: 20px;
    font-size: 2rem;
  }

  #story p {
    margin-top: 45px;
    line-height: 2;
  }
}

@media screen and (max-width: 320px) {

  #story h3,
  #story p {
    padding: 0;
  }
}

#char {
  padding: 20px 20px 100px 20px;
  font-size: 2.2rem;
  line-height: 1.6;
  color: #612710;
  text-align: center;
  position: relative;
}

#char::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/home/staff_bg.png) no-repeat center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#char h2 {
  text-align: right;
  margin-right: 15vw;
  position: relative;
  z-index: 3;
}

#char .flex {
  /* max-width: 1060px; */
  margin: 50px 16vw 0;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}

#char .flex .box:nth-of-type(2) .img img {
  transform: scale(0.96);
  transform-origin: bottom;
}

#char .flex .box:nth-of-type(1) .text {
  transform: translateX(-20px);
}

#char .flex .box .text {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  /* transform: translateX(10px); */
  margin-top: 10px;
}

#char .btn_back {
  position: relative;
  z-index: 3;
  margin-top: 60px;
}

#char .btn_back a {
  width: 384px;
  height: 70px;
  line-height: 70px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: 'Roboto Slab', serif;
  border-radius: 35px;
  background-color: #612710;
  color: #fff;
}

#char .btn_back a::before {
  width: 68px;
  height: 29px;
  right: -35px;
  background: url(../img/home/more-arrow.png) no-repeat right center / 100% auto;
}

#char .btn_back a:hover::before {
  right: -40px;
}

@media screen and (max-width: 1300px) {
  #char h2 {
    text-align: center;
    margin-right: 0;
    font-size: 10rem;
  }
}

@media screen and (max-width: 900px) {
  #char h2 {
    font-size: 8rem;
  }
}

@media screen and (max-width: 767px) {
  #char {
    padding: 20px 20px 50px 20px;
    font-size: 2.3rem;
  }

  #char::after {
    display: none;
  }

  #char h2 {
    text-align: center;
    margin-right: 0;
    font-size: 3.6rem;
  }

  #char .flex .box .img {
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
  }

  #char .flex .box:nth-of-type(1) .img img {
    transform: translate(12px, 0);
    transform-origin: bottom;
  }

  #char .flex .box:nth-of-type(2) .img img {
    width: 92%;
  }

  #char .flex .box:nth-of-type(3) .img img {
    width: 92%;
    transform: translateX(-4px);
  }

  #char .flex .box:nth-of-type(4) .img img {
    width: 96%;
    transform: translateX(-7px);
  }

  #char .flex .box .text {
    transform: initial !important;
    font-size: 16px;
  }

  #char .flex .box:not(:last-child) {
    margin-bottom: 30px;
  }

  #char .btn_back a {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    max-width: 225px;
  }

  #char .btn_back a::before {
    width: 57px;
    height: 30px;
  }

  #char .btn_back {
    margin-top: 40px;
  }
}


/* ADD 2022.06.06 */
body {
  position: relative;
}

footer {
  position: relative;
}

footer.home_footer {
  padding-top: 70px;
}

.footer_char {
  position: absolute;
  z-index: 2;
}

.footer_char:not(.home_footer_char) {
  top: -30px;
  left: 60px;
}

.home_footer_char {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
  width: 1276px;
  max-width: 100%;
}

.home_footer_char img {
  width: 100%;
}

@media screen and (max-height: 900px) {
  .home header .gnav li {
    margin-bottom: 5px;
  }

  .home header .sns_btn {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1700px) {
  footer .inner {
    max-width: 1000px;
    margin-right: 0;
    padding-right: 90px;
  }
}

@media screen and (max-height: 900px) {
  header .gnav li a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1400px) {
  header .gnav li a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .footer_char:not(.home_footer_char) {
    transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
  }

  footer {
    padding-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  #bg_bottom {
    padding-bottom: 40px;
  }

  footer {
    padding-top: 0;
  }

  footer .inner {
    padding-right: 0;
  }

  .footer_char:not(.home_footer_char) {
    position: initial;
    transform: initial;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer_char:not(.home_footer_char) img {
    width: 55px;
  }

  header .flex {
    display: flex;
    flex-wrap: wrap;
  }

  header .gnav {
    width: 50%;
  }

  header .gnav li a {
    font-size: 1.5rem;
    text-align: left;
  }

  header .gnav:nth-of-type(2) li:last-child {
    white-space: nowrap;
  }

  .home_footer_char img {
    width: 256px;
  }

  footer.home_footer {
    padding-top: 0;
  }
}



/* STAFF & CAST */
.page-staff {
  background: url(../img/staff/bg.jpg) no-repeat center top / cover;
}

.staff-sec01 {
  text-align: center;
}

.staff-sec01 .text.top {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  margin-bottom: 60px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: normal;
}

.staff-sec01 .text.top::first-letter {
  font-size: 125%;
}

.staff-sec01 .box>.item,
.staff-sec01 .box .flex.n1 {
  margin-bottom: 55px;
}

.staff-sec01 .flex.n3>.item {
  width: 25%;
}

.staff-sec01 .box .label {
  font-size: 24px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.staff-sec01 .box .text:not(.top) {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.625;
  letter-spacing: 0.1em;
}

.staff-sec01 .box .text:not(.top).adjust {
  line-height: 1;
}

.mincho {
  font-family: 'Noto Serif JP', serif;
}

.staff-sec01 .box {
  margin-bottom: 110px;
}

.staff-sec01 .box .flex {
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.staff-sec01 .box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .staff-sec01 .text.top {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .staff-sec01 .box .label {
    font-size: 12px;
  }

  .staff-sec01 .box .text:not(.top) {
    font-size: 13px;
    letter-spacing: 0;
  }

  .staff-sec01 .box>.item,
  .staff-sec01 .box .flex.n1 {
    margin-bottom: 35px;
  }

  .staff-sec01 .box .flex {
    display: flex;
  }

  .staff-sec01 .box {
    margin-bottom: 50px;
  }
}


/* MOVIE */
.page-movie {
  background: url(../img/movie/bg.jpg) no-repeat center top / cover;
}

.movie-sec01 .box a,
.goods-sec01 .box a {
  display: block;
}

.movie-sec01 .flex,
.goods-sec01 ul.goods_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.goods-sec01 ul.goods_list li {
  width: 30.33333%;
  margin: 0 1.5% 60px;
}

.movie-sec01 .flex .box {
  width: 31%;
  margin-right: 3.5%;
}

.movie-sec01 .flex .box:nth-of-type(3n) {
  margin-right: 0;
}

.movie-sec01 .flex .box:nth-of-type(n + 4) {
  margin-top: 60px;
}

.movie-sec01 .flex .box .text {
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 5px;
  font-family: 'Noto Serif JP', serif;
}

.movie-sec01 .flex .box .text span {
  font-size: 14px;
  vertical-align: middle;
  color: #f00;
  padding: 0 10px 0 0;
}

.movie-sec01 h2.text {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 80px;
}

.movie-sec01 h2.next_h2 {
  margin-top: 70px;
}

@media screen and (max-width: 1024px) {
  .movie-sec01 .flex .box .text {
    font-size: 16px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .movie-sec01 .flex .box {
    width: 100%;
    margin-right: 0;
  }

  .movie-sec01 .flex .box:nth-of-type(n + 2) {
    margin-top: 30px;
  }

  .movie-sec01 h2.text {
    font-size: 22px;
  }

  .goods-sec01 ul.goods_list li {
    margin: 0 0 30px;
  }
}


/* GOODS */
.page-goods {
  background: url(../img/goods/bg.jpg) no-repeat center top / cover;
}

.page-goods .pager li {
  color: #fff;
}

.page-goods .pager li:hover,
.page-goods .pager li.current {
  border: 1px solid #fff;
}

.page-goods .pager img {
  -webkit-filter: brightness(0) grayscale(100%) invert(1);
  -moz-filter: brightness(0) grayscale(100%) invert(1);
  -o-filter: brightness(0) grayscale(100%) invert(1);
  -ms-filter: brightness(0) grayscale(100%) invert(1);
  filter: brightness(0) grayscale(100%) invert(1);
}

.goods_list li .text {
  margin-top: 8px;
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 990px;
  margin: 0 auto 75px;
}

.category_list li {
  width: 15.6666%;
  margin-right: 1.2%;
}

.category_list li:nth-of-type(6n) {
  margin-right: 0;
}

.category_list li span {
  display: block;
  font-weight: 400;
}

.category_list li a {
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
  font-size: 14px;
  font-weight: 900;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
}

.category_list li a.current {
  transform: translateY(-20px);
  pointer-events: none;
}

.category_list li a::before {
  content: "";
  background: url(../img/goods/item.png) no-repeat center center / contain;
  width: 17px;
  height: 20px;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.category_list li a:hover:before {
  content: "";
  background: url(../img/goods/item.png) no-repeat center center / contain;
  width: 17px;
  height: 20px;
  position: absolute;
  pointer-events: none;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

@media screen and (max-width: 1024px) {
  .category_list li {
    width: 32%;
    margin-right: 1.3%;
  }

  .category_list li:nth-of-type(3n) {
    margin-right: 0;
  }

  .category_list li {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .category_list li {
    width: 48%;
    margin-right: 2%;
  }

  .category_list li:nth-of-type(3n) {
    margin-right: 2%;
  }

  .category_list li:nth-of-type(2n) {
    margin-right: 0;
  }

  .goods-sec01 ul.goods_list li {
    width: 100%;
    margin-right: 0;
  }

  .page-goods .pager {
    margin-top: 30px;
  }

  .category_list li a.current {
    transform: translateY(-10px);
  }
}


/* GOODS詳細 */
.goods-detail-content .flex {
  justify-content: space-between;
}

.goods-detail-content .img_box {
  min-width: 51.6%;
  margin-right: 4%;
}

.goods-detail-content .img_box .img {
  margin-bottom: 20px;
}

.goods-detail-content .img_box .img:last-child {
  margin-bottom: 0;
}

.goods-detail-content .detail_box {
  font-family: 'Noto Serif JP', serif;
}

.goods-detail-content .detail_box .item_cat {
  font-size: 12px;
  font-weight: bold;
  margin-top: -30px;
}

.goods-detail-content .detail_box .item_name {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.goods-detail-content .detail_box .time {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.goods-detail-content .detail_box .box_flex {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 50px;
}

.goods-detail-content .detail_box .box_flex:last-child {
  margin-bottom: 0;
}

.goods-detail-content .detail_box .box .label {
  margin: 5px 0 20px;
}

.goods-detail-content .detail_box .box .label span,
.music-sec01 .box .label span {
  font-weight: 900;
  border: 1px solid #fff;
  padding: 3px 10px 6px;
}

.goods-detail-content .detail_box .box .price,
.goods-detail-content .detail_box .box .number,
.music-sec01 .box .price,
.music-sec01 .box .number {
  font-weight: 900;
}

.goods-detail-content .detail_box .box ul {
  margin-top: 10px;
}

.goods-detail-content .detail_box .box ul li,
.music-sec01 .box ul li {
  /* padding-left: 35px; */
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
}

.goods-detail-content .detail_box .box ul li:last-child,
.music-sec01 .box ul li:last-child {
  margin-bottom: 0;
}

.goods-detail-content .detail_box .box ul li span,
.music-sec01 .box ul li span {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

/* .goods-detail-content .detail_box .box ul li::before,
.music-sec01 .box ul li::before{
  content: "";
  background: url(../img/goods/detail-item.png) no-repeat center center / contain;
  width: 24px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
} */
.goods-detail-content .detail_box .btn_back {
  margin-top: 20px;
}
.goods-detail-content .detail_box .btn_back span{
  display: block;
  text-align: left;
  margin-bottom: 5px;
}

.sPager {
  display: flex;
  margin: 60px auto 30px;
  width: 300px;
  justify-content: space-around;
}

.sPager .sPrev {
  width: 103px;
}

.sPager .sPrev {
  transform: translateX(-10px);
}

.sPager .sNext {
  width: 106px;
}

.sPager .sPrev:hover,
.sPager .sNext:hover {
  opacity: .6;
  transition: .5s;
}

.gPrice {
  text-align: right;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .goods-detail-content .img_box {
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .goods-detail-content .flex {
    display: block;
  }

  .goods-detail-content {
    padding: 0 30px;
  }

  .goods-detail-content .detail_box .item_cat {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .goods-detail-content .detail_box .item_name {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.6;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .goods-detail-content .detail_box .time {
    font-size: 12px;
    letter-spacing: 0;
  }

  .goods-detail-content .detail_box .box .label span,
  .music-sec01 .box .label span {
    font-size: 16px;
  }

  .goods-detail-content .detail_box .box .price,
  .goods-detail-content .detail_box .box .number,
  .music-sec01 .box .price,
  .music-sec01 .box .number {
    font-size: 16px;
  }

  .goods-detail-content .detail_box .box .label {
    margin: 22px 0;
  }

  .goods-detail-content .detail_box .item_cat {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .goods-detail-content .detail_box .box_flex {
    display: block;
  }

  .goods-detail-content .detail_box .btn_back a {
    width: 100%;
  }
  .goods-detail-content .detail_box .btn_back span{
  text-align: center;
}
}



/* MUSIC */
.page-music {
  background: url(../img/music/bg.jpg) no-repeat center top / cover;
}

.music-sec01 .inner {
  max-width: 1050px;
}

.music-sec01 .flex {
  justify-content: space-between;
}

.music-sec01 .flex .img {
  width: 420px;
}

.music-sec01 .flex .text_box {
  width: calc(100% - 450px);
}

.music-sec01 .flex .text_box .name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
}

.music-sec01 .flex .text_box .text {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}

.music-sec01 .flex .text_box .text span {
  font-weight: 900;
}

.music-sec01 .flex .text_box .song_title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.music-sec01 .flex .text_box ul li:not(:last-child) {
  margin-bottom: 8px;
}

.music-sec01 .box {
  margin-top: 50px;
  font-family: 'Noto Serif JP', serif;
}

.music-sec01 .box .label {
  margin-bottom: 20px;
}

.music-sec01 .box ul {
  margin-top: 10px;
}

.music-sec01 .box .btn_back {
  margin-top: 30px;
  text-align: left;
  padding-left: 35px;
}

.music-sec01 .box .btn_back a {
  text-align: center;
}

.music-sec01 .profile {
  margin-top: 60px;
  margin-bottom: 100px;
}

.music-sec01 .profile .text.top {
  font-weight: 900;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
  font-size: 16px;
}

.music-sec01 .profile .text:not(.top) {
  line-height: 2.2;
  font-weight: 500;
}

.music-sec01 .profile .btn_back {
  margin-top: 20px;
}

.music-sec01 .profile .btn_back a {
  width: 327px;
  height: auto;
  color: #fff;
  letter-spacing: 0.075em;
  border-radius: 0;
  border: 1px solid #fff;
  background: none;
}

.music-sec01 .profile .btn_back a::before {
  background: url(../img/music/arrow.png) no-repeat right center / 100% auto;
}

@media screen and (max-width: 1024px) {
  .music-sec01 .flex {
    display: block;
  }

  .music-sec01 .flex .img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
  }

  .music-sec01 .flex .text_box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .music-sec01 .flex .text_box .name {
    font-size: 24px;
    border-bottom: 1px solid #fff;
  }

  .music-sec01 .flex .text_box .song_title {
    font-size: 20px;
  }

  .music-sec01 .flex .text_box .text {
    letter-spacing: 0;
  }

  .music-sec01 .profile .btn_back a {
    width: 100%;
  }
}


/* ONAIR */
.page-onair {
  background: url(../img/onair/bg.jpg) no-repeat center top / cover;
}

.page-onair main {
  min-height: 1010px;
}

.onair-sec01 .flex {
  align-items: center;
  justify-content: center;
}

.onair-sec01 .text:not(.top) {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.onair-sec01 .text.top {
  font-size: 60px;
  letter-spacing: 0.1em;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.onair-sec01 .text.sml {
  font-size: 20px;
}

.onair-sec01 .text span {
  font-size: 40px;
}

.onair-sec01 .box {
  margin: 60px auto 30px;
}

.onair-sec01 .flex2 {
  justify-content: flex-start;
  flex-wrap: wrap;
  display: flex;
  max-width: 1000px;
  margin: 20px auto;
}

.onair-sec01 .flex2 .item {
  width: 25%;
  padding: 10px 0;
}

.onair-sec01 a {
  color: #ffca10;
}

.onair-sec01 a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .onair-sec01 .text.top {
    font-size: 50px;
  }

  .onair-sec01 .text:not(.top) {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .page-onair main {
    min-height: auto;
  }

  .onair-sec01 .text.top {
    font-size: 30px;
    letter-spacing: 0;
  }

  .onair-sec01 .text:not(.top) {
    font-size: 16px;
  }

  .onair-sec01 .text span {
    font-size: 22px;
  }

  .onair-sec01 .text.sml {
    font-size: 12px;
  }

  .onair-sec01 .flex2 .item {
    width: 33%;
    padding: 10px 0;
    text-align: center;
  }
}


/* COMMENT */
.page-comment {
  background: url(../img/comment/bg.jpg) no-repeat center top / cover;
}

.comment-sec01 .category_list {
  justify-content: flex-start;
}

.comment-sec01 .category_list li {
  margin-bottom: 50px;
  position: relative;
}

.comment-sec01 .category_list li.new::before {
  content: 'NEW';
  position: absolute;
  color: #f00;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  top: -7px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.comment-sec01 .flex {
  align-items: center;
  justify-content: flex-start;
}

.comment-sec01 .flex .img {
  margin-right: 60px;
}

.comment-sec01 .flex .text {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.comment-sec01 .flex .text span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.comment-sec01 .text_box {
  margin-top: 50px;
}

.comment-sec01 .text_box .text.top {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 2;
  font-weight: 900;
  margin-bottom: 15px;
  color: #ffe072;
}

.comment-sec01 .text_box .text:not(.top) {
  text-align: justify;
  word-break: break-all;
  line-height: 2.2;
}

.comment-sec01 .box {
  max-width: 800px;
  margin: 0 auto;
}

.comment-sec01 .box {
  padding-top: 90px;
}

.comment-sec01 .box:last-child {
  margin-bottom: 0;
}

.page-comment .category_list {
  margin-bottom: 0;
}

.nextcomment {
  text-align: right;
  margin: 0 auto 40px;
  max-width: 1000px;
  width: 100%;
}

.nextcomment a {
  width: 300px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .page-comment .category_list li a {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .page-comment .category_list li {
    width: 100%;
    margin-right: 0 !important;
  }

  .comment-sec01 .flex .img {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    width: 50vw;
  }

  .comment-sec01 .flex .text {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
  }

  .comment-sec01 .flex .text span {
    font-size: 16px;
  }

  .comment-sec01 .text_box .text.top {
    font-size: 16px;
    letter-spacing: 0;
  }

  .comment-sec01 .text_box .text:not(.top) {
    font-size: 14px;
  }

  .nextcomment {
    text-align: center;
  }
}

/* STAFF COMMENT */
.page-staff_comment {
  background: url(../img/comment/staff_comment_bg.jpg) no-repeat center top / cover;
}

.page-staff_comment .category_list {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  body.page-staff_comment .comment-sec01 .flex p.text {
    text-align: left;
  }
}

/* CHARACTER */
.page-character {
  background: url(../img/character/bg.jpg) no-repeat center top / cover;
}

.character_list .item img {
  width: 90%;
}

.character_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  max-width: 900px;
  margin: 0 auto;
  justify-content: flex-start;
}

/* .character_list .item:nth-of-type(1){
  margin-right: -10px;
}
.character_list .item:nth-of-type(4){
  margin-left: -20px;
  margin-right: -14px;
}
.character_list .item:nth-of-type(6){
  margin-right: -24px;
}
.character_list .item:nth-of-type(6){
  margin-right: -24px;
}
.character_list .item:nth-of-type(7){
  transform: translateX(7px);
}
.character_list .item:nth-of-type(8){
  transform: translateX(7px);
}
.character_list .item:nth-of-type(9){
  transform: translateX(7px);
} */
.character_list .item {
  cursor: pointer;
  transition: .3s;
  width: 100px;
  height: 120px;
  text-align: center;
  position: relative;
}

.character_list .item.new::before {
  content: 'NEW';
  position: absolute;
  color: #f00;
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  /* font-weight: bold; */
  top: 4px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.character_list .item.newBottom::before {
  content: 'NEW';
  position: absolute;
  color: #f00;
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  /* font-weight: bold; */
  bottom: -26px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.character_list .item.current {
  pointer-events: none !important;
  transform: translateY(-6px);
}

.char_slider_wrap {
  margin-top: 30px;
}

.char_slider .slick-list {
  overflow: initial;
}

.char_slider_item {
  width: 960px;
  height: 743px;
  margin-right: 12vw;
}

.char_slider_item .flex {
  justify-content: space-between;
  height: 100%;
}

.char_slider_item .main_img {
  display: flex;
  align-items: flex-end;
  width: calc(48% - 25px);
  position: relative;
  transition: .5s;
}

.char_slider_item.n1 .main_img img {
  width: auto;
  height: 720px;
}

.char_slider_item.n2 .main_img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 690px;
}

.char_slider_item.n3 .main_img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 720px;
}

.char_slider_item.n4 .main_img img {
  width: auto;
  height: 690px;
}

.char_slider_item.n5 .main_img img {
  width: auto;
  height: 620px;
}

.char_slider_item.n6 .main_img img {
  width: auto;
  height: 620px;
}

.char_slider_item.n7 .main_img img {
  width: auto;
  height: 620px;
}

.char_slider_item.n8 .main_img img {
  width: auto;
  height: 500px;
}

.char_slider_item.n9 .main_img img {
  width: auto;
  height: 670px;
  left: -60px;
}

.char_slider_item.n10 .main_img img {
  width: auto;
  height: 710px;
}

.char_slider_item.n11 .main_img img {
  width: auto;
  height: 700px;
}

.char_slider_item.n12 .main_img img {
  width: auto;
  height: 690px;
}

.char_slider_item.n13 .main_img img {
  width: auto;
  height: 750px;
}

.char_slider_item.n21 .main_img img {
  width: auto;
  height: 700px;
}

.char_slider_item.n22 .main_img img {
  width: auto;
  height: 700px;
}

.char_slider_item.n23 .main_img img {
  width: auto;
  height: 700px;
}

.char_slider_item.n24 .main_img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 690px;
}

.char_slider_item.n27 .main_img img {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: auto;
  height: 690px;
}

.char_slider_item.n28 .main_img img {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: auto;
  height: 690px;
}

.char_slider_item .main_img .img {
  width: 100%;
}

.char_slider_item .main_img img {
  width: auto;
  max-width: initial;
  margin: 0 auto;
  filter: blur(4px);
  opacity: .8;
  transition: .2s;
}

.char_slider_item .text_box {
  min-width: 52%;
  width: 52%;
  margin-left: 25px;
  padding-top: 150px;
  z-index: 9;
}

.char_slider_item .text_box .chara {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.char_slider_item.n28 .text_box .chara {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.char_slider_item .text_box .name {
  font-size: 59px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: 'Noto Serif JP', serif;
}

.char_slider_item.n28 .text_box .name {
  width: 100%;
}


.char_slider_item .text_box .text.top {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
}

.char_slider_item .text_box .text:not(.top) {
  font-size: 16px;
  font-weight: bold;
  text-align: justify;
  font-family: 'Noto Serif JP', serif;
  line-height: 2.2;
}

.char_slider_item .text_box .item {
  margin-top: 40px;
}

.char_slider_item.prev .main_img {
  width: 100%;
}

.char_slider_item.prev .main_img img {
  margin-right: 0;
}

.char_slider .slide-arrow {
  z-index: 1;
  position: absolute;
  width: 80px;
  transform: translateY(-50%);
  top: 50%;
  cursor: pointer;
}

.char_slider .slide-arrow.prev-arrow {
  left: 0;
}

.char_slider .slide-arrow.next-arrow {
  right: 0;
}

.char_slider_item.n7 .text_box {
  display: none;
}

.char_slider_item.slick-current .main_img img,
.char_slider_item.is-active-next .main_img img {
  filter: blur(0);
  opacity: 1;
}


@media screen and (max-width: 1450px) {
  .char_slider_item .text_box .name {
    font-size: 40px;
  }

  .char_slider_item {
    margin-right: 0;
    opacity: 0;
    transition: 1s;
  }

  .char_slider_item.slick-current,
  .char_slider_item.is-active-next {
    opacity: 1;
  }

  .char_slider_item .text_box {
    display: block !important;
  }

  .char_slider .slide-arrow {
    width: 60px;
    top: 30px;
  }

  .char_slider .slide-arrow.prev-arrow {
    left: auto;
    right: 15vw;
  }

  .char_slider .slide-arrow.next-arrow {
    right: 10vw;
  }
}

@media screen and (max-width: 1250px) {
  .char_slider_item {
    width: 720px;
  }

  .char_slider_item .main_img img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .char_slider_item .flex {
    display: block;
  }

  .char_slider_item .main_img {
    width: 100%;
  }

  .char_slider_item .text_box {
    width: 100%;
    margin-left: 0;
    padding-top: 40px;
  }

  .char_slider_item {
    width: auto;
    height: auto;
  }

  .char_slider_item .main_img img {
    position: initial !important;
  }

  .char_slider .slide-arrow {
    top: 28%;
  }

  .char_slider .slide-arrow.prev-arrow {
    right: auto;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .char_slider_item .main_img img {
    max-width: 90%;
    height: auto !important;
  }

  .char_slider_item.n2 .main_img img {
    transform: translateX(-13%);
    max-width: 110%;
    height: auto !important;
  }

  .char_slider_item.n3 .main_img img {
    transform: translateX(-13%);
    max-width: 110%;
    height: auto !important;
  }

  .char_slider_item.n6 .main_img img {
    transform: translateX(-6%);
    max-width: 100%;
    height: auto !important;
  }

  .char_slider_item.n9 .main_img img {
    transform: translateX(-14%);
    max-width: 141%;
    height: auto !important;
  }

  .char_slider_item.n10 .main_img img {
    transform: translateX(0);
    max-width: 66%;
    height: auto !important;
  }

  .char_slider_item.n11 .main_img img {
    transform: translateX(0);
    max-width: 70%;
    height: auto !important;
  }

  .char_slider_item.n12 .main_img img {
    transform: translateX(0);
    max-width: 80%;
    height: auto !important;
  }

  .char_slider_item.n13 .main_img img {
    transform: translateY(-20px);
    max-width: 90%;
    height: auto !important;
  }

  .char_slider .slide-arrow.next-arrow {
    right: 20px;
  }

  .char_slider .slide-arrow.prev-arrow {
    right: auto;
    left: 20px;
  }

  .char_slider .slide-arrow {
    top: 24%;
    width: 40px;
  }

  .char_slider_item .text_box .chara {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .char_slider_item .text_box .name {
    font-size: 30px;
    /* border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px; */
  }

  .char_slider_item .text_box .text.top {
    /* font-size: 10px; */
  }

  .char_slider_item .text_box .text:not(.top) {
    font-size: 14px;
  }

  .char_slider_wrap {
    margin: 0 -20px;
  }

  .char_slider_item .text_box .item {
    margin-top: 20px;
  }

  .character_list.noPC {
    margin-top: 50px;
    max-width: 348px;
    justify-content: space-between;
    display: flex !important;
  }

  .character_list .item img {
    width: 100%;
  }

  .character_list .item {
    margin: 0 3px 15px;
  }

  .character_list .item.new::before {
    top: 7px;
  }

  /* .character_list .item:nth-of-type(4) {
    margin-left: -30px;
    margin-right: -6px;
  }
   */
  /*
  .character_list .item.n1 img{
    width: 66px;
  }
  .character_list .item.n2 img{
    width: 48px;
  }
  .character_list .item.n3 img{
    width: 56px;
  }
  .character_list .item.n4{
    margin-left: -5px;
  }
  .character_list .item.n4 img{
    width: 64px;
  }
  .character_list .item.n5 img{
    width: 58px;
  }
  .character_list .item.n6 img{
    width: 46px;
  }
  .character_list .item.n7 img{
    width: 52px;
  } */
  .character_list .item.current {
    pointer-events: none !important;
    transform: translateY(-10px);
  }
}

/* 20220627_NEWS0628 */
.news_imageArea {
  display: block;
  margin: 0 auto;
}

.news_imageArea .img_item_top {
  margin: 0 auto 20px;
  max-width: 90%;
}

.news_imageArea .img_item_sec {
  max-width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .news_imageArea .img_item_top {
    max-width: 100%;
  }

  .news_imageArea .img_item_sec {
    max-width: 100%;
    margin: 0 auto;
  }
}

ul.list_sec li {
  font-size: 100%;
}

/* 20220627_NEWS0628_end */