html {
  font-size: 5vw;
}

@media all and (min-width: 769px) {
  html {
    font-size: 16px;
  }
}

body {
  text-align: center;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;

  font-feature-settings: 'palt'1;
}

body * {
  font-family: kan48typos-std, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.bold, strong, b, h1, h2, h3, h4, h5, h6 {
  font-family: kan412typos-std, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: top;
}

input[type='image'] {
  vertical-align: top;
}
a {
  text-decoration: none;
  color: #000;
}


input[type='text'], input[type='password'], input[type='url'], input[type='email'], input[type='search'], input[type='telephone'], input[type='number'], input[type='date'], input[type='datetime'], input[type='datetime-local'], input[type='month'], input[type='week'], input[type='time'] {
  width: 100%;
  padding: 0.5rem 0.2rem;
  border: 1px solid #666;
  border-radius: 2px;
}

/* input[type="submit"], input[type="reset"], input[type="button"], button {
  line-height: 1;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  background: #a71111;
  color: #fff
} */

input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.7em 1em;
  border-radius: 0;
  background: #fff;
  line-height: 1;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;;
}

.selectbox {
  position: relative;
  display: block;
  margin: 0 0;
  border: 1px solid #666;
  border-radius: 2px;
}

.selectbox.inline {
  display: inline-block;
  min-width: 5rem;
}

.selectbox:before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0.5em;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  content: '\f078';
  pointer-events: none;
  font-family: 'Font Awesome 5 Free';
  font-size: 1em;
  font-weight: bold;
  line-height: 1;;
}

.selectbox select::-ms-expand {
  display: none;
}

.selectbox.focus:before {
  content: '\f077';
}

input[type='checkbox'] {
  display: none;
}

input[type='checkbox'] + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0.3em 1em 0.3em 1.8rem;
  background: #fff;
  line-height: 1;;
}

input[type='checkbox'] + label::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.7rem;
  content: 'check_box_outline_blank';
  color: #666666;
  background: #fff;
  font-family: 'Material Icons';
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

input[type='checkbox']:checked + label::before {
  content: 'check_box';
  color: #a71111;
}

input[type='radio'] {
  display: none;
}

input[type='radio'] + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.7em 1em 0.7em 1.8rem;
  background: #fff;
  line-height: 1;
}

input[type='radio'] + label::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.7rem;
  content: 'radio_button_unchecked';
  color: #666666;
  background: #fff;
  font-family: 'Material Icons';
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

input[type='radio']:checked + label::before {
  content: 'radio_button_checked';
  color: #a71111;
}

textarea {
  width: 100%;
  height: 10rem;
  padding: 0.5rem 0.2rem;
  vertical-align: top;
  border: 1px solid #666;
  border-radius: 2px;
}

#canvas1 {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}



@media (min-width: 769px) {
  .wrapper {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}

.header {
  margin-bottom: 20px;
}

.header_sp {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 14vw;
  color: #fff;
  background: rgba(71, 200, 255, 0.9);
}
@media (min-width: 769px) {
  .header_sp {
    display: none;
  }
}

.header_sp_text {
  padding: 0 0.5rem;
  text-align: left;
  font-size: 0.7rem;
}

.header_sp_nav {
  display: flex;
  padding: 0 0.5rem;
  text-align: left;
  font-size: 0.7rem;
}

.header_sp_nav .nav_icon {
  width: 12vw;
  margin-left: 5px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}

.header_sp_nav .nav_icon .menu_btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header_sp_nav .nav_icon .menu_btn span {
  display: block;
  width: 70%;
  height: 4px;
  margin: 2px 0;
  transition: 0.5s;
  border-radius: 5px;
  background: #fff;
}

.header.active .header_sp_nav .nav_icon .menu_btn span:nth-child(1) {
  transform: translateY(8px) rotate(225deg);
}
.header.active .header_sp_nav .nav_icon .menu_btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-225deg);
}
.header.active .header_sp_nav .nav_icon .menu_btn span:nth-child(2) {
  opacity: 0;
}

.header .header_inner {
  position: relative;
  margin-top: 14vw;
  background-image: url('../img/all/header_bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.header .header_inner .line {
  margin: 10px 2% 0;
}

.header .header_inner .newyear {
  position: absolute;
  top: 34vw;
  right: 0;
}
.header .header_inner .newyear img {
  width: 23vw;
  height: auto;
}
.header .header_inner .newyear2 {
  position: absolute;
  top: 23vw;
  left: 0;
}
.header .header_inner .newyear2 img {
  width: 24vw;
  height: auto;
}

@media (min-width: 769px) {
  .header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    margin-top: 0;
    background-position: center center;
    background-size: 100% auto;
  }
  .header .header_inner h1 {
    order: 1;
    width: 300px;
  }
  .header .header_inner .shop_info {
    order: 3;
    margin-right: 10px;
  }
  .header .header_inner .line {
    order: 2;
    margin: 0;
  }
  .header .header_inner .line img {
    height: 80px;
  }
  .header .header_inner .newyear {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 1;
    margin: 0 -80px 0 -100px;
  }
  .header .header_inner .newyear img {
    width: auto;
    height: 80px;
  }
  .header .header_inner .newyear2 {
    display: none;
  }
}

.header .header_inner .shop_info {
  line-height: 1.2;
}
@media (min-width: 769px) {
  .header .header_inner .shop_info {
    text-align: right;
  }
}

.header .header_inner .shop_info > div {
  margin: 1px 0 0;
}

.header .header_inner .shop_info .tel {
  font-size: 1.2rem;
}

.header .header_inner .shop_info .tel_desc {
  font-size: 0.6rem;
  line-height: 1.2;
}

.header .nav {
  position: fixed;
  z-index: 10000;
  top: 14vw;
  right: 0;
  left: 0;
  background: rgba(71, 200, 255, 0.9);
}
.header .nav ul {
  z-index: 9999;
  overflow: hidden;
  /* display: none; */
  height: 0;
  list-style: none;
  transition: height 0.5s;
}
.header.active .nav ul {
  display: block;
  height: 100vh;
}
.header .nav ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.header .nav ul li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header .nav ul li a {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 1rem;
  color: #fff960;
}
.header .nav ul li a span {
  color: #fff;
}
@media (min-width: 769px) {
  .header .nav {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
  }
  .header .nav ul {
    display: flex !important;
    flex-wrap: wrap;
    height: 100px !important;
    transition: 0s !important;
  }
  .header .nav ul li {
    display: flex;
    width: 143px;
  }
  .header .nav ul li.menu_top {
    width: 142px;
  }
  .header .nav ul li.menu_about, .header .nav ul li.menu_diff, .header .nav ul li.menu_privacy, .header .nav ul li.menu_rules {
    width: 167px;
  }
  .header .nav ul li.menu_flow, .header .nav ul li.menu_faq {
    width: 166px;
  }

  .header .nav ul li a {
    display: block;
    width: 100%;
    height: 50px;
    text-indent: -9999px;
  }
  .header .nav ul li a {
    background-repeat: no-repeat;
    background-position: top left;
  }
  .header .nav ul li a:hover, .page_index .header .nav ul li.menu_top a, .page_schedule .header .nav ul li.menu_schedule a, .page_cast .header .nav ul li.menu_cast a, .page_system .header .nav ul li.menu_system a, .page_ranking .header .nav ul li.menu_ranking a, .page_recruit .header .nav ul li.menu_recruit a, .page_contact .header .nav ul li.menu_contact a, .page_about .header .nav ul li.menu_about a, .page_diff .header .nav ul li.menu_diff a, .page_flow .header .nav ul li.menu_flow a, .page_faq .header .nav ul li.menu_faq a, .page_privacy .header .nav ul li.menu_privacy a, .page_rules .header .nav ul li.menu_rules a {
    background-position: bottom left;
  }
  .header .nav ul li.menu_top a {
    background-image: url('../img/all/menu_top.jpg');
  }
  .header .nav ul li.menu_schedule a {
    background-image: url('../img/all/menu_schedule.jpg');
  }
  .header .nav ul li.menu_cast a {
    background-image: url('../img/all/menu_cast.jpg');
  }
  .header .nav ul li.menu_system a {
    background-image: url('../img/all/menu_system.jpg');
  }
  .header .nav ul li.menu_ranking a {
    background-image: url('../img/all/menu_ranking.jpg');
  }
  .header .nav ul li.menu_recruit a {
    background-image: url('../img/all/menu_recruit.jpg');
  }
  .header .nav ul li.menu_contact a {
    background-image: url('../img/all/menu_contact.jpg');
  }
  .header .nav ul li.menu_about a {
    background-image: url('../img/all/menu_about.jpg?20211118');
  }
  .header .nav ul li.menu_diff a {
    background-image: url('../img/all/menu_diff.jpg?20211118');
  }
  .header .nav ul li.menu_flow a {
    background-image: url('../img/all/menu_flow.jpg?20211118');
  }
  .header .nav ul li.menu_faq a {
    background-image: url('../img/all/menu_faq.jpg?20211118');
  }
  .header .nav ul li.menu_privacy a {
    background-image: url('../img/all/menu_privacy.jpg?20211118');
  }
  .header .nav ul li.menu_rules a {
    background-image: url('../img/all/menu_rules.jpg?20211118');
  }
}

.main {
  padding: 0 2%;
}

@media (min-width: 769px) {
  .main {
    padding: 0 20px;
  }
}

.footer {
  padding: 2rem 0 0;
}

.footer .nav {
  list-style: none;
  background: rgba(71, 200, 255, 0.9);
}
@media all and (min-width: 769px) {
  .footer .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0;
    list-style: none;
    font-size: 0.8rem;
    /* background: transparent; */
  }
}


.footer .nav li {
  margin: 0 0;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
}
@media all and (min-width: 769px) {
  .footer .nav li {
    width: 16%;
    margin: 0.5rem 0 0.5rem;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);;
  }
}

@media all and (min-width: 769px) {
  .footer .nav li:first-child, .footer .nav li:nth-child(6n+1) {
    border-width: 0 1px;
  }
}

.footer .nav li a {
  display: block;
  padding: 0.5rem 0;
  color: #fff960;
}
@media all and (min-width: 769px) {
  .footer .nav li a {
    padding: 0.5rem 0;
    font-size: 0.9em;
    line-height: 1;
    /* color: #000; */
  }
}

.footer .copyright {
  padding: 1rem 0;
  font-size: 0.6rem;
}
@media all and (min-width: 769px) {
  .footer .copyright {
    font-size: 0.8rem;
  }
}

.footer_text {
  display: none;
}

.page_index .footer_text {
  display: block;
  padding: 0 15px 10px;
  text-align: justify;
  font-size: 10px;
}
@media all and (min-width: 769px) {
  .page_index .footer_text {
    padding: 0 60px 30px;
    text-align: center;
    font-size: 12px;
  }
}

.link {
  margin: 20px 0 0;
}
.link a {
  display: block;
  margin: 10px 0 0;
}
.link img {
  width: 75%;
}
@media all and (min-width: 769px) {
  .link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .link .spacer {
    width: 100%;
  }
  .link a {
    margin: 10px 10px;
  }
  .link img {
    width: 300px;
  }
}

section h1.title {
  width: 80%;
  margin: auto;
}
@media all and (min-width: 769px) {
  section h1.title {
    width: 260px;
    margin-bottom: 20px;
  }
}

section .box {
  margin: 0 0 20px;
}

/* slider */
.bx-wrapper {
  border: none;
}

/* cast */
.pagelink {
  display: flex;
  justify-content: center;
  margin: 1rem;
}

.pagelink span {
  display: inline-block;
  min-width: 30px;
  margin: 0 5px;
  padding: 5px 5px;
  color: #ffffff;
  border: 2px solid #30bbff;
  border-radius: 5px;
  background: #30bbff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.pagelink a span {
  color: #000;
  background: #fff;
}

.cast_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cast_box .cast {
  position: relative;
  width: 30%;
  margin: 1rem auto 0;
}
@media all and (min-width: 769px) {
  .cast_box .cast {
    width: 208px;
    margin: 10px;
  }
}

.cast_box .cast .kensyu {
  position: absolute;
  z-index: 100;
  top: 5px;
  left: 5px;
  width: 30px !important;
  height: auto !important;
}
@media all and (min-width: 769px) {
  .cast_box .cast .kensyu {
    top: 5px;
    left: 5px;
    width: 60px !important;
  }
}

.cast_box .cast .new {
  position: absolute;
  z-index: 100;
  top: 27vw;
  right: -3px;
  width: 30px !important;
  height: 30px !important;
}
@media all and (min-width: 769px) {
  .cast_box .cast .new {
    top: 190px;
    right: 5px;
    width: 60px !important;
    height: 60px !important;
  }
}

.cast_box .frame {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
}
@media all and (min-width: 769px) {
  .cast_box .frame {
    width: 208px;
    height: auto;
  }
}

.cast_box .frame img {
  max-width: 100%;
  height: 100%;
  max-height: none;
}
@media all and (min-width: 769px) {
  .cast_box .frame img {
    height: 257px;
  }
}

.cast_box .cast .photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 68%;
  margin: 15% auto 0;
  padding-top: 90%;
}
@media all and (min-width: 769px) {
  .cast_box .cast .photo {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 140px;
    height: 186px;
    margin: 36px auto 0;
    padding: 0;
  }
}
.cast_box .cast .photo a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media all and (min-width: 769px) {
  .cast_box .cast .photo a {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.cast_box .cast .photo img {
  width: 140px;
  height: auto;
  max-height: none;
}

.cast_box .cast .name {
  margin: 5vw 0 0;
  padding: 0 0;
  font-size: 0.6rem;
  font-weight: bold;
}
@media all and (min-width: 769px) {
  .cast_box .cast .name {
    margin: 36px 0 0;
    padding: 0 1rem;
    font-size: 0.9rem;
  }
}

.cast_box .cast .name .name_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0 0;
}
@media all and (min-width: 769px) {
  .cast_box .cast .name .name_box {
    flex-direction: row;
    padding: 5px 0;
  }
}

.cast_box .cast .name .schedule {
  font-size: 90%;
  font-weight: normal;
}

.cast_box .cast .name .schedule .sche_time {
  height: 22px;
  line-height: 20px;
}

.cast_box .cast .name .schedule .sche_time img.stay_mark {
  width: auto;
  height: 18px;
  margin: 0 0 0 5px;
  vertical-align: middle;
}


.halloween {
  display: none;
}

.page_index .halloween.sp {
  display: block;
}

@media all and (min-width: 769px) {
  .page_index .halloween.sp {
    display: none;
  }
  .halloween.pc {
    display: block;
  }
}

.firsttime_pc {
  display: none;
}
@media all and (min-width: 769px) {
  .firsttime_pc {
    display: block;
  }
  .firsttime_sp {
    display: none;
  }
}
