/* Scss Document */
.movie {
  object-fit: cover;
  width: 100%;
  position: absolute;
  height: 320px;
}

.movie video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
  outline: none;
  border: none;
  filter: drop-shadow(0px 0px #000);
}

@media (max-width: 768px) {
  .movie {
    height: 51.354vw;
  }
}

.movie img.play {
  display: none;
}

@media (max-width: 768px) {
  .movie img.play {
    position: absolute;
    z-index: 1;
    top: 15vw;
    left: 0;
    right: 0;
    width: 70px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 15vw;
  }
}

.movie img.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 0;
}

.poster {
  object-fit: cover;
  width: 100%;
  position: absolute;
  height: 320px;
  transform: translateX(-140px);
  /*ç”»åƒä¸­å¤®åˆã‚ã›*/
}

@media screen and (max-width: 1065px) {
  .poster {
    transform: translateX(0px);
    /*ç”»åƒä¸­å¤®åˆã‚ã›*/
  }
}

@media (max-width: 768px) {
  .poster {
    height: 51.354vw;
  }
}

.poster ul li img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .poster ul li img {
    height: 51.354vw;
  }
}

.mv {
  width: calc(100% - 275px);
  height: 475px;
  position: relative;
  display: flex;
  /* justify-content: flex-end; */
  padding-left: 0px;
  padding-right: 0px;
  transition: .3s;
  transform: translateX(275px);
}

.mv.active {
  transform: translateX(0px);
}

.mv.active .mv_catch {
  padding-left: 150px;
}

@media (max-width: 768px) {
  .mv.active .mv_catch {
    padding-left: 20px;
  }
}

@media screen and (max-width: 1065px) {
  .mv {
    transform: translateX(0px);
  }

  .mv.active {
    transform: translateX(0px);
  }


}

@media (max-width: 768px) {
  .mv {
    height: auto;
  }
}

.mv img.bg {
  width: 100%;
  height: 320px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .mv img.bg {
    height: 51.354vw;
  }
}

.mv .mv_catch {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 219px;
  padding-left: 5%;
  transition: .3s;
  z-index: 2;
}

@media screen and (max-width: 1065px) {
  .mv .mv_catch {
    padding-left: 150px;
  }
}

@media (max-width: 768px) {
  .mv .mv_catch {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 37.6vw;
    gap: 1.5vw;
    /*5.078vw*/
  }
}

@media (max-width: 768px) and (max-width: 500px) {
  .mv .mv_catch {
    margin-top: 37.7vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) and (max-width: 360px) {
  .mv .mv_catch {
    margin-top: 38.1vw;
  }
}

.mv .mv_catch span {
  font-size: 32px;
  font-family: HelveticaNowDisplay-Bd;
  font-weight: bold;
  line-height: 1;
  color: white;
}

.mv .mv_catch img {
  width: 100%;
  max-width: 712px;
  height: auto;
}

.mv .mv_catch p {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 768px) {
  .mv .mv_catch p {
    line-height: 1.5;
  }
}

.news_feed {
  display: flex;
  width: 275px;
  background-color: #cbd6dc;
  height: calc(100vh - 60px);
  position: absolute;
  left: 0;
  flex-direction: column;
  padding: 25px;
  padding-top: 95px;
  gap: 40px;
  transition: .3s;
  z-index: 1;
}

.news_feed.active {
  left: -275px;
}

@media screen and (max-width: 1065px) {
  .news_feed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
    max-height: 192px;
    padding: 0px;
    gap: 0;
  }

  .news_feed.active {
    left: 0;
  }
}

.news_feed .sp_close {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 20px;
  height: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1065px) {
  .news_feed .sp_close {
    display: flex;
  }
}

.news_feed .sp_close span {
  display: flex;
  width: 100%;
  height: 1px;
  background-color: black;
  position: relative;
}

.news_feed .sp_close span:first-child {
  transform: rotate(45deg);
  transform-origin: left;
}

.news_feed .sp_close span:last-child {
  transform: rotate(-45deg);
  transform-origin: left;
}

.news_feed h2 a,
.news_feed h2 span.caption {
  color: #D60000;
  font-size: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_feed h2 a .material-symbols-outlined,
.news_feed h2 span.caption .material-symbols-outlined {
  font-size: 16px;
  font-weight: bold;
}

.news_feed h2 span.caption {
  cursor: auto;
}

@media screen and (max-width: 1065px) {
  .news_feed div.news_center h2 a {
    background-color: #D60000;
    color: white;
    padding: 15px;
  }
}

@media screen and (max-width: 1065px) {
  .news_feed div.important

  /*, .news_feed div.news_center*/
    {
    padding: 15px;
    padding-top: 20px;
    /*30*/
    min-height: 146px;
  }
}

.news_feed div.important ul, .news_feed div.news_center ul {
  overflow: auto;
  max-height: 170px;
}

.news_feed div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 500px) {
  .news_feed div {
    gap: 15px;
    /*22*/
  }
}

.news_feed div ul {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding-right: 10px;
}

@media (max-width: 500px) {
  .news_feed div ul {
    gap: 0px;
  }
}

.news_feed div ul li a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /*10px*/
  width: 100%;
  align-items: flex-start;
}

.news_feed div ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .news_feed div ul li a {
    flex-direction: row;
  }
}

@media (max-width: 768px) and (max-width: 500px) {
  .news_feed div ul li a {
    gap: 0;
    padding-bottom: 12px;
  }
}

.news_feed div ul li a time {
  /*  font-weight: 700;*/
  font-family: HelveticaNowDisplay-Regular, sans-serif;
}

@media (max-width: 500px) {
  .news_feed div ul li a time {
    font-size: 14px;
  }
}

.news_feed div ul li a p {
  line-height: 1.5;
  font-weight: normal;
}

@media (max-width: 500px) {
  .news_feed div ul li a p {
    font-size: 13px;
    padding-left: 15px;
  }
}

span.tag a {
  font-feature-settings: "palt";
  font-weight: bolder;
  color: #D60000;
  font-family: HelveticaNowDisplay-Md, 'Noto Sans CJK JP', 'Noto Sans JP';
  font-size: 14px;
}

span.date {
  font-family: HelveticaNowDisplay-Md, 'Noto Sans CJK JP', 'Noto Sans JP';
  width: 100%;
  text-align: right;
}

h2 {
  font-size: 32px;
  display: flex;
  flex-direction: column;
  font-family: HelveticaNowDisplay-Bd, 'Noto Sans CJK JP', 'Noto Sans JP';
  font-weight: bolder;
  gap: 20px;
  line-height: 1;
}

h2 div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
}

h2 div span {
  font-size: 40px;
  font-family: HelveticaNowDisplay-Md, sans-serif;
}

h2 span {
  font-size: 14px;
  font-weight: 800;
}

section .side_txt {
  writing-mode: tb-rl;
  font-size: 20px;
  position: absolute;
  left: -140px;
  top: 40px;
  font-family: HelveticaNowDisplay-Bd;
  font-weight: bolder;
  color: #D60000;
  margin-left: 20px;
}

@media (max-width: 768px) {
  section .side_txt {
    display: none;
  }
}


section.ru-info {
  /*  padding-top: 100px;*/
}

section.ru-info ul.tab {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}

section.ru-info ul.tab hr {
  width: 1px;
  height: 13px;
  display: block;
  background-color: white;
  position: relative;
  top: 3px;
}

section.ru-info ul.tab li {
  color: white;
  font-weight: bolder;
  cursor: pointer;
  padding-bottom: 7px;
  font-family: HelveticaNowDisplay-Bd, 'Noto Sans CJK JP', 'Noto Sans JP';
  font-size: 15px;
  line-height: 1;
  display: flex;
  position: relative;
}

section.ru-info ul.tab li:last-child:after {
  display: none;
}

section.ru-info ul.tab li:after {
  content: "";
  width: 1px;
  height: 13px;
  display: block;
  background-color: white;
  position: absolute;
  top: 3px;
  right: -15px;
}

section.ru-info ul.tab li:hover {
  border-bottom: solid 2px white;
}

section.ru-info ul.tab li.active {
  border-bottom: solid 2px white;
}

section.ru-info a.more {
  display: none;
}

section.ru-info a.more.active {
  display: flex;
}

section.ru-info a.more.sp {
  display: none !important;
}

section.ru-info a.more.sp.active {
  display: none !important;
}

@media (max-width: 768px) {
  section.ru-info a.more.sp.active {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  section.ru-info a.more.pc {
    display: none !important;
  }
}

section.ru-info ul.slider {
  display: none;
}

section.ru-info ul.slider.active {
  display: block;
}

@media (max-width: 768px) {
  section.ru-info ul.slider.active {
    width: calc(100% + 20px);
  }
}

/*add*/
section.ru-info ul.slider dl dd a h3 {
  min-height: 47px;
  overflow: hidden;
}

section.ru-info ul.slider ul.cg {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

section.ru-info ul.slider ul.cg li {
  width: fit-content;
  margin-right: 0;
}

section.ru-info ul.slider ul.cg li a {
  color: #D60000;
  font-weight: 600;
  font-size: 14px;
}

section.first_cont {
  transition: .3s;
  transform: translateX(275px);
  padding-top: 70px;
  /*2504being*/
}

@media (max-width: 768px) {
  section.first_cont {
    transform: translate(0px);
    width: calc(100% + 20px);
    padding-top: 40px;
  }

  section.first_cont.tmp {
    width: 100%;
  }

  section.first_cont.tmp div.caption {
    padding-right: 0;
  }
}

section.first_cont.active {
  transform: translateX(0px);
}

section.first_cont .wrap.row {
  flex-direction: row;
  overflow: hidden;
}

@media (max-width: 768px) {
  section.first_cont .wrap.row {
    flex-direction: column;
  }
}

section.first_cont div.caption {
  min-width: 284px;
  max-width: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section.first_cont div.caption span.cap {
  font-size: 17px;
  font-weight: 800;
  color: #f50000;
}

section.first_cont div.caption p {
  font-family: HelveticaNowDisplay-Regular, 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  font-weight: normal;
}

section.first_cont div.caption p span {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 768px) {
  section.first_cont div.caption {
    min-width: unset;
    max-width: unset;
    gap: 15px;
    /*30px*/
    padding-right: 20px;
  }
}

section.first_cont div.caption a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  /*10*/
  justify-content: space-between;
}

section.first_cont div.caption h2 {
  font-weight: bolder;
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  color: #D60000;
  font-size: 55px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.first_cont div.caption h2 img {
  max-width: 300px;
}

section.first_cont div.caption h2 span.txt {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Noto Sans CJK JP', 'Noto Sans JP';
}

section.first_cont div.caption h2 span {
  font-size: 64px;
}

@media (max-width: 768px) {
  section.first_cont div.caption h2 {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/*add*/
section.first_cont div.caption p .material-symbols-outlined {
  position: absolute;
  right: 0;
}

section.first_cont div.caption p .red {
  color: #F50000;
}

@media (max-width: 768px) {
  section.first_cont div.caption p .material-symbols-outlined {
    margin-right: 10px;
  }
}

section.first_cont div.caption div.num {
  display: flex;
  flex-direction: row;
  color: black;
  align-items: flex-end;
  gap: 5px;
}

section.first_cont div.caption div.num span.v {
  font-size: 20px;
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  color: #F50000;
}

section.first_cont div.caption div.num span.d {
  font-size: 55px;
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  line-height: 1;
  color: #F50000;
  /*  font-weight: bolder;*/
}

section.first_cont div.caption div.num span.m_y {
  font-size: 20px;
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  /*  font-weight: bolder;*/
}

section.first_cont ul.slider li {
  width: 594px;
  /*284px*/
  height: 284px;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li {
    width: 90vw;
    /* vol.05ç”¨ */
    /* width: 43.19230769230769vw; */
    height: 43.19230769230769vw;
    margin-right: 2.6vw;
  }
}

section.first_cont ul.slider .slick-next {
  right: 322px;
}

@media (max-width: 768px) {
  section.first_cont ul.slider .slick-next {
    right: 20px;
  }
}

section.first_cont ul.slider a {
  display: flex;
  height: 100%;
}

section.first_cont ul.slider dl {
  display: flex;
  height: 100%;
  position: relative;
}

section.first_cont ul.slider dl dt {
  height: 100%;
}

section.first_cont ul.slider dl dd {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 15px 8px 15px 15px;
  /*>ä½ç½®ã‚’å³ã«*/
}

@media (max-width: 650px) {
  section.first_cont ul.slider dl dd {
    padding: 7px;
    padding-right: 3px;
  }
}

section.first_cont ul.slider dl dd .material-symbols-outlined {
  font-weight: bold;
}

@media (max-width: 650px) {
  section.first_cont ul.slider dl dd .material-symbols-outlined {
    font-size: 15px;
  }
}

section.first_cont ul.slider dl dd .material-symbols-outlined.red {
  color: #F50000;
}

section.first_cont ul.slider dl dd .material-symbols-outlined.white {
  color: white;
  -moz-text-shadow: 0px 0px 18px black;
  -webkit-text-shadow: 0px 0px 18px black;
  -ms-text-shadow: 0px 0px 18px black;
  text-shadow: 0px 0px 18px black;
}

section.first_cont ul.slider li.txt dl dt {
  background-color: #e5ebee;
  padding: 20px;
  padding-right: 30px;
  color: #D60000;
  font-weight: 800;
  font-size: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.txt dl dt {
    padding: 10px;
  }
}

section.first_cont ul.slider li.txt dl dt h3 {
  font-size: 22px;
  font-weight: bolder;
  color: #F50000;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.txt dl dt h3 {
    font-size: 12px;
  }
}

@media (max-width: 650px) and (max-width: 320px) {
  section.first_cont ul.slider li.txt dl dt h3 {
    font-size: 10px;
  }
}

@media (max-width: 500px) {
  section.first_cont ul.slider li.txt dl dt h3 br {
    display: none;
  }
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.txt dl dt p {
    font-size: 12px;
    line-height: 1.35;
    /*1.6*/
  }
}

@media (max-width: 650px) and (max-width: 320px) {
  section.first_cont ul.slider li.txt dl dt p {
    font-size: 10px;
  }
}

section.first_cont ul.slider li.image dl dt {
  display: flex;
  flex-direction: column;
  padding: 18px;
  /*20*/
  padding-right: 30px;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.image dl dt {
    padding: 10px 10px 6px;
  }
}

section.first_cont ul.slider li.image dl dt:after {
  content: "";
  position: absolute;
  display: block;
  /*  background: linear-gradient(0deg, black 25%, rgba(0, 0, 0, 0) 45%); /*ã‚·ãƒ£ãƒ‰ã‚¦ã®é«˜ã•ã€€05å‰Šé™¤*/
  opacity: 0.7;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

section.first_cont ul.slider li.image dl dt span.cg {
  font-size: 35px;
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  position: relative;
  z-index: 1;
  color: #f50000;
  line-height: 1;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.image dl dt span.cg {
    font-size: 20px;
  }
}

section.first_cont ul.slider li.image dl dt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: unset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

section.first_cont ul.slider li.image dl dt h3 {
  font-size: 18px;
  color: white;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  /*5*/
  font-weight: 800;
  -moz-text-shadow: 0px 0px 12px black;
  -webkit-text-shadow: 0px 0px 12px black;
  -ms-text-shadow: 0px 0px 12px black;
  text-shadow: 0px 0px 12px black;
  /*ã‚°ãƒ­ã‚¦*/
  line-height: 1.3;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.image dl dt h3 {
    font-size: 11px;
    /*12*/
    gap: 2px;
    line-height: 1.2;
  }

  /*section.first_cont ul.slider li.image dl dt h3 br {
    display: none;
  }*/
}

section.first_cont ul.slider li.image dl dt h3 span.info {
  font-size: 14px;
  font-weight: 800;
  color: white;
}

@media (max-width: 650px) {
  section.first_cont ul.slider li.image dl dt h3 span.info {
    font-size: 11px;
    /*10px*/
  }
}

section.first_cont ul.slider li.image dl dd {
  background-color: transparent;
}

section.ru-moves {
  padding-right: 0;
}

section.ru-moves .wrap {
  padding-left: 0px;
}

@media (max-width: 768px) {
  section.ru-moves .inr {
    margin-top: 25px;
  }
}

section.ru-moves .sort-btn {
  padding: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right: 20px;
  align-items: flex-start;
}

section.ru-moves .sort-btn div.flex {
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  section.ru-moves .sort-btn div.flex {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section.ru-moves .sort-btn div.other_words {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section.ru-moves .sort-btn div.swipe {
    position: relative;
    width: 100%;
    overflow: auto;
    height: 35px;
  }

  section.ru-moves .sort-btn div.swipe::-webkit-scrollbar {
    display: none;
  }
}

section.ru-moves .sort-btn dt {
  font-weight: bold;
  margin: 0 0 10px 0;
}

section.ru-moves .sort-btn dd {
  margin: 0 0 10px 0;
}

section.ru-moves .sort-btn ul {
  display: flex;
  flex-wrap: wrap;
  display: flex;
  gap: 5px 20px;
}

@media (max-width: 768px) {
  section.ru-moves .sort-btn ul {
    margin-bottom: 0px;
    width: max-content;
  }
}

section.ru-moves .sort-btn ul hr {
  width: 1px;
  height: 13px;
  display: block;
  background-color: black;
  position: relative;
  top: 3px;
}

section.ru-moves .sort-btn ul li {
  position: relative;
  cursor: pointer;
  padding: 0px 0px 7px 0px;
  font-weight: bolder;
  margin: 0;
  font-family: HelveticaNowDisplay-Bd, 'Noto Sans CJK JP', 'Noto Sans JP';
  font-size: 16px;
  line-height: 1;
}

section.ru-moves .sort-btn ul li:hover {
  border-bottom: solid 2px #D60000;
}

section.ru-moves .sort-btn ul li.active {
  border-bottom: solid 2px #D60000;
}

section.ru-moves .sort-btn li {
  margin: 0 10px;
}

section.ru-moves .grid {
  position: relative;
  width: 100%;
}

section.ru-moves .item {
  display: block;
  position: absolute;
  width: 20%;
  z-index: 1;
}

@media (max-width: 1280px) {
  section.ru-moves .item {
    width: 33.3%;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  section.ru-moves .item {
    width: 50%;
  }
}

section.ru-moves .item .tag {
  font-family: HelveticaNowDisplay-Md, 'Noto Sans CJK JP', 'Noto Sans JP';
  font-weight: 500;
  /*800*/
  color: #D60000;
}

section.ru-moves .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 25px 40px 0px;
}

@media (max-width: 768px) {
  section.ru-moves .item-content {
    padding: 0px 20px 40px 0px;
  }
}

section.ru-moves .grid img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

section.ru-moves ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

section.ru-moves a {
  color: #333;
}

section.ru-moves a:hover,
section.ru-moves a:active {
  text-decoration: none;
}

section.ru-moves .grid a {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

section.ru-moves span.more {
  color: #D60000;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bolder;
}

@media screen and (max-width: 1065px) {
  section.ru-moves span.more {
    display: none;
  }
}

section.ru-moves span.more.sp {
  display: none;
}

@media screen and (max-width: 1065px) {
  section.ru-moves span.more.sp {
    display: flex !important;
    width: 100%;
    max-width: fit-content;
  }
}

section.ru-moves span.more .material-symbols-outlined {
  transition: .3s;
}

section.ru-moves span.more.active .material-symbols-outlined {
  transform: rotateX(180deg);
}

section.ru-moves h3 {
  font-family: HelveticaNowDisplay-Bd, 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
  margin-top: 10px;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.2;
}

section.ru-moves h3 span {
  font-size: 14px;
  /*    line-height: 1.2;*/
}

section.ru-moves h1 {
  text-align: center;
  font-size: 6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 30px 0;
}

section.ru-moves p {
  margin: 0 10px 10px 10px;
  word-wrap: break-word;
}

section.common_list .wrap {
  gap: 100px;
}

section.common_list h3 {
  font-weight: 800;
  font-size: 70px;
}

section.common_list h3 span {
  color: #D60000;
}

section.common_list ul.menu {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

section.common_list ul.menu li {
  font-size: 40px;
  font-weight: 300;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

section.common_list ul.menu li a {
  display: flex;
  width: 100%;
  max-width: 768px;
  justify-content: space-between;
}

section.common_list ul.menu li a i {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

section.common_list ul.menu li a span {
  font-family: "Helvetica";
  font-size: 20px;
  color: #627a84;
}

section.common_list ul.menu li a .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: 40px;
  color: #D60000;
}

section.common_list .side_txt {
  top: 20px;
}

section.anchor_link {
  padding-top: 30px;
  padding-bottom: 30px;
}

section.anchor_link ul {
  display: flex;
  gap: 30px;
}

section.anchor_link ul li a {
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
}

section.anchor_link ul li a .material-symbols-outlined {
  font-weight: 600;
  color: #D60000;
}

section.common_cont.bg h3 {
  font-size: 35px;
  font-weight: 800;
  color: white;
}

section.common_cont.bg.gray h3 {
  color: black;
}

section.common_cont.bg.gray .side_txt {
  color: #D60000;
}

section.common_cont.bg.gray ul.slider li dl dd {
  background-color: white;
}

section.common_cont.bg.gray ul.slider li dl dd h4 {
  font-size: 24px;
  font-weight: 800;
}

section.common_cont .side_txt {
  top: 0px;
}

section.common_cont ul.banner_cont {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

section.common_cont ul.banner_cont li {
  width: calc(50% - 20px);
  background-color: white;
}

section.common_cont ul.banner_cont li.wide {
  width: 100%;
}

section.common_cont ul.banner_cont li.wide dl {
  display: flex;
  flex-direction: row;
}

section.common_cont ul.banner_cont li.wide dl dt {
  width: 60%;
  max-height: 400px;
}

section.common_cont ul.banner_cont li.wide dl dd {
  width: 40%;
  display: flex;
  justify-content: space-between;
}

section.common_cont ul.banner_cont li.wide dl dd h4 {
  font-size: 32px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.common_cont ul.banner_cont li.wide dl dd h4 span {
  font-size: 16px;
  font-weight: 400;
}

section.common_cont ul.banner_cont li dl {
  display: flex;
  flex-direction: column;
}

section.common_cont ul.banner_cont li dl dt {
  max-height: 300px;
}

section.common_cont ul.banner_cont li dl dt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.common_cont ul.banner_cont li dl dd {
  padding: 30px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

section.common_cont ul.banner_cont li dl dd h4 {
  font-size: 24px;
  font-weight: 800;
}

section.common_cont ul.banner_cont li dl dd .material-symbols-outlined {
  font-weight: 600;
  color: #D60000;
  display: flex;
  justify-content: flex-end;
}

section.common_cont ul.banner_cont ul.inline {
  display: flex;
}

section.common_cont ul.banner_cont ul.inline li {
  width: fit-content;
}

section.common_cont ul.banner_cont ul.inline li:after {
  content: "/";
}

section.common_cont ul.banner_cont ul.inline li:last-child:after {
  display: none;
}

#top .embedsocial-hashtag {
  margin: -30px -20px -20px -20px;
  width: calc(100% + 40px);
}

/*# sourceMappingURL=top.css.map */


.none_pc {
  display: none;
}

.none_sp {
  display: block;
}

@media screen and (max-width: 736px) {
  .none_pc {
    display: block;
  }

  .none_sp {
    display: none;
  }
}

/*being06*/
.poster .copyright2 {
  text-align: right;
  padding-right: 140px;
  font-size: 13px;
  font-family: HelveticaNowDisplay-Regular, sans-serif;
}

@media screen and (max-width: 736px) {
  .poster .copyright2 {
    display: none;
    /*padding-right: 3px;
        font-size: 10px;
        position: relative;
        top: -2px;*/
  }
}

div.mv {
  display: flex;
  justify-content: flex-start;
  height: auto;
}

div.mv.active {
  width: 100%;
}

div.mv div.mv_being-voice {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: auto;/*100vh*/
  margin-bottom: 140px;
}

div.mv div.mv_being-voice img.lmmw {
  position: absolute;
  width: 72px;
  height: auto;
  z-index: 1;
  top: 30px;
}

div.mv div.mv_being-voice ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  /* height: 730px; */
}

div.mv div.mv_being-voice ul li {
  width: 50%;
  display: flex;
  position: relative;
}

div.mv div.mv_being-voice ul li a {
  display: flex;
  width: 100%;
  position: relative;
  transition: .3s;
  height: calc(100vh - 160px);
}

div.mv div.mv_being-voice ul li a:hover {
  opacity: 1;
}

div.mv div.mv_being-voice ul li a dl {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}

div.mv div.mv_being-voice ul li a dl dt.catch {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  min-height: 250px;
}

div.mv div.mv_being-voice ul li a dl dt.catch span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 0.83vw;
}

div.mv div.mv_being-voice ul li a dl dt.catch img {}

div.mv div.mv_being-voice ul li a:hover dl dt.catch img {}

div.mv div.mv_being-voice ul li a dl dt.catch img.txt {
  width: 100%;
  height: auto;
  max-width: 18.5vw;
  position: relative;
  z-index: 1;
}

div.mv div.mv_being-voice ul li a dl dt.catch img.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: .3s;
}

div.mv div.mv_being-voice ul li a:hover dl dt.catch img.bg {
  transform: scale(1.15);
  filter: brightness(0.6);
}

div.mv div.mv_being-voice ul li a dl dd {
  display: flex;
  /* justify-content: space-between; */
  padding: 20px 5% 20px 4%;
  gap: 30px 10px;
  position: relative;
  align-items: flex-start;
  transition: .3s;
  height: auto;
}

div.mv div.mv_being-voice ul li a:hover dl dd {
  background-color: #f50000;
}

div.mv div.mv_being-voice ul li a dl dd div.date {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  gap: 5px;
  min-width: 110px;
}

div.mv div.mv_being-voice ul li a dl dd div.date span.vol {
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  color: #D60000;
  transition: .3s;
}

div.mv div.mv_being-voice ul li a:hover dl dd div.date span.vol {
  color: white;
}

div.mv div.mv_being-voice ul li a dl dd div.date span.num {
  font-family: HelveticaNowDisplay-Bd, sans-serif;
  font-size: 62px;
  line-height: 1;
  color: #D60000;
  transition: .3s;
}

div.mv div.mv_being-voice ul li a:hover dl dd div.date span.num {
  color: white;
}


div.mv div.mv_being-voice ul li a dl dd div.date span.mo {}

div.mv div.mv_being-voice ul li a dl dd div.cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  justify-content: space-between;
}

div.mv div.mv_being-voice ul li a dl dd div.cont p.tit {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  font-family: HelveticaNowDisplay-Bd, "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

div.mv div.mv_being-voice ul li a dl dd div.cont span.name {
  font-weight: 600;
  color: #D60000;
  transition: .3s;
}

div.mv div.mv_being-voice ul li a:hover dl dd div.cont span.name {
  color: white;
}

div.mv div.mv_being-voice ul li a dl dd span.material-symbols-outlined {
  color: #D60000;
  position: absolute;
  right: 1%;
  top: calc(50% - 12px);
}

div.mv div.mv_being-voice ul li a:hover dl dd span.material-symbols-outlined {

  color: white;
}

.arrow_depth.alt {
  display: none;
}

.mv.active div.mv_being-voice {}

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

  div.mv {
    width: 100%;
  }

    div.mv div.mv_being-voice ul li a{
    height: calc(100vh - 273px);
  }

  div.mv div.mv_being-voice ul li a dl dt.catch img.txt{
    max-width: 260px;
  }

  div.mv div.mv_being-voice ul li a dl dt.catch span{
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  div.mv div.mv_being-voice ul li a dl dt.catch{
    
min-height: 64vw;
  }
}

@media screen and (max-width: 768px) {
    div.mv div.mv_being-voice ul li a dl dt.catch {
    height: 53vw;
}
  div.mv div.mv_being-voice ul li a dl dt.catch img.bg{
  }
  div.mv div.mv_being-voice{
    min-height: auto;
    margin-bottom: 30px;
  }
  div.mv div.mv_being-voice ul {

    flex-direction: column;

  }

  div.mv div.mv_being-voice ul li {

    width: 100%;
  }

  div.mv div.mv_being-voice img.lmmw {
    display: none;
  }

  div.mv div.mv_being-voice ul li a {

height: auto;

min-height: auto;
}
  div.mv div.mv_being-voice ul li a dl dd div.cont p.tit br.sp_none {
      display: none;
    }
}

@media screen and (max-height: 600px) {
div.mv div.mv_being-voice img.lmmw {
        height: 28vh;
        width: 100%;
        max-width: 72px;
    }
}

@media screen and (max-height: 500px) {
  div.mv div.mv_being-voice ul li a{
    height: auto;
  }
}

@media screen and (max-width: 500px) {
  div.mv div.mv_being-voice ul li a dl dd div.cont p.tit br {}

  div.mv div.mv_being-voice ul li a dl dd div.date span.vol {

font-size: 11px;

}

  div.mv div.mv_being-voice ul li a dl dd div.date span.num {

    font-size: 55px;

  }

  div.mv div.mv_being-voice ul li a dl dd div.date span.mo {

    font-size: 12px;
  }

  div.mv div.mv_being-voice ul li a dl dd div.cont p.tit {
    font-size: 16px;
  }

  div.mv div.mv_being-voice ul li a dl dd div.cont span.name {

    font-size: 14px;

  }
}

