:root {
  --text-color: #333;
  --main-color: rgb(1, 56, 106);
  --main-color2: rgba(1, 56, 106, 0.8);
  --accent-color: rgb(255, 111, 0);
  --font-en: "Bebas Neue", sans-serif;
  --font-jp: "M PLUS 1p", sans-serif;
  --vw-pc: 1280px;
  --vw-tb: 768px;
  --vw-sp: 500px;
  --vw-min: 320px;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-jp);
  color: var(--text-color);
  min-height: 100vh;
  font-size: 0.875rem;
}

img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--text-color);
}

fieldset {
  border: none;
}

.btn {
  display: block;
  width: 230px;
  margin: 0 auto 30px;
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  color: var(--accent-color);
  background-color: #fff;
  padding: 8px 15px;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}
.btn::before {
  position: absolute;
  content: "";
  width: 55px;
  height: 1px;
  background: var(--accent-color);
  right: -25px;
  bottom: 12px;
}
.btn::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background: var(--accent-color);
  transform: rotate(25deg);
  bottom: 14px;
  right: -27px;
}
.btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.btn:hover::before {
  right: -30px;
}
.btn:hover::after {
  right: -32px;
}
.btn .en {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-en);
}
.btn .jp {
  display: block;
  font-size: 0.75rem;
}

.wrapper {
  max-width: 1200px;
  padding-inline: 2%;
  margin-inline: auto;
}

.section-title {
  font-family: var(--font-en);
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px var(--main-color);
  font-size: 5rem;
  font-weight: normal;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(3rem, 48px + 16 * (100vw - 320px) / 180, 4rem);
  }
}

.read-more {
  width: 180px;
  font-size: 1.25rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 30px;
  padding: 8px 15px;
  text-align: center;
  transition: all 0.5s;
}
.read-more::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: var(--main-color);
  transform: rotate(25deg);
  right: -25px;
  bottom: 14px;
}
.read-more::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 1px;
  background: var(--main-color);
  right: -24px;
  bottom: 12px;
}
.read-more:hover {
  background-color: var(--main-color);
  color: #fff;
}
.read-more:hover::before {
  right: -30px;
}
.read-more:hover::after {
  right: -29px;
}

.container {
  margin-top: 70px;
  padding-block: 150px 80px;
  position: relative;
  background-color: var(--main-color);
}
@media (max-width: 500px) {
  .container {
    padding-top: 100px;
  }
}

.section-title2 {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-family: var(--font-en);
  font-size: 5rem;
  margin-bottom: 70px;
  display: inline-block;
  border-bottom: 1px solid #fff;
}

.back {
  position: absolute;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: normal;
  top: 30px;
  left: 4%;
  transition: all 0.5s;
}
.back::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 1px;
  background: #fff;
  left: -15px;
  bottom: 0;
}
.back::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  left: -16px;
  bottom: 2px;
  transform: rotate(-25deg);
}
.back:hover {
  opacity: 0.7;
}
.back:hover::after, .back:hover::before {
  opacity: 0.8;
}

.bg-white {
  background-color: #fff;
  border-radius: 20px;
  padding: 120px 2%;
  margin-top: 100px;
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 40;
}
header .site-title {
  line-height: 0;
  display: inline-block;
}
header .site-title img {
  width: 230px;
}
header .header-right {
  display: flex;
  justify-content: flex-end;
}
header .header-list {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .header-list {
    display: none;
  }
}
header .header-list li {
  margin-right: 30px;
}
header .header-list li a {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 15px;
  padding: 6px 18px;
  transition: all 0.5s;
  font-family: var(--font-en);
}
header .header-list li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

nav {
  width: 500px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -500px;
  z-index: 50;
  background-color: var(--main-color2);
  opacity: 0;
  overflow: hidden;
}
@media (max-width: 500px) {
  nav {
    width: 300px;
    right: -300px;
  }
}
@media (max-width: 500px) {
  nav .btn {
    width: 200px;
  }
}
@media (max-width: 500px) {
  nav .btn::before {
    width: 45px;
    right: -20px;
  }
}
@media (max-width: 500px) {
  nav .btn::after {
    width: 10px;
    right: -20px;
  }
}
nav .menu-list {
  padding: 40px 50px;
}
nav .menu-list li {
  margin-bottom: 20px;
}
nav .menu-list li a {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--font-en);
  padding-bottom: 5px;
  position: relative;
}
nav .menu-list li a::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
nav .menu-list li a:hover::before {
  bottom: -5px;
  opacity: 0;
}

.toggle-btn {
  width: 40px;
  height: 35px;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 60;
}
.toggle-btn span {
  display: block;
  height: 2px;
  background: var(--text-color);
  transition: all 0.5s;
  position: absolute;
}
.toggle-btn span:nth-of-type(1) {
  width: 100%;
  top: 35%;
}
.toggle-btn span:nth-of-type(2) {
  width: 75%;
  top: 65%;
}
.toggle-btn:hover span:nth-of-type(2) {
  width: 100%;
}

.open nav {
  right: 0;
  opacity: 1;
}
.open .toggle-btn span {
  background: #fff;
}
.open .toggle-btn span:nth-of-type(1) {
  top: 50%;
  transform: rotate(315deg);
}
.open .toggle-btn span:nth-of-type(2) {
  top: 50%;
  width: 100%;
  transform: rotate(-315deg);
}

footer {
  background-color: var(--main-color);
  font-family: var(--font-en);
  text-align: center;
}
footer .footer-logo {
  margin-bottom: 50px;
}
footer .footer-logo img {
  width: 300px;
}
footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-menu li a {
  position: relative;
}
footer .footer-menu li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  transform: scale(0, 1);
  transform-origin: left top;
}
footer .footer-menu li a:hover::after {
  transform: scale(1, 1);
}
footer .menu1 {
  justify-content: space-between;
}
footer .menu1 a {
  color: #fff;
  font-size: 2rem;
  margin-inline: 30px;
}
@media (max-width: 500px) {
  footer .menu1 a {
    font-size: clamp(1.25rem, 20px + 4 * (100vw - 320px) / 180, 1.5rem);
    margin-inline: 15px;
  }
}
footer .menu2 {
  max-width: 800px;
  margin: 30px auto;
  justify-content: space-between;
}
@media (max-width: 500px) {
  footer .menu2 {
    justify-content: center;
  }
}
footer .menu2 a {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 15px 10px 15px;
}
@media (max-width: 500px) {
  footer .menu2 a {
    font-size: clamp(1rem, 16px + 4 * (100vw - 320px) / 180, 1.25rem);
  }
}
footer .menu3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 40px 20px;
}
@media (max-width: 768px) {
  footer .menu3 {
    flex-direction: column;
  }
}
footer .menu3 li {
  margin-inline: 10%;
}
footer .menu4 {
  justify-content: center;
  margin-bottom: 30px;
}
footer .menu4 li {
  margin: 0 30px 10px 30px;
}
footer .menu4 li a {
  color: #fff;
}
footer small {
  display: inline-block;
  color: #fff;
  padding-block: 30px;
}

.mainvisual {
  position: relative;
  height: 100vh;
}
.mainvisual .main-pct {
  width: 100%;
  height: 100%;
  position: relative;
}
.mainvisual .main-pct img {
  height: 100vh;
}
.mainvisual .catchphrase {
  font-family: var(--font-en);
  position: absolute;
  width: 100%;
  overflow: hidden;
  bottom: -235px;
  left: 0;
  z-index: 30;
}
.mainvisual .catchphrase .flowing {
  font-size: 6rem;
  white-space: nowrap;
  display: flex;
  overflow: hidden;
}
.mainvisual .catchphrase .flowing span {
  display: inline-block;
  padding-right: 2rem;
}
.mainvisual .catchphrase .toright span {
  color: var(--main-color);
  text-shadow: 1px 1px 3px #fff;
  -webkit-animation: toright 20s infinite linear;
          animation: toright 20s infinite linear;
}
@-webkit-keyframes toright {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes toright {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.mainvisual .catchphrase .toleft span {
  color: transparent;
  -webkit-text-stroke: 1px #ff6f00;
  -webkit-animation: toleft 20s infinite linear;
          animation: toleft 20s infinite linear;
}
@-webkit-keyframes toleft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes toleft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#aboutus {
  margin-top: 350px;
  text-align: center;
  padding-top: 100px;
}
#aboutus .about-inner {
  margin: 0 auto;
  position: relative;
  background-size: contain;
}
#aboutus .about-inner .shape-pc {
  width: 100%;
}
@media (max-width: 768px) {
  #aboutus .about-inner .shape-pc {
    display: none;
  }
}
#aboutus .about-inner .shape-pc img {
  max-width: 900px;
}
#aboutus .about-inner .shape-tb {
  display: none;
}
#aboutus .about-inner .shape-tb img {
  max-width: 700px;
}
@media (max-width: 768px) {
  #aboutus .about-inner .shape-tb {
    width: 100%;
    display: block;
  }
}
@media (max-width: 500px) {
  #aboutus .about-inner .shape-tb {
    display: none;
  }
}
#aboutus .about-inner .shape-sp {
  display: none;
}
#aboutus .about-inner .shape-sp img {
  max-width: 500px;
}
@media (max-width: 500px) {
  #aboutus .about-inner .shape-sp {
    display: block;
    width: 100%;
  }
}
#aboutus .about-inner .outline-pc {
  position: absolute;
  width: 100%;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #aboutus .about-inner .outline-pc {
    display: none;
  }
}
#aboutus .about-inner .outline-pc img {
  max-width: 910px;
  transform: scale(1.01);
}
#aboutus .about-inner .outline-tb {
  display: none;
}
#aboutus .about-inner .outline-tb img {
  max-width: 700px;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  #aboutus .about-inner .outline-tb {
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 500px) {
  #aboutus .about-inner .outline-tb {
    display: none;
  }
}
#aboutus .about-inner .outline-sp {
  display: none;
}
#aboutus .about-inner .outline-sp img {
  max-width: 500px;
  transform: scale(1.02);
}
@media (max-width: 500px) {
  #aboutus .about-inner .outline-sp {
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#aboutus .about-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  width: 70%;
}
@media (max-width: 768px) {
  #aboutus .about-txt {
    font-size: clamp(0.75rem, 12px + 4 * (100vw - 320px) / 180, 1rem);
  }
}

#class {
  margin-top: 200px;
  padding-block: 100px 400px;
  text-align: center;
}
@media (max-width: 768px) {
  #class {
    margin-top: 130px;
  }
}
#class .class-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 50px;
}
@media (max-width: 768px) {
  #class .class-list {
    gap: 20px;
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 500px) {
  #class .class-list {
    grid-template-columns: repeat(7, 1fr);
  }
}
#class .class-item {
  position: relative;
}
#class .class-item a {
  width: 100%;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  font-size: 1.125rem;
  font-family: var(--font-en);
  line-height: 1.125rem;
  box-shadow: 0px 0px 2px var(--main-color);
  padding: calc(50% - 0.5625rem) 0;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  #class .class-item a {
    border-radius: 10px;
    padding: 30px 10px;
    box-shadow: 2px 2px 4px var(--main-color);
  }
}
#class .class-item a:hover {
  background-color: var(--main-color2);
  color: #fff;
  transform: scale(1.1);
}
#class .class-item:nth-of-type(1) {
  grid-column: 2/span 2;
  -webkit-animation: moveUp 6s infinite ease-in-out 0s;
          animation: moveUp 6s infinite ease-in-out 0s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(1) {
    grid-column: 1/span 3;
  }
}
#class .class-item:nth-of-type(2) {
  grid-column: 5/span 2;
  -webkit-animation: moveDiag1 8s infinite ease-in-out 1s;
          animation: moveDiag1 8s infinite ease-in-out 1s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(2) {
    grid-column: 5/span 3;
  }
}
#class .class-item:nth-of-type(3) {
  grid-column: 8/span 2;
  -webkit-animation: moveLeft 7s infinite ease-in-out 0.5s;
          animation: moveLeft 7s infinite ease-in-out 0.5s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(3) {
    grid-column: 9/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(3) {
    grid-column: 1/span 3;
  }
}
#class .class-item:nth-of-type(4) {
  grid-column: 11/span 2;
  -webkit-animation: moveDiag2 9s infinite ease-in-out 2s;
          animation: moveDiag2 9s infinite ease-in-out 2s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(4) {
    grid-column: 1/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(4) {
    grid-column: 5/span 3;
  }
}
#class .class-item:nth-of-type(5) {
  grid-column: 1/span 2;
  -webkit-animation: moveRight 10s infinite ease-in-out 1.5s;
          animation: moveRight 10s infinite ease-in-out 1.5s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(5) {
    grid-column: 5/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(5) {
    grid-column: 1/span 3;
  }
}
#class .class-item:nth-of-type(6) {
  grid-column: 4/span 2;
  -webkit-animation: moveDown 8s infinite ease-in-out 2.5s;
          animation: moveDown 8s infinite ease-in-out 2.5s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(6) {
    grid-column: 9/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(6) {
    grid-column: 5/span 3;
  }
}
#class .class-item:nth-of-type(7) {
  grid-column: 7/span 2;
  -webkit-animation: moveDiag1 9s infinite ease-in-out 0.7s;
          animation: moveDiag1 9s infinite ease-in-out 0.7s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(7) {
    grid-column: 1/span 3;
  }
}
#class .class-item:nth-of-type(8) {
  grid-column: 10/span 2;
  -webkit-animation: moveDiag2 7s infinite ease-in-out 1.2s;
          animation: moveDiag2 7s infinite ease-in-out 1.2s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(8) {
    grid-column: 5/span 3;
  }
}
#class .class-item:nth-of-type(9) {
  grid-column: 3/span 2;
  -webkit-animation: moveUp 11s infinite ease-in-out 2s;
          animation: moveUp 11s infinite ease-in-out 2s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(9) {
    grid-column: 9/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(9) {
    grid-column: 1/span 3;
  }
}
#class .class-item:nth-of-type(10) {
  grid-column: 6/span 2;
  -webkit-animation: moveDiag1 12s infinite ease-in-out 1.8s;
          animation: moveDiag1 12s infinite ease-in-out 1.8s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(10) {
    grid-column: 1/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(10) {
    grid-column: 5/span 3;
  }
}
#class .class-item:nth-of-type(11) {
  grid-column: 9/span 2;
  -webkit-animation: moveDiag2 12s infinite ease-in-out 1.8s;
          animation: moveDiag2 12s infinite ease-in-out 1.8s;
}
@media (max-width: 768px) {
  #class .class-item:nth-of-type(11) {
    grid-column: 5/span 3;
  }
}
@media (max-width: 500px) {
  #class .class-item:nth-of-type(11) {
    grid-column: 1/span 3;
  }
}
@-webkit-keyframes moveUp {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -30px);
  }
}
@keyframes moveUp {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -30px);
  }
}
@-webkit-keyframes moveDown {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 30px);
  }
}
@keyframes moveDown {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 30px);
  }
}
@-webkit-keyframes moveLeft {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 0);
  }
}
@keyframes moveLeft {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 0);
  }
}
@-webkit-keyframes moveRight {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -30px);
  }
}
@keyframes moveRight {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -30px);
  }
}
@-webkit-keyframes moveDiag1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, -25px);
  }
}
@keyframes moveDiag1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, -25px);
  }
}
@-webkit-keyframes moveDiag2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 25px);
  }
}
@keyframes moveDiag2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 25px);
  }
}

@media (max-width: 768px) {
  #class .class-item,
#class .class-item * {
    animation: none !important;
    -webkit-animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}
.close-btn {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.close-btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
}
.close-btn span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.close-btn span:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
}

.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.modal-wrapper.is-open {
  display: flex !important;
}
.modal-content {
  background: var(--main-color2);
  color: #fff;
  width: 1000px;
  max-width: 90%;
  padding: 40px;
  max-height: 80vh;
  position: relative;
  text-align: center;
}

.class-name {
  font-size: 3rem;
  margin-bottom: 24px;
  font-family: var(--font-en);
  letter-spacing: 0.1rem;
}
.class-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 3px;
}
.class-txt {
  margin-bottom: 24px;
}

.coach {
  margin-bottom: 8px;
}

.info {
  margin: 0 auto;
  padding-top: 100px;
}
.info .info-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 400px;
}
@media (max-width: 768px) {
  .info .info-list {
    flex-direction: column;
  }
}
.info .info-list li {
  width: 30%;
  border: 1px solid #fff;
  box-shadow: 2px 3px 3px #ccc;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .info .info-list li {
    width: 80%;
    margin-bottom: 30px;
  }
}
.info .info-list li p {
  position: relative;
  z-index: 2;
}
.info .info-list .btn2 {
  display: block;
  width: 100%;
  height: 200px;
  font-family: var(--font-en);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  outline: none;
  transition: all 0.3s ease;
  color: #fff;
  z-index: 1;
}
@media (max-width: 768px) {
  .info .info-list .btn2 {
    height: 180px;
    padding: 40px;
  }
}
.info .info-list .btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -170%;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
  z-index: 0;
}
.info .info-list .btn2:hover::before {
  left: -20%;
}
.info .info-list .btn2:hover {
  color: var(--main-color);
}
.info-title {
  font-size: 1.75rem;
  font-weight: normal;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.info-jp {
  font-family: var(--font-jp);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.info-bg {
  background: url("../../img/dancepct.jpg") center center/cover no-repeat;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}

.position {
  position: relative;
  z-index: 20;
}

#news {
  margin: 200px auto 0;
  text-align: center;
  padding-top: 100px;
}
#news .news-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  text-align: left;
}
@media (max-width: 768px) {
  #news .news-info {
    flex-direction: column;
  }
}
#news .news-info dt {
  width: 25%;
  border-bottom: 1px solid var(--main-color);
  padding-block: 15px;
}
@media (max-width: 768px) {
  #news .news-info dt {
    width: 100%;
    padding-block: 15px 0;
    border-bottom: none;
  }
}
#news .news-info dd {
  width: 75%;
  padding-block: 15px;
  border-bottom: 1px solid var(--main-color);
}
@media (max-width: 768px) {
  #news .news-info dd {
    width: 100%;
  }
}
#news .news-info dd span {
  display: block;
  color: var(--accent-color);
  font-family: var(--font-en);
  margin-bottom: 10px;
}
#news .read-more {
  position: relative;
  margin-top: 10px;
  font-family: var(--font-en);
}

#access {
  margin: 200px auto;
  text-align: center;
  padding-top: 100px;
}
@media (max-width: 768px) {
  #access {
    margin-block: 150px;
  }
}
#access iframe {
  width: 100%;
}
#access .access-info {
  width: min(90%, 800px);
  margin: 0 auto;
  text-align: left;
}
#access .access-info .address {
  margin-block: 25px 15px;
}
#access .access-info p {
  margin-bottom: 15px;
}
#access .access-info .google-map {
  color: #ccc;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.5s;
}
#access .access-info .google-map::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  top: 50%;
  right: -12px;
  transform: translateY(-50%) rotate(45deg);
}
#access .access-info .google-map:hover {
  color: #333;
}
#access .access-info .google-map:hover::after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}

#instructor {
  text-align: center;
}
#instructor .instructor-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 30px 15px;
  margin: 0 auto;
}
#instructor .instructor-inner li {
  border: 1px solid var(--text-color);
  padding-block: 20px;
}
#instructor .instructor-inner li:hover {
  transform: scale(1.1);
}
#instructor .box-top {
  display: flex;
  width: 100%;
}
#instructor .instructor-pct {
  width: 30%;
  margin: 10px;
}
#instructor .instructor-pct img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
#instructor .instructor-info {
  width: 70%;
}
#instructor .instructor-info li {
  opacity: 0;
}
#instructor .instructor-info .name {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
#instructor .instructor-info dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-left: 10px;
  font-family: var(--font-en);
}
#instructor .instructor-info dl dt {
  width: 35%;
  color: var(--accent-color);
}
#instructor .instructor-info dl dd {
  width: 65%;
  font-size: 1.125rem;
}
#instructor .txt {
  padding: 5px;
}

.fadeUp {
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#pricing {
  text-align: center;
}
#pricing .price-box {
  display: block;
}
#pricing .price-box:hover {
  transform: scale(1.1);
}
#pricing .price-item {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--main-color);
  border-radius: 15px;
  box-shadow: 2px 4px 4px #ccc;
  padding: 30px 40px;
  margin: 0 auto 30px;
}
@media (max-width: 500px) {
  #pricing .price-item {
    padding: 30px 20px;
  }
}
#pricing .price-item dt span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#pricing .price-item dd span {
  margin-right: 10px;
}

#news2 {
  text-align: center;
}
#news2 .news-info {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
@media (max-width: 500px) {
  #news2 .news-info {
    flex-direction: column;
  }
}
#news2 .news-info dt {
  width: 25%;
  padding: 0 10px 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
}
@media (max-width: 500px) {
  #news2 .news-info dt {
    width: 100%;
    margin-bottom: 0px;
    padding-bottom: 10px;
    border-bottom: none;
  }
}
#news2 .news-info dd {
  width: 75%;
  margin-bottom: 30px;
  padding: 0 10px 15px;
  border-bottom: 1px solid #333;
}
@media (max-width: 500px) {
  #news2 .news-info dd {
    width: 100%;
  }
}
#news2 .news-info dd span {
  display: block;
  color: var(--accent-color);
  margin-bottom: 10px;
}

#faq {
  text-align: center;
}
#faq .accordion-area {
  max-width: 1000px;
  margin-inline: auto;
  text-align: left;
  margin-bottom: 20px;
}
#faq .faq-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  font-size: 1.125rem;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 500px) {
  #faq .faq-title {
    font-size: 1rem;
  }
}
#faq .faq-title p {
  display: flex;
  justify-content: flex-start;
  justify-items: center;
}
#faq .faq-title .q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin-right: 10px;
  font-size: 0.875rem;
  flex-shrink: 0;
}
#faq .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  margin: 10px 10px 0 0;
}
#faq .close .arrow {
  transform: rotate(225deg);
}
#faq .box {
  display: none;
  margin-bottom: 15px;
}
#faq .box .a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin-right: 10px;
  flex-shrink: 0;
}
#faq .box p {
  padding-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
#faq .box .link {
  padding: 10px 0 0 36px;
  color: #ccc;
  transition: all 0.5s;
  position: relative;
}
#faq .box .link::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: translateY(-50%) rotate(45deg);
  top: 20px;
  right: -10px;
}
#faq .box .link:hover {
  color: #333;
}
#faq .box .link:hover::after {
  border-color: #333;
}

#timetable {
  text-align: center;
}
#timetable .tt-pc1, #timetable .tt-pc2 {
  margin-inline: auto;
  border-collapse: collapse;
  width: 90%;
}
@media (max-width: 768px) {
  #timetable .tt-pc1, #timetable .tt-pc2 {
    display: none;
  }
}
#timetable .tt-pc1 {
  margin-bottom: 100px;
}
#timetable .tt-tb1, #timetable .tt-tb2 {
  display: none;
}
@media (max-width: 768px) {
  #timetable .tt-tb1, #timetable .tt-tb2 {
    display: block;
    border-collapse: collapse;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 500px) {
  #timetable .tt-tb1, #timetable .tt-tb2 {
    display: none;
  }
}
#timetable .tt-tb1 {
  margin-bottom: 50px;
}
#timetable .tt-sp1, #timetable .tt-sp2 {
  display: none;
}
@media (max-width: 500px) {
  #timetable .tt-sp1, #timetable .tt-sp2 {
    display: block;
    border-collapse: collapse;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#timetable .tt-sp1 {
  margin-bottom: 30px;
}
#timetable .main-line {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px;
}
#timetable .main-line2 {
  border-bottom: 1px solid #333;
  padding: 10px;
}
#timetable .sub-line {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #333;
  padding: 10px;
}
#timetable tr:last-child .main-line, #timetable tr:last-child .main-line2 {
  border-bottom: none;
}
#timetable tr:last-child .sub-line {
  border-bottom: none;
}

#privacypolicy {
  text-align: center;
}
#privacypolicy .pp-inner {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}
#privacypolicy .pp-inner p {
  margin-bottom: 10px;
}
#privacypolicy .pp-inner ul li {
  list-style-type: disc;
  margin: 0 0 10px 15px;
}
#privacypolicy .pp-title {
  font-size: 1.25rem;
  margin-block: 40px 20px;
}
@media (max-width: 768px) {
  #privacypolicy .pp-title {
    font-size: 1.125rem;
  }
}
#privacypolicy .pp-address li {
  list-style: none;
}

#contact {
  text-align: center;
}

.contact-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.form-label {
  font-weight: normal;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .form-label {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .form-label {
    width: 100%;
  }
}
.form-label .must {
  display: inline-block;
  margin-left: 20px;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 0.75rem;
  padding-inline: 5px;
  border-radius: 5px;
}
.form-input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
}
@media (max-width: 500px) {
  .form-input {
    width: 100%;
  }
}
.form a {
  border-bottom: 1px solid #ccc;
  transition: all 0.5s;
}
.form a:hover {
  border-bottom: 1px solid #333;
}
.form-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.form-text .wpcf7-form-control-wrap {
  width: 40px;
}
.form-text a {
  border-bottom: 1px solid #333;
  transition: all 0.5s;
}
.form-text a:hover {
  color: #ccc;
  border-bottom: 1px solid #ccc;
}
.form-textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 5rem;
}
@media (max-width: 500px) {
  .form-textarea {
    width: 100%;
  }
}

.checkbox {
  margin-right: 10px;
}

.contact-submit {
  display: inline-block;
  width: 50%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 15px;
  padding: 15px 40px;
  margin: 0 auto;
  transition: all 0.5s;
}
.contact-submit:hover {
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.wpcf7-checkbox {
  width: 100%;
}
.wpcf7-form-control-wrap {
  width: 60%;
}
@media (max-width: 500px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  right: 0;
}

.box {
  position: relative;
}

.policy-box {
  display: flex;
}

#joinnow {
  text-align: center;
}

.form-select {
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
}

.experience {
  display: flex;
  align-items: center;
  gap: 75px;
}
.experience-inner {
  display: flex;
  justify-content: flex-start;
  width: 60%;
}

.wpcf7-form-control {
  width: 100%;
}
/*# sourceMappingURL=main.css.map */