@charset "utf-8";

/* LAYOUT */
img {
  max-width: 100%;
}

header,
main,
footer,
section {
  width: calc(100vw - 200px);
  margin-left: auto;
}

.thanks {
  max-width: 80vw;
  margin: 0 auto 100px;
}
.thanks figure {
  max-width: 100%;
  text-align: center;
}
.thanks img {
  margin-bottom: 100px;
  border: 3px solid #eee;
  box-shadow: 10px 10px 10px #333;
}

.action-photo {
  width: 100%;
  height: 100vh;
  background-image: url(../img/fes2025poster-noncost.jpg);
  background-repeat: repeat;
  background-size: contain;
  background-position: top, center;
}

#photo {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  position: relative;

}

#photo img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: contain;
}

nav {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 200px;
  background-color: #fff;
  box-shadow: -25px 0 10px -15px #ccc inset;
  z-index: 999;
}

nav ul {
  text-align: center;
  -moz-transform: skew(0deg, -3deg);
  -webkit-transform: skew(0deg, -3deg);
  transform: skew(0deg, -3deg);
  padding-top: 70px;
}

nav ul li {
  font-size: 22px;
  color: #333;
  padding: 20px 0;
  transition: 0.5s;
}

.red {
  color: #ff0000;
}

.logo {
  width: 150px;
}

nav ul li:hover {
  -moz-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  background-color: #999;
  box-shadow: -25px 0 10px -15px #ccc inset;
  color: #fff;
}

nav ul li:first-child:hover {
  background-color: #fff;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}

.slide-menu {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  padding: 10px;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 10px;
  position: fixed;
  top: 20px;
  left: 40px;
  z-index: 999;
  display: none;
  opacity: 0.7;
}

.zoom {
  display: none;
  text-align: center;
  padding: 3vw;
  margin-top: 30px;
}

.guest-grid {
  width: calc(100vw - 200px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.guest-grid a {
  transition: 0.2s;
}

.guest-grid a:hover {
  -moz-transform: scale(1.5) rotate(1turn);
  -webkit-transform: scale(1.5) rotate(1turn);
  transform: scale(1.5) rotate(1turn);
  transition: 0.5s;
  border: 2px solid #666;
  z-index: 999;
}

.guest-grid a:first-child:hover,
.guest-grid a:nth-child(5):hover,
.guest-grid a:nth-last-child(4):hover {
  -moz-transform: scale(1.5) rotate(1turn) translateX(3vw);
  -webkit-transform: scale(1.5) rotate(1turn) translateX(3vw);
  transform: scale(1.5) rotate(1turn) translateX(3vw);
  transition: 0.5s;
  border: 2px solid #666;
  z-index: 999;
}

.guest-grid a:nth-child(4):hover,
.guest-grid a:nth-child(8):hover,
.guest-grid a:last-child:hover {
  -moz-transform: scale(1.5) rotate(1turn) translateX(-3vw);
  -webkit-transform: scale(1.5) rotate(1turn) translateX(-3vw);
  transform: scale(1.5) rotate(1turn) translateX(-3vw);
  transition: 0.5s;
  border: 2px solid #666;
  z-index: 999;
}
.top-amademo {
  width: calc(100vw - 200px);
  margin: 30px auto;
  text-align: center;
}
.top-amademo a {
  width: calc((100vw - 200px)/3);
}
.top-amademo img {
  width: calc((100vw - 200px)/3);
}
.top-amademo p {
  margin-top: 10px;
}

.poster {
  width: calc(60vw - 200px);
  margin: 100px auto;
  box-shadow: 10px 10px 10px #333;
  transition: .5s;
}
.poster img {
  width: 100%;
}

.poster:hover {
  opacity: .5;
  -moz-transform: scale(.9);
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

.time-table-box {
  max-width: 80vw;
  margin: 0 auto 100px;
}
.time-table-box figure {
  max-width: 100%;
  text-align: center;
}
.time-table-box img {
  margin-bottom: 100px;
  border: 3px solid #eee;
  box-shadow: 10px 10px 10px #333;
}
.ticket-ttl {
  font-size: 36px;
  font-weight: bold;
  padding-left: 5vw;
  margin-top: 100px;
}
.tryal-desc {
  width: 55vw;
  margin: 50px auto 30px;
  font-size: 22px;
  line-height: 1.8;
  background-color: #ddd;
  color: #333;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
}
.cta-btn {
  color: #02a2ff;
}
.cta-btn:hover {
  color: #7aceff;
}
.list {
  background-color: #666;
  color: #fff;
  font-weight: bold;
  padding: 3px 3px;
}

.warning-label {
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 0 15px;
}

.img-inner {
  display: flex;
  justify-content: center;
  width: calc(100vw - 200px);
  margin: 100px auto 200px;
}

.img-inner img {
  width: 35vw;
  margin: 0 2vw;
  border: 1px solid #eee;
  box-shadow: 10px 10px 10px #333;
}

.img-inner a {
  transition: 0.5s;
}

.img-inner a:hover {
  -moz-transform: scale(.9);
  -webkit-transform: scale(.9);
  transform: scale(.9);
}
.form-ttl {
  font-size: 36px;
  font-weight: bold;
  background-color: #eee;
  padding: 50px 0 50px 5vw;
}
#entryform {
  display: block;
  width: 100%;
  height: 100vh;
  margin: 0 auto 100px;
  background-color: #eee;
  padding-bottom: 50px;
}


.section-ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #333;
  text-shadow: 10px 10px 10px #666;
  margin-bottom: 50px;
}

.tryal-standard,
.tryal-latin {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#entry table {
  height: 15vw;
  background-color: #fff;
  color: #333;
  box-shadow: 10px 10px 10px #333;
  margin: 15px;
}

.tango:hover,
.rumba:hover,
.chachacha:hover,
.ladies .waltz:hover,
.ladies .slowfoxtrot:hover {
  -moz-transform: scale(2.0) rotate(1turn);
  -webkit-transform: scale(2.0) rotate(1turn);
  transform: scale(2.0) rotate(1turn);
  transition: 0.5s;
  z-index: 999;
}

.waltz:hover {
  -moz-transform: scale(2.0) rotate(1turn) translateX(5vw);
  -webkit-transform: scale(2.0) rotate(1turn) translateX(5vw);
  transform: scale(2.0) rotate(1turn) translateX(5vw);
  transition: 0.5s;
  z-index: 999;
}

.slowfoxtrot:hover {
  -moz-transform: scale(2.0) rotate(1turn) translateX(-5vw);
  -webkit-transform: scale(2.0) rotate(1turn) translateX(-5vw);
  transform: scale(2.0) rotate(1turn) translateX(-5vw);
  transition: 0.5s;
  z-index: 999;
}

.waltz,
.tango,
.slowfoxtrot, 
.rumba,
.chachacha {
  -moz-transform: scale(1.0) rotate(none);
  -webkit-transform: scale(1.0) rotate(none);
  transform: scale(1.0) rotate(none);
  transition: 0.2s;
}

#entry table th,
#entry table td {
  border: 1px solid #666;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  font-weight: normal;
}

#entry table tr th:first-child {
  width: 7vw;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 0;
}

#entry table td {
  width: 1.8vw;
  font-size: 16px;
  font-weight: bold;
  color: #da1725;
}

.mens tr:nth-child(odd) {
  background-color: #949eff;
}

.mens tr:first-child {
  background-color: #3d1dce;
  color: #fff;
}

.ladies tr:nth-child(odd) {
  background-color: #ff94f6;
}

.ladies tr:first-child {
  background-color: #e600c7;
  color: #fff;
}

.official-line {
  background-color: #fff;
  color: #333;
  text-align: center;
}

.reduction {
  width: 150px;
  margin: 50px auto 0;
  font-size: 1.3vw;
}
#entry p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.tryal-list-box {
  max-width: 80vw;
  margin: 0 auto 100px;
}
.tryal-list-box figure {
  max-width: 100%;
  text-align: center;
}
.tryal-list-box img {
  margin-bottom: 100px;
  border: 3px solid #eee;
  box-shadow: 10px 10px 10px #333;
}

footer {
  background-color: #666;
  height: 180px;
  -webkit-clip-path: polygon(0 calc(100% - 5vw), 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 calc(0% + 5vw), 100% 0, 100% 100%, 0 100%);
  margin-top: -35px;
  padding-top: 30px;
}

/* ボタン全体の外枠指定 */
.snsbtniti {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  max-width: 500px;
  /* ボタンを設置する場所の最大横幅 */
  margin: 0 auto;
  /* ボタンを中央へ */
  -moz-transform: skew(0deg, -3deg);
  -webkit-transform: skew(0deg, -3deg);
  transform: skew(0deg, -3deg);
  color: #fff;
}

/* ulタグの内側余白なしと箇条書きの黒丸削除 */
ul.snsbtniti {
  padding: 30px 0 0 !important;
  list-style-type: none !important;
}

/* ボタン同士の余白調整 */
.snsbtniti li {
  text-align: center !important;
}

/* ボタン全体 */
.flowbtn3 {
  font-family: 'Noto Sans Japaneses', sans-serif;
  /* フォント指定 */
  position: relative;
  display: inline-block;
  width: 60px;
  /* 背景横幅 */
  height: 60px;
  /* 背景高さ */
  font-size: 35px;
  border-radius: 13px;
  /* ボタンの角を丸く */
  transition: .5s;
  text-decoration: none;
  color: #fff;
  /* アイコンカラー */
  margin-bottom: 10px;
  /* ボタン下の余白 */
}

/* アイコンの位置を真ん中へ */
.flowbtn3 i {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*インスタアイコンを少し大きく */
.flowbtn3 i.fa-brands.fa-instagram {
  font-size: 45px;
}

/* ボタンのマウスホバー時少し浮き上がる */
.flowbtn3:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  text-decoration: none;
  cursor: pointer;
}

/* Instagram背景 */
.my_instagram1 {
  background: linear-gradient(45deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
}

/* Facebook背景 */
.my_facebook1 {
  background: #1877f2;
}

/* YouTube背景 */
.my_youtube1 {
  background: #da1725;
}

/* LINE背景 */
.my_line1 {
  background: #00b900;
}

.copyright {
  text-align: right;
  padding: 0 20px 0 0;
}

.copyright small {
  color: #333;
}

@media (max-width: 1030px) {
  nav {
    margin-left: -200px;
    width: 200px;
  }
  nav ul li {
    font-size: 18px;
  }
  header, main, footer,section {
    width: 100vw;
  }
  .slide-menu {
    display: block;
    font-size: 16px;
  }
  .guest-grid {
    width: 100vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .guest-grid a:hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  .guest-grid a:first-child:hover,
  .guest-grid a:nth-child(5):hover,
  .guest-grid a:nth-last-child(4):hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  .guest-grid a:nth-child(4):hover,
  .guest-grid a:nth-child(8):hover,
  .guest-grid a:last-child:hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  .top-amademo {
    width: 90vw;
  }
  .top-amademo a {
    width: 50vw;
  }
  .top-amademo img {
    width: 50vw;
  }

  .poster {
    width: 80vw;
  }
  
  .tryal-desc {
    width: 90vw;
    font-size: 20px;
    padding: 20px;
  }
  .img-inner {
    width: 80vw;
    display: block;
    text-align: center;
  }
  .img-inner img {
    width: 65vw;
    margin-bottom: 50px;
  }
  .tryal-standard {
    display: block;
  }
  #entry table {
    height: 40vw;
    margin: 50px auto;
  }
  #entry table tr th:first-child {
    width: 21vw;
  }
  
  #entry table td {
    width: 5.4vw;
  }

  .tango:hover,
  .rumba:hover,
  .chachacha:hover,
  .ladies .waltz:hover,
  .ladies .slowfoxtrot:hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  .waltz:hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  .slowfoxtrot:hover {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
}
@media (max-width: 800px) {
  .zoom {
    display: block;
  }
  .guest-grid {
    width: 94vw;
    margin: 0 auto;
    gap: .1vw;
  }
  .poster {
    margin: 50px auto;
  }
  .time-table-box img {
    margin-bottom: 50px;
    border: 3px solid #eee;
    box-shadow: 10px 10px 10px #333;
  }
  .tryal-desc {
    width: 90vw;
    margin: 50px auto 30px;
    font-size: 16px;
  }
  #entry table tr th:first-child {
    font-size: 14px;
  }
  .tryal-list-box img {
    margin-bottom: 50px;
    border: 3px solid #eee;
    box-shadow: 10px 10px 10px #333;
  }
  .thanks img {
    margin-bottom: 50px;
    border: 3px solid #eee;
    box-shadow: 10px 10px 10px #333;
  }
}