/* common */
body {
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(1, 183, 255, 1) 10px, rgba(1, 183, 255, 1) 20px );
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP' , sans-serif;
}
body.tokuyama {
  background-color: #000;
  background-image:none;
}
body img {
  width: 100%;
  max-width: 100%;
}
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 80px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
#main_content_area {
  max-width: 780px;
  display:block;
  margin: 0 auto;
  padding: 0;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding: 1em ;
  max-width: 100%;
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 96%;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 96%;
  }
}
@media (min-width: 992px) and (min-width: 1200px) and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  #main_content_area {
    max-width: 100%;
  }
}
#common_header .common_header_logoarea {
  min-height: 167px;
}
.common_menu {
  padding: .5em .5em;
}
.common_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
}
.common_menu ul li {
  display: inline-block;
    width: 20%; 
    max-width: 20%;
    font-size: .8em;
    text-align: center;
    list-style: none !important;
    padding: 0 .2em;
    position: relative;
}

.common_menu ul li a {
    color: #fff;
    text-decoration: none;
}
main {
  padding-top: 1em;
  padding-bottom: 2em;
  background: #fff;
  color: #000;
  min-height: 40vh;
}
body.tokuyama main{
  background-size: auto auto;
  background-color: rgba(40, 103, 208, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(57, 129, 240, 1) 4px, rgba(57, 129, 240, 1) 11px );
}

@media (max-width: 767px) {
  #common_header .common_header_logoarea {
    min-height:auto;
  }
  .common_menu {
    padding: .5em .5em;
  }
  .common_menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .common_menu ul li {
    min-width: 1%;
    max-width: 20%;
    font-size: .8em;
    text-align: center;
    list-style: none !important;
    padding: 0 .2em;
  }
  .common_menu ul li a {
    color: #fff;
    text-decoration: none;
  }
}
.sunacchiiis_logo {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}
.sunacchiiis_logo img {
  margin: 0 auto;
  max-width: 100%;
}
/* header css  */
.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.form-control-dark {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: var(--bs-gray);
}
.form-control-dark:focus {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.text-small {
  font-size: 85%;
}

.dropdown-toggle {
  outline: 0;
}

/* top  */
.top_reg_brn {
  display: block;
  margin: 4em auto 2em auto;
}
.top_reg_brn img {
  display: block;
  margin-left:auto ;
  margin-right: auto;
  max-width: 90%;
}

/* top -- 出演者  */
.performers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 1em;
  margin-right: auto;
  margin-right: auto;
  padding:1em 2em;
}

.performers .eachperformer {
  width: 48.5%;
  display:block;
  text-align: center;
}
.performers .eachperformer img {
  max-width: 100%;
  margin-bottom: 2em;
  cursor: pointer;
}
@media (max-width: 767px) {
  .top_performer h2 {
    margin-top: 1em;
  }
  .performers .eachperformer {
    width: 100%;
  }
}

/* top - modal */
.modal-performers-wrapper {
     width: 100%;
     height: 100%;
     position: fixed;
     top: 0;
     left: 0;
     background: rgba(0,0,0,0.5);
     pointer-events: none;
     opacity: 0;
     transition: 0.25s ease-out;
}

.modal-performers-wrapper.show {
     opacity: 1;
     pointer-events: all;
}

.modal-performers-image {
     position: absolute;
     max-width: 80%;
     max-height: 80%;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     object-fit: contain;
     opacity: 0;
     transition: 0.5s ease-out;
}

.modal-performers-image.show {
     opacity: 1;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #0bd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto 50px;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}
 
.loaded {
  opacity: 0;
  visibility: hidden;
}

form[name="lostpassword"] input#user_login {
  margin-bottom: 1em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #f4f4f4;
  margin: 20% auto;
  width: 50%;
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
  animation-name: modalopen;
  animation-duration: 1s;
}

@keyframes modalopen {
  from {opacity: 0}
  to {opacity: 1}
}

.modal-header h3 {
  margin: 1rem 0;
  font-size:14px;
}

.modal-header {
  background: lightblue;
  padding: 3px 15px;
  display: flex;
  justify-content: space-between;
}

.modalClose {
  font-size: 2rem;
}

.modalClose:hover {
  cursor: pointer;
}

.modal-body {
  padding: 10px 20px;
  color: black;
}

.youtube {
  width: 94%;
  aspect-ratio: 16 / 9;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 2em;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/* .tml - member related  */
.tml {
    font-size: 1em;
    background: #fff;
    padding: 1em;
    display: block;
    margin: auto;
}
#pass-strength-result {
  background-color: #000;
  color: #fff;
  opacity: 1;
  border: none;
}
/* .content_area_default  */
.content_area_default {
  background: #fff;
  padding: 1em;
  margin-top: 0;
}

/* ranking  */
h2.bg-dark {
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: .5em 1em;
}

.table-ranking-bg {background: #fff}
.table-gold {
  background: rgb(254,211,75);
  background: linear-gradient(0deg, rgba(254,211,75,1) 0%, rgba(242,223,84,1) 52%, rgba(235,174,78,1) 100%, rgba(254,254,109,1) 100%);
}

.is_sp{display: none;}
@media (max-width: 767px) {
  .is_sp{display:block}

  .modal-content {
    width: 90%;
    margin: 10% auto;
  }

  .modal_table tr td:first-child{
    border-bottom:1px solid #eee !important;
  }

}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 0.375rem 0.375rem 0.375rem;
    /*-moz-padding-start: calc(0.75rem - 3px);*/
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
     background-image: none; 
    background-repeat: no-repeat;
    background-position: unset;
    background-size: unset;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}