@charset "UTF-8";
/* --------------------------------
	レスポンシブ
-------------------------------- */
/* --------------------------------
	CSS関数
-------------------------------- */
/* --------------------------------
	アニメーション
-------------------------------- */
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@keyframes yurayura_r {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

@keyframes yurayura_l {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

@keyframes yurayura {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}

@keyframes fadein_fuwa_l {
  0% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  80% {
    opacity: .6;
  }
  100% {
    opacity: .6;
    transform: translate(30px, 0);
  }
}

@keyframes fadein_fuwa_r {
  0% {
    opacity: 0;
    transform: translate(0, -30px);
  }
  80% {
    opacity: .6;
  }
  100% {
    opacity: .6;
    transform: translate(-30px, 0);
  }
}

@keyframes display_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes close_in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.anime .anime-scroll:nth-of-type(1) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 0.2s, opacity 1s ease 0.2s;
}

.anime .anime-scroll:nth-of-type(2) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 0.4s, opacity 1s ease 0.4s;
}

.anime .anime-scroll:nth-of-type(3) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 0.6s, opacity 1s ease 0.6s;
}

.anime .anime-scroll:nth-of-type(4) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 0.8s, opacity 1s ease 0.8s;
}

.anime .anime-scroll:nth-of-type(5) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 1s, opacity 1s ease 1s;
}

.anime .anime-scroll:nth-of-type(6) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 1.2s, opacity 1s ease 1.2s;
}

.anime .anime-scroll:nth-of-type(7) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 1.4s, opacity 1s ease 1.4s;
}

.anime .anime-scroll:nth-of-type(8) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 1.6s, opacity 1s ease 1.6s;
}

.anime .anime-scroll:nth-of-type(9) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 1.8s, opacity 1s ease 1.8s;
}

.anime .anime-scroll:nth-of-type(10) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 2s, opacity 1s ease 2s;
}

.anime .anime-scroll:nth-of-type(11) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 2.2s, opacity 1s ease 2.2s;
}

.anime .anime-scroll:nth-of-type(12) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 2.4s, opacity 1s ease 2.4s;
}

.anime .anime-scroll:nth-of-type(13) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 2.6s, opacity 1s ease 2.6s;
}

.anime .anime-scroll:nth-of-type(14) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 2.8s, opacity 1s ease 2.8s;
}

.anime .anime-scroll:nth-of-type(15) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 3s, opacity 1s ease 3s;
}

.anime .anime-scroll:nth-of-type(16) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 3.2s, opacity 1s ease 3.2s;
}

.anime .anime-scroll:nth-of-type(17) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 3.4s, opacity 1s ease 3.4s;
}

.anime .anime-scroll:nth-of-type(18) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 3.6s, opacity 1s ease 3.6s;
}

.anime .anime-scroll:nth-of-type(19) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 3.8s, opacity 1s ease 3.8s;
}

.anime .anime-scroll:nth-of-type(20) {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease 4s, opacity 1s ease 4s;
}

.anime.anime_active .anime-scroll {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@keyframes slidein_down_up {
  0% {
    opacity: 0;
    transform: translateY(-64px);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opacity_transparent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes first_performer {
  0% {
    opacity: 0;
    transform: translateX(-64px);
  }
  80% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes side_scroll {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-down {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

@keyframes opacity-on {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity-off {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hata-anime_on {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: .9;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hata-anime_off {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: .1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes move-up {
  0% {
    transform: translate(0, 100%);
    opacity: 0;
  }
  10% {
    opacity: .5;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(0, -300%);
  }
}

/* --------------------------------
	専用css
-------------------------------- */
.ban-list_link button {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: bold !important;
  background-color: #FC4C9D;
  padding: 0.75rem 4rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.ban-list_link button:hover {
  box-shadow: none;
  transition-duration: .2s;
  background-color: #FC4C9D;
}

.page-template-page-dokodemo.first-access .content_first-view .ban-list_link {
  display: block !important;
  animation: display_on .5s ease-out 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.25s;
  opacity: 0;
}

.page-template-page-dokodemo .content_first-view .ban-list_link {
  display: none;
}

.search-menu {
  position: relative;
  z-index: 11000;
  right: 0vw;
  bottom: 16vw;
  width: 80%;
  margin: 27% auto;
  text-align: center;
}

@media (max-width: 577px) {
  .search-menu {
    width: 90%;
    padding: 5%;
  }
}

.search-menu h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.search-menu h2 i {
  padding-right: .25rem;
}

.search-menu__content {
  background-color: white;
  color: black;
  border-radius: 10px;
  padding: 3% 5%;
}

.search-menu__content__item {
  margin-bottom: 20px;
  border-right: solid 1px #e7e7e7;
}

.search-menu__content__item:last-child {
  border-right: 0;
}

.search-menu__content__item:last-child .sort-order:after {
  display: none;
}

.search-menu__content__item .item_name {
  margin-bottom: 10px;
  text-align: left;
  border-left: solid 5px #cdcdcd;
  padding-left: 0.5rem;
}

.sort-order {
  position: relative;
}

.sort-order:after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 60%;
  transform: translate(0, -50%);
  right: 4%;
  margin: auto;
  box-sizing: border-box;
  border: 8px solid transparent;
  border-top: 13px solid;
}

#sort {
  background-color: #fff;
  color: #333;
  border-radius: 20px;
  width: 100%;
  border: solid 1px #ccc;
  box-sizing: border-box;
  outline: none;
  padding: 0.36rem 0.66rem;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#sort:focus {
  outline: none;
}

#sort:after {
  pointer-events: none;
}

#search_btn {
  background-color: #cf1c59;
  color: #fff;
  border-radius: 50px;
  width: 35%;
  padding: 10px;
  margin: 5px auto;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

#search_btn:hover {
  box-shadow: none;
  transition-duration: .2s;
}

@media (max-width: 577px) {
  #search_btn {
    width: 60%;
  }
}

#search_btn p {
  font-weight: bold;
}

#search_clear {
  width: 25%;
  margin: 10px auto 30px;
  border-bottom: 1px black solid;
  font-size: .9rem;
  cursor: pointer;
}

@media (max-width: 769px) {
  #search_clear {
    width: 40%;
  }
}

@media (max-width: 577px) {
  #search_clear {
    width: 70%;
  }
}

#search_window_open_btn {
  position: fixed;
  z-index: 2000;
  right: 0vw;
  bottom: 5vw;
  background-color: #cf1c59;
  color: #fff;
  border-radius: 10px 0 0 10px;
  padding: 6px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 993px) {
  #search_window_open_btn {
    bottom: 8vw;
  }
}

@media (max-width: 769px) {
  #search_window_open_btn {
    bottom: 10vw;
  }
}

@media (max-width: 577px) {
  #search_window_open_btn {
    bottom: 13vw;
    border-bottom: solid 1px white;
    color: #fff;
    border-radius: 0;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 577px) {
  #search_window_open_btn i {
    padding-right: .25rem;
  }
}

.search_window_open_btn i {
  padding: 0 5px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.search_window_close_btn i {
  padding: 0 5px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.search_window_close_btn p {
  padding: 0 5px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#search_window_close_btn {
  margin: auto;
  bottom: 0;
  background-color: black;
  color: #fff;
  border-radius: 50px;
  padding: 1rem;
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 2rem;
}

@media (max-width: 577px) {
  #search_window_close_btn {
    width: 80%;
  }
}

#search_window_close_btn i {
  font-size: 1.4rem;
  padding-right: 0.25rem;
}

#opus_modal_open {
  background-color: red;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  padding: 2vw;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
  margin: 5vw;
}

#popup_close {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: #fff;
  font-size: 1.0rem;
  border-radius: 0 0 15px 15px;
}

#opus_modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  font-size: 1.2rem;
  z-index: 20000;
  overflow-wrap: break-word;
  height: 100vh;
  overflow-y: scroll;
}

#opus_modal .opus__content {
  width: 60%;
  margin: 10% auto 0;
  align-items: center;
  color: white;
}

@media (max-width: 1201px) {
  #opus_modal .opus__content {
    width: 70%;
  }
}

@media (max-width: 577px) {
  #opus_modal .opus__content {
    width: 90%;
  }
}

#opus_modal .opus__content .opus-item {
  font-size: 0.8em;
  text-indent: -0.25rem;
  border-left: solid 5px #cbcbcb;
}

@media (max-width: 993px) {
  #opus_modal .opus__content .opus-item {
    border-left: 0;
  }
}

#opus_modal .opus__content .opus-img {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 993px) {
  #opus_modal .opus__content .opus-img {
    margin: 0 auto;
    width: 69%;
  }
}

@media (max-width: 577px) {
  #opus_modal .opus__content .opus-img {
    width: 90%;
  }
}

#opus_modal .opus__content__item:last-child {
  text-align: left;
}

@media (max-width: 993px) {
  #opus_modal .opus__content__item:last-child {
    margin-top: 1rem;
    text-align: center;
  }
}

#opus_modal .opus__content__item p {
  padding-left: 1rem;
}

#opus_modal #share-btn {
  background-color: #2196F3;
  color: #fff;
  border-radius: 50px;
  width: 40%;
  padding: 3px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

#opus_modal #share-btn:hover {
  box-shadow: none;
  transition-duration: .2s;
}

@media (max-width: 993px) {
  #opus_modal #share-btn {
    margin: auto;
    margin-bottom: 7rem;
  }
}

#opus_modal #modal_close {
  position: fixed;
  left: 0;
  padding: 10px;
  background-color: black;
  color: white;
  font-size: 1.0rem;
  border-radius: 50px;
  margin: auto;
  right: 0;
  bottom: 13%;
  width: 20%;
  cursor: pointer;
  border: solid 2px white;
}

@media (max-width: 993px) {
  #opus_modal #modal_close {
    bottom: 0;
    width: 100%;
    border-radius: 0;
    border-top: solid 1px white;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
  }
}

#dokodemo-bigban .breadcrumb {
  display: none;
}

#dokodemo-bigban .site-content div, #dokodemo-bigban .site-content h1, #dokodemo-bigban .site-content h2, #dokodemo-bigban .site-content p {
  font-family: 'Noto Sans JP', sans-serif;
}

#dokodemo-bigban .site-content div, #dokodemo-bigban .site-content p {
  font-weight: 500;
}

#dokodemo-bigban .header-menu__nav__link {
  padding-right: 1rem;
}

#dokodemo-bigban .search-bar {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6vh;
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar {
    padding: 0.3rem 5% 0;
    height: auto;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar {
    padding: 0.3rem 2% 0;
  }
}

#dokodemo-bigban .search-bar .mode-change svg {
  width: 50px;
  padding-right: .5rem;
  font-weight: bold;
}

#dokodemo-bigban .search-bar .mode-change p {
  color: white;
  font-weight: bold;
  font-size: .9rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar form {
    width: 100%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item:first-child {
    width: 55%;
    margin-right: .5rem;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item:last-child {
    width: 100%;
  }
}

#dokodemo-bigban .search-bar form .search-menu__content__item .sort-order {
  margin-right: 0.5rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item .sort-order {
    width: 100%;
  }
}

#dokodemo-bigban .search-bar form .search-menu__content__item .sort-order select {
  padding: 0.2rem 1.5rem 0.2rem 0.5rem;
  border-radius: 50px;
  width: 140px;
  border: 0;
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item .sort-order select {
    width: 100%;
    padding: 0.2rem .5rem;
  }
}

#dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form {
  position: relative;
}

#dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form #search_opus {
  padding: 0.2rem 4.5rem 0.2rem 1rem !important;
  font-size: .9rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form #search_opus {
    font-size: 1.1rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form #search_opus {
    font-size: .9rem;
    padding: 0.2rem 4rem 0.2rem 1rem !important;
  }
}

#dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form button {
  position: absolute;
  right: 0;
  padding: 0.25rem 1rem;
  background-color: #e22b67;
  font-size: .9rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form button {
    font-size: 1.1rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar form .search-menu__content__item .search_opus_form button {
    font-size: .9rem;
  }
}

#dokodemo-bigban .search-bar form .search_btn {
  position: absolute;
  right: 5%;
  bottom: -1.5rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar form .search_btn {
    position: unset;
  }
}

#dokodemo-bigban .search-bar form .search_btn__clear p {
  margin-top: 0.25rem;
  color: white;
  font-weight: bold;
  font-size: .8rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .search-bar form .search_btn__clear p {
    font-size: 1rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .search-bar form .search_btn__clear p {
    font-size: .9rem;
  }
}

#dokodemo-bigban .site-footer {
  background-color: #222222;
}

@media (max-width: 577px) {
  #dokodemo-bigban .site-footer {
    padding: 1rem;
  }
}

#dokodemo-bigban .site-footer p {
  font-weight: bold;
  color: white;
}

#dokodemo-bigban .site-footer .footer-content p {
  color: white;
  font-size: .9rem;
}

#dokodemo-bigban .site-footer .footer-content p i {
  padding-left: 0.25rem;
}

#dokodemo-bigban .site-footer .footer-content__item__tit {
  margin-bottom: 0.25rem;
}

#dokodemo-bigban .site-footer .footer-content__item__tit p {
  color: #222222;
  background-color: white;
  padding: 0.1rem 0.5rem;
  border-radius: .5px;
  font-weight: bold;
  font-size: .85rem;
  width: 4.5vw;
  text-align: center;
}

@media (max-width: 993px) {
  #dokodemo-bigban .site-footer .footer-content__item__tit p {
    width: 9.5vw;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .site-footer .footer-content__item__tit p {
    width: 17.5vw;
  }
}

#dokodemo-bigban .site-footer .footer-content__item__about p span {
  font-size: 1.2rem;
}

#dokodemo-bigban .site-footer .footer-content__item__about__logo {
  margin-bottom: .5rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .site-footer .footer-content__item__about__logo {
    flex-flow: wrap;
  }
}

#dokodemo-bigban .site-footer .footer-content__item__about__logo__item {
  width: 15%;
  margin-right: .5rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .site-footer .footer-content__item__about__logo__item {
    width: calc(100% / 2 - 1rem);
    margin-bottom: 0.5rem;
  }
}

#dokodemo-bigban .site-footer .footer-content__item__about__logo__item:last-child {
  margin-right: 0;
}

#dokodemo-bigban .footer-nav {
  z-index: 1000;
}

#dokodemo-bigban .footer_hamburger {
  background-color: #222222;
}

#dokodemo-bigban .footer_hamburger .nav-item:first-child {
  border-right: solid 1px white;
}

#dokodemo-bigban .footer_hamburger .nav-item__bg {
  margin: 0 auto;
  width: 20%;
}

@media (max-width: 993px) {
  #dokodemo-bigban .footer_hamburger .nav-item__bg {
    width: 9%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .footer_hamburger .nav-item__bg {
    width: 30%;
  }
}

#dokodemo-bigban .footer_hamburger .nav-item__name p {
  color: white;
  font-weight: bold;
}

@media (max-width: 577px) {
  #dokodemo-bigban .footer_hamburger .nav-item__name p {
    font-size: .8rem;
  }
}

#dokodemo-bigban .site-header {
  z-index: 2000;
}

#dokodemo-bigban .site-header__menu .menu-list p {
  color: white !important;
}

#dokodemo-bigban .use__menu {
  position: fixed;
  z-index: 2000;
  right: 0;
  top: 10%;
  background-color: rgba(0, 0, 0, 0.85) !important;
  padding: 0.5rem;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use__menu {
    border-radius: 0;
    top: 0;
    padding: 0.5rem 1.5rem;
    background-color: black;
  }
}

@media (max-width: 769px) {
  #dokodemo-bigban .use__menu {
    padding: 0.35rem 1.5rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .use__menu {
    padding: 0.5rem 1.5rem;
  }
}

#dokodemo-bigban .use__menu .menu-list p {
  font-size: .8rem;
  color: white;
}

@media (max-width: 577px) {
  #dokodemo-bigban .use__menu .menu-list p {
    font-size: .9rem;
  }
}

#dokodemo-bigban .use__menu .menu-list p i {
  font-size: 1rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use__menu .menu-list p i {
    font-size: 1.1rem;
    padding-right: 0.25rem;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .use__menu .menu-list p span {
    display: flex !important;
    align-items: center;
    height: 5.5vh;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .use__menu .menu-list p span {
    height: 4vh;
  }
}

#dokodemo-bigban .use__menu .menu-list p span span {
  display: block;
}

#dokodemo-bigban #js-sitemap_modal .js-modal_close {
  height: 5vh;
  margin: 0 !important;
  font-size: 1.2rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban #js-sitemap_modal .js-modal_close {
    font-size: 1rem;
  }
}

#dokodemo-bigban #js-sitemap_modal .js-modal_close p {
  color: white;
}

#dokodemo-bigban #js-sitemap_modal .js-modal_close p i {
  padding-left: 0;
  padding-right: 0.5rem;
  font-size: 1.5rem;
  position: relative;
  top: 0.2rem;
}

#dokodemo-bigban #js-sitemap_modal .sitemap__header {
  bottom: 20%;
  background-color: #1a1311;
  margin: auto;
  left: 0;
  right: 0;
  width: 17% !important;
  border-radius: 50px;
  height: 5vh;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

#dokodemo-bigban #js-sitemap_modal .sitemap__header:hover {
  box-shadow: none;
  transition-duration: .2s;
}

@media (max-width: 993px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__header {
    width: 100% !important;
    bottom: 0;
    box-shadow: none;
    border-radius: 0;
  }
}

#dokodemo-bigban #js-sitemap_modal .sitemap__content {
  padding-top: 4.5rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__content {
    overflow-y: scroll;
    height: 100vh;
    padding-bottom: 5rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__content {
    padding: 2.5rem 0 2rem;
  }
}

#dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu {
  width: 100%;
}

@media (max-width: 577px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu {
    padding-bottom: 6rem;
    overflow-y: scroll;
    height: 100%;
  }
}

#dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu__item {
  display: block;
  background: none;
  padding: 0 2rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu__item {
    padding: 0 1rem;
    margin-top: 0.5rem;
  }
}

#dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu h2 {
  background: none;
  box-shadow: none;
  color: #953B45;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin: 0;
}

@media (max-width: 577px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu h2 {
    padding: 0 1rem;
  }
}

#dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu h2 .hamburger-btn__img {
  width: 5vw;
  padding-right: 0.5rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban #js-sitemap_modal .sitemap__content .content_first-view__event__menu h2 .hamburger-btn__img {
    width: 10vw;
  }
}

#dokodemo-bigban .content-tit {
  font-weight: bold;
}

#dokodemo-bigban .content_tit {
  margin: 0 auto;
  width: 20%;
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_tit {
    width: 30%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_tit {
    width: 60%;
    margin: 0;
    position: relative;
    left: -9%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_tit h2 {
    transform: rotate(-7deg);
  }
}

@keyframes slideshow {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

#dokodemo-bigban .paralax {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 1%;
}

#dokodemo-bigban .paralax .layer {
  width: 400%;
}

#dokodemo-bigban .paralax .cloud2 {
  height: 7%;
  background: url(../img/dokodemo/top_cloud2.png) repeat-x;
  animation: slideshow 120s linear infinite;
  top: 0;
  background-size: contain;
  z-index: 1;
}

@media (max-width: 577px) {
  #dokodemo-bigban .paralax .cloud2 {
    height: 5%;
  }
}

#dokodemo-bigban .paralax .cloud1 {
  height: 9%;
  background: url(../img/dokodemo/top_cloud1.png) repeat-x;
  animation: slideshow 240s linear infinite;
  top: 0;
  background-size: contain;
  z-index: 1;
}

@media (max-width: 577px) {
  #dokodemo-bigban .paralax .cloud1 {
    height: 7%;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_first-view__bg {
    width: 100%;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_first-view__bg img {
    width: 100%;
  }
}

#dokodemo-bigban .content_first-view .ev-tit {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

#dokodemo-bigban .content_first-view .ev-tit__content {
  padding: 1.5rem 0;
}

#dokodemo-bigban .content_first-view .ev-tit__content .content {
  align-items: center;
  margin-bottom: 0;
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__img {
  filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.2));
  margin: 3rem auto;
  width: 50%;
  animation: close_in .5s ease-out 1.5s;
  animation-fill-mode: forwards;
  animation-delay: .5s;
  opacity: 0;
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__img {
    width: 45%;
  }
}

@media (max-width: 769px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__img {
    width: 80%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__img {
    width: 95%;
    margin-top: 1.5rem;
  }
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__date, #dokodemo-bigban .content_first-view .ev-tit__content__title__note {
  animation: display_on .5s ease-out 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.25s;
  opacity: 0;
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__date p, #dokodemo-bigban .content_first-view .ev-tit__content__title__note p {
  filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.2));
  text-shadow: 2px 2px 2px #F59E27, -2px 2px 2px #F59E27, 2px -2px 2px #F59E27, -2px -2px 2px #F59E27, 2px 0px 2px #F59E27, 0px 2px 2px #F59E27, -2px 0px 2px #F59E27, 0px -2px 2px #F59E27;
  color: white;
  font-weight: bold !important;
  font-size: 1.5rem;
  font-family: 'BIZ UDPGothic', sans-serif !important;
  text-align: center;
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__date p .date, #dokodemo-bigban .content_first-view .ev-tit__content__title__note p .date {
  font-size: 2.5rem;
  padding-right: .25rem;
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__date p .rotate, #dokodemo-bigban .content_first-view .ev-tit__content__title__note p .rotate {
  writing-mode: vertical-rl;
  text-align: center;
  margin: auto;
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__date {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__date {
    display: block;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__date p:nth-child(2) {
    transform: rotate(90deg);
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__date p {
    line-height: 2.7rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__note {
    margin-top: 1rem;
  }
}

#dokodemo-bigban .content_first-view .ev-tit__content__title__note p {
  font-size: 1.2rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__note p {
    line-height: 2rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__title__note p span {
    display: block;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__about {
    margin-top: 3rem;
  }
}

#dokodemo-bigban .content_first-view .ev-tit__content__about p {
  font-size: 1.05rem;
  line-height: 2.2rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_first-view .ev-tit__content__about p {
    font-size: 1rem;
    line-height: 1.8rem;
  }
}

#dokodemo-bigban .content_about {
  margin-top: 4rem;
  position: relative;
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_about:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 50rem;
    display: block;
    background: linear-gradient(0deg, #91a9ba 0%, #c2c3c3 0%, #dbe8f4 0%, #c2c3c3 0%, white 0%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_about:after {
    display: none;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_about {
    margin-top: 2rem;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_about .content {
    margin-bottom: 0;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
  }
}

#dokodemo-bigban .content_about__detail {
  margin: 2rem 0 3rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_about__detail {
    margin-top: 1.5rem;
  }
}

#dokodemo-bigban .content_about__detail p {
  font-size: 1.1rem;
  text-align: center;
}

@media (max-width: 769px) {
  #dokodemo-bigban .content_about__detail p {
    text-align: left;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_about__detail p {
    font-size: 1rem;
    line-height: 1.9rem;
  }
}

@keyframes purun {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes purun_end {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 1.1) translate(0%, 0%);
    transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}

#dokodemo-bigban .content_about__img {
  margin: 0 auto;
  width: 60%;
  transform: translateY(0);
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_about__img {
    width: 80%;
  }
}

#dokodemo-bigban .content_about__img .ban-img {
  transform: translateY(300px);
  opacity: 1;
  animation: purun 0.8s linear 1.5s 1;
  animation-fill-mode: forwards;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(2) {
  animation-delay: 2s;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(3) {
  animation-delay: 2.5s;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(4) {
  animation-delay: 3s;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(5) {
  animation-delay: 3.5s;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(6) {
  animation-delay: 4s;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(7) {
  animation-delay: 4.5s;
}

#dokodemo-bigban .content_about__img .ban-img:nth-child(8) {
  animation-delay: 5s;
}

#dokodemo-bigban .content_use {
  overflow: hidden;
  position: relative;
}

#dokodemo-bigban .content_use:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, #91a9ba 0%, #c2c3c3 0%, #dbe8f4 0%, #c2c3c3 0%, white 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: 4rem;
  display: block;
  z-index: 1;
}

#dokodemo-bigban .content_use:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 4rem;
  display: block;
  z-index: 1;
  background: linear-gradient(0deg, #91a9ba 0%, #c2c3c3 0%, #dbe8f4 0%, #c2c3c3 0%, white 0%, rgba(255, 255, 255, 0) 100%);
}

#dokodemo-bigban .content_use__about {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

#dokodemo-bigban .content_use__about .content {
  margin-bottom: 3rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use__about .content {
    width: 95%;
  }
}

#dokodemo-bigban .content_use__about .content .content_tit {
  position: relative;
  bottom: 2rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use__about .content .use-about {
    padding-bottom: 0;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use__about .content .use-about__item {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use__about .content .use-about__item:last-child {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use__about .content .use-about__item__tit h3 img {
    width: 16%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use__about .content .use-about__item__img {
    width: 38%;
  }
}

#dokodemo-bigban .content_use .anime-bg {
  z-index: 0;
}

#dokodemo-bigban .content_use .anime-bg__img {
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-name: move-up;
  width: 8vw;
}

@media (max-width: 993px) {
  #dokodemo-bigban .content_use .anime-bg__img {
    width: 12vw;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img {
    width: 25vw;
  }
}

#dokodemo-bigban .content_use .anime-bg__img.a_hata {
  left: 10%;
  animation-duration: 4.25s;
}

#dokodemo-bigban .content_use .anime-bg__img.a_hata_right {
  right: 1%;
  animation-duration: 6s;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img.a_hata_right {
    display: none;
  }
}

#dokodemo-bigban .content_use .anime-bg__img.b_hata {
  left: 28%;
  animation-duration: 6.75s;
}

#dokodemo-bigban .content_use .anime-bg__img.c_hata {
  right: 13%;
  animation-duration: 8s;
}

#dokodemo-bigban .content_use .anime-bg__img.d_hata {
  right: 28%;
  animation-duration: 4.5s;
  animation-delay: .5s;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img.d_hata {
    display: none;
  }
}

#dokodemo-bigban .content_use .anime-bg__img.e_hata {
  right: -2%;
  animation-duration: 5s;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img.e_hata {
    display: none;
  }
}

#dokodemo-bigban .content_use .anime-bg__img.h_hata {
  right: 23%;
  animation-duration: 6s;
}

#dokodemo-bigban .content_use .anime-bg__img.f_hata {
  left: 3%;
  animation-duration: 4.5s;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img.f_hata {
    left: -10%;
  }
}

#dokodemo-bigban .content_use .anime-bg__img.f_hata_right {
  right: 4%;
  animation-duration: 4s;
  animation-delay: 1s;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img.f_hata_right {
    display: none;
  }
}

#dokodemo-bigban .content_use .anime-bg__img.g_hata {
  right: -4%;
  animation-duration: 4.5s;
  animation-delay: .5s;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content_use .anime-bg__img.g_hata {
    right: -13%;
  }
}

#dokodemo-bigban .content-contact {
  padding-bottom: 6rem;
}

#dokodemo-bigban .content-contact .content .round-link p {
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content-contact .content .round-link p {
    font-size: 1.4rem;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content-contact .content .round-link p .sp-br {
    display: block;
  }
}

#dokodemo-bigban .content-contact .content .round-link .ban-list_link {
  margin: 2rem 0 6rem;
}

#dokodemo-bigban .content-contact .content .content-contact__tel h3 {
  margin-bottom: 2rem;
  font-weight: bold;
}

#dokodemo-bigban .content-contact .content .content-contact__tel p {
  line-height: 1rem;
}

@media (max-width: 577px) {
  #dokodemo-bigban .content-contact .content .content-contact__tel p {
    line-height: 2rem;
  }
}

#dokodemo-bigban .content-contact .content .content-contact__tel p small {
  font-size: 1rem;
}

#dokodemo-bigban .content-contact .content-contact__note p {
  background: none;
  text-shadow: 2px 2px .5px #ffffff, -2px 2px .5px #ffffff, 2px -2px .5px #ffffff, -2px -2px .5px #ffffff, 2px 0px .5px #ffffff, 0px 2px .5px #ffffff, -2px 0px .5px #ffffff, 0px -2px .5px #ffffff;
  font-weight: bold;
  color: #222222;
  font-size: 1rem;
  text-align: center;
}

#dokodemo-bigban .content-contact .content-contact__note .application__dm .link-btn button {
  background-color: #222222;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  padding: 0.75rem 2rem;
  width: 25vw;
}

@media (max-width: 993px) {
  #dokodemo-bigban .content-contact .content-contact__note .application__dm .link-btn button {
    width: 45vw;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .content-contact .content-contact__note .application__dm .link-btn button {
    width: 90vw;
  }
}

#dokodemo-bigban .content-contact .content-contact__note .application__dm .link-btn button:hover {
  box-shadow: none;
  transition-delay: 2s;
}

#dokodemo-bigban .content-contact__bg {
  bottom: 0;
  z-index: -1;
}

#dokodemo-bigban .use-about {
  padding-bottom: 2rem;
  padding-bottom: 2rem;
  margin: 2rem auto 0;
  width: 90%;
}

#dokodemo-bigban .use-about__item {
  border-right: solid 1px #b8b8b8;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use-about__item {
    border-right: 0;
    margin-bottom: 2rem;
    border-bottom: solid 1px #b8b8b8;
    padding-bottom: 2rem;
  }
}

#dokodemo-bigban .use-about__item:last-child {
  border-right: 0;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use-about__item:last-child {
    border-bottom: 0;
  }
}

#dokodemo-bigban .use-about__item__tit {
  margin-bottom: 2rem;
}

#dokodemo-bigban .use-about__item__tit h3 {
  font-weight: bold;
  font-size: 1.3rem;
}

#dokodemo-bigban .use-about__item__tit h3 img {
  width: 20%;
  margin-bottom: 0.5rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use-about__item__tit h3 img {
    width: 8%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .use-about__item__tit h3 img {
    width: 13%;
  }
}

#dokodemo-bigban .use-about__item__img {
  margin: 0 auto 2rem;
  width: 30%;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use-about__item__img {
    width: 16%;
  }
}

@media (max-width: 769px) {
  #dokodemo-bigban .use-about__item__img {
    width: 20%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .use-about__item__img {
    width: 35%;
  }
}

#dokodemo-bigban .use-about__item__img p span {
  font-size: .9rem;
  margin-top: 0.25rem;
  font-weight: bold;
}

@media (max-width: 769px) {
  #dokodemo-bigban .use-about__item__img p img {
    margin: 0 auto;
    width: 85%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .use-about__item__img p img {
    width: 75%;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .use-about__item__detail {
    text-align: center;
  }
}

@media (max-width: 769px) {
  #dokodemo-bigban .use-about__item__detail {
    text-align: left;
  }
}

#dokodemo-bigban .use-about__item__detail h4 {
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 769px) {
  #dokodemo-bigban .use-about__item__detail h4 {
    justify-content: start;
  }
}

#dokodemo-bigban .use-about__item__detail h4 img {
  width: 8%;
}

@media (max-width: 993px) {
  #dokodemo-bigban .use-about__item__detail h4 img {
    width: 5%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .use-about__item__detail h4 img {
    width: 7%;
  }
}

#dokodemo-bigban .ground img {
  height: 100vh;
  width: 100%;
}

#dokodemo-bigban .forest {
  top: 51vh;
  left: 0;
  width: 71%;
}

@media (max-width: 1401px) {
  #dokodemo-bigban .forest {
    top: 51vh;
  }
}

@media (max-width: 1201px) {
  #dokodemo-bigban .forest {
    top: 51.5vh;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .forest {
    top: 53vh;
  }
}

@media (max-width: 769px) {
  #dokodemo-bigban .forest {
    width: 87%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .forest {
    width: 100%;
  }
}

#dokodemo-bigban .ban-list__content {
  top: 0;
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .top {
  position: relative;
  z-index: 3;
  left: 0;
  right: 0;
  margin: auto;
}

#dokodemo-bigban .ban-list__content .ban .top img {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .body,
#dokodemo-bigban .ban-list__content .ban .hand-l,
#dokodemo-bigban .ban-list__content .ban .hand-r,
#dokodemo-bigban .ban-list__content .ban .foot {
  margin: auto;
  left: 0;
  right: 0;
  width: 93%;
}

#dokodemo-bigban .ban-list__content .ban .hand-l,
#dokodemo-bigban .ban-list__content .ban .hand-r {
  z-index: 1;
}

#dokodemo-bigban .ban-list__content .ban .hand-l img,
#dokodemo-bigban .ban-list__content .ban .hand-r img {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .body {
  z-index: 2;
}

#dokodemo-bigban .ban-list__content .ban .body__bg {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .body__bg img {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .body .body-content__item {
  position: relative;
  width: 78.5%;
  padding: 0.5rem 0;
  margin: auto;
}

#dokodemo-bigban .ban-list__content .ban .body .body-content__item__opus {
  padding: 2% 8%;
  cursor: pointer;
}

#dokodemo-bigban .ban-list__content .ban .body .body-content__item__opus img {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .foot {
  z-index: 1;
}

#dokodemo-bigban .ban-list__content .ban .foot img {
  width: 100%;
}

#dokodemo-bigban .ban-list__content .ban .bar {
  width: 9%;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}

#dokodemo-bigban .ban-list__content .ban .bar img {
  width: 100%;
}

@media (max-width: 993px) {
  #dokodemo-bigban .operation {
    position: relative;
    bottom: 65%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .operation {
    float: right;
    width: 19%;
    bottom: 67%;
  }
}

#dokodemo-bigban .operation .mode-change {
  cursor: pointer;
  display: block !important;
  text-align: center;
  float: right;
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 18.5%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.5rem;
  border-radius: 10px 0 0 10px;
  width: 88px;
}

@media (max-width: 993px) {
  #dokodemo-bigban .operation .mode-change {
    z-index: 1;
    padding-top: 1rem;
    opacity: .9;
    top: 11.5%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .operation .mode-change {
    top: 7.5%;
  }
}

#dokodemo-bigban .operation .mode-change img {
  width: 29%;
  margin-bottom: 0.25rem;
}

@media (max-width: 993px) {
  #dokodemo-bigban .operation .mode-change img {
    margin: 0 auto;
    width: 52%;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .operation .mode-change img {
    width: 60%;
  }
}

#dokodemo-bigban .operation .mode-change p {
  line-height: 1.2rem;
  font-size: .9rem;
  color: white;
  position: relative;
}

@media (max-width: 577px) {
  #dokodemo-bigban .operation .mode-change p {
    line-height: 1rem;
    font-size: .9rem;
  }
}

@media (max-width: 993px) {
  #dokodemo-bigban .operation .mode-change p span {
    display: block;
  }
}

#dokodemo-bigban .scroll-mark {
  opacity: 0;
  right: 0;
  left: 0;
  width: 11%;
  bottom: 5vw;
  position: fixed;
  height: 10%;
  z-index: 1000;
  margin: auto;
  cursor: pointer;
}

@media (max-width: 993px) {
  #dokodemo-bigban .scroll-mark {
    width: 15%;
    bottom: 8vw;
  }
}

@media (max-width: 769px) {
  #dokodemo-bigban .scroll-mark {
    width: 20%;
    bottom: 10vw;
  }
}

@media (max-width: 577px) {
  #dokodemo-bigban .scroll-mark {
    right: 3%;
    bottom: 24vw;
    width: 30%;
    margin: 0;
    left: auto;
  }
}

#dokodemo-bigban .scroll-mark img {
  width: 100%;
}

#dokodemo-bigban .opus {
  position: absolute;
}
