@charset "UTF-8";
#onevex {
  font-family: "Zen Old Mincho", serif !important;
}
#onevex main {
  font-size: 150%;
}
#onevex main a {
  color: #A91E1E;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.sp {
  display: none;
}

.Playfair, .base_block h2.title strong, nav div .menu_lists ul li a b, nav div h2 {
  font-family: "Playfair Display", serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}

main {
  width: 520px;
  position: absolute;
  z-index: 2;
  box-shadow: 0 0 5px white;
  background-color: #1f1f1f;
  left: calc(50% + 300px);
  top: 0px;
  transform: translateX(-50%);
  min-height: 100vh;
}
@media all and (max-width: 1200px) {
  main {
    left: 50%;
  }
}

.space {
  display: block;
  height: 20px;
}

.btn {
  padding: 5%;
}
.btn a {
  display: flex;
  text-decoration: none !important;
  justify-content: center;
  width: 100%;
  padding: 3%;
  border-radius: 10px;
  background-color: #A91E1E;
  position: relative;
  color: white !important;
  top: 0;
  transition: 0.3s;
}
.btn a .image {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn a .text {
  padding: 0;
  padding-left: 5%;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.btn a .text strong {
  font-size: 200%;
  letter-spacing: 0;
}
.btn a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  border-bottom: 5px solid #68130f;
  transition: 0.3s;
}
.btn a:hover {
  top: 5px;
}
.btn a:hover:after {
  border-width: 0px;
}

nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 50%;
  padding: 5% 0 5% 5%;
  z-index: 5;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
nav div {
  width: 100%;
  height: 100%;
}
nav div.js-active {
  -webkit-animation: fuwatto 0.3s linear 0.5s normal both;
          animation: fuwatto 0.3s linear 0.5s normal both;
}
nav div h1 img {
  max-width: 300px;
}
nav div h2 {
  font-size: 500%;
  font-weight: bold;
}
nav div .menu_lists {
  display: flex;
  gap: 1%;
}
nav div .menu_lists ul {
  width: 100%;
  padding: 5% 0;
}
nav div .menu_lists ul li {
  position: relative;
}
nav div .menu_lists ul li a {
  padding-left: 8%;
  display: block;
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s;
}
nav div .menu_lists ul li a:after {
  content: "";
  width: 1px;
  border-left: 1px solid #A91E1E;
  height: 75%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
}
nav div .menu_lists ul li a b, nav div .menu_lists ul li a span {
  display: block;
}
nav div .menu_lists ul li a b {
  font-size: 250%;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
}
nav div .menu_lists ul li a:hover b {
  color: #A91E1E;
}
nav div .menu_lists ul li a:hover:after {
  height: 100%;
}

#pc_slide_back {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-image: url("../img/pc_back.webp");
  background-size: cover;
  background-size: cover;
  background-position: center;
}
#pc_slide_back:after {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.hamburger-menu {
  display: block;
  display: none;
  position: fixed;
  transition: all 0.5s;
  z-index: 100;
  right: 0;
  top: 0;
}
.hamburger-menu p {
  position: absolute;
  font-size: 60%;
  top: 0;
}
.hamburger-menu .menu-btn.on span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  box-shadow: none;
  width: 25px;
}
.hamburger-menu .menu-btn.on span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.5s;
  width: 25px;
}
.hamburger-menu .menu-btn.on span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.5s;
  width: 25px;
}
.hamburger-menu .menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  transition: all 0.5s;
}
.hamburger-menu .menu-btn span, .hamburger-menu .menu-btn span:before, .hamburger-menu .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  transition: all 0.5s;
}
.hamburger-menu .menu-btn span:before {
  bottom: 8px;
  right: 0;
}
.hamburger-menu .menu-btn span:after {
  top: 8px;
  right: 0;
}

#mv {
  position: relative;
  overflow: hidden;
}
#mv:after {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 12%, rgba(0, 0, 0, 0.5) 30%, rgb(0, 0, 0) 100%);
  -webkit-animation: mv_shadow 1s linear 0s normal both;
          animation: mv_shadow 1s linear 0s normal both;
}
#mv .tate_text {
  z-index: 2;
  position: absolute;
  right: 5%;
  top: 5%;
  height: 80%;
}
#mv .tate_text img {
  height: 100%;
}
@-webkit-keyframes mv_shadow {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes mv_shadow {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

section {
  padding-bottom: 10%;
}
section h2, section title {
  font-size: 200%;
  text-align: center;
  margin-bottom: 5%;
  word-break: auto-phrase;
  padding: 5%;
}

.image {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.image img.js-target {
  opacity: 0;
  transform: scale(1.5);
  transform-origin: center;
  transition: 1s;
}
.image img.js-target.js-active {
  opacity: 1;
  transform: scale(1);
}

.base_block {
  color: white;
}
.base_block.white {
  background-color: white;
  color: #1F1F1F;
}
.base_block h2.title {
  padding: 10% 0;
  margin-bottom: 0;
}
.base_block h2.title strong, .base_block h2.title span {
  line-height: 1;
  display: block;
}
.base_block h2.title strong {
  opacity: 0;
  font-size: 150%;
  font-weight: bold;
}
.base_block h2.title strong.js-active {
  -webkit-animation: fuwatto 0.3s linear 0.5s normal both;
          animation: fuwatto 0.3s linear 0.5s normal both;
}
.base_block h2.title span {
  line-height: 2;
  font-size: 60%;
}
.base_block h2.title i {
  font-style: normal;
  color: #A91E1E;
}
.base_block .text {
  padding: 0 5% 5%;
}
.base_block .text p {
  font-size: 100%;
}
.base_block .tips_block {
  padding: 0 5% 5%;
}
.base_block .tips_block ul li {
  font-size: 100%;
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}
.base_block .tips_block ul li:before {
  content: "※";
}
.base_block .marks {
  padding: 0 5% 10%;
}
.base_block .marks li {
  font-size: 100%;
  text-indent: -1.8rem;
  margin-left: 1.8rem;
  word-break: auto-phrase;
  line-height: 1.5;
  margin-bottom: 3%;
}
.base_block .marks li:before {
  content: "　";
  background-image: url("../img/mark.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.3rem;
}

.schedule_block .box {
  background-color: #A91E1E;
  padding: 5% 10%;
  margin: 5%;
  position: relative;
}
.schedule_block .box:after {
  content: "";
  width: calc(95% - 2px);
  height: calc(95% - 2px);
  border: 1px solid white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.schedule_block .box h3 {
  text-align: center;
  font-size: 350%;
  font-weight: bold;
}
.schedule_block .box .sche_block {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2%;
}
.schedule_block .box .sche_block h4 {
  background-color: #0E0144;
  padding: 1%;
  font-size: 120%;
  font-weight: bold;
}
.schedule_block .box .sche_block .dates {
  padding: 5% 0;
}
.schedule_block .box .sche_block .dates li {
  font-size: 120%;
}
.schedule_block .box .sche_block .dates.end li {
  text-decoration: line-through;
}
.schedule_block .box .sche_block .dates.end:before {
  content: "受付終了";
  padding: 1rem 0;
  font-weight: bold;
  font-size: 150%;
}

.access_block {
  padding-bottom: 0;
}
.access_block .tips_block {
  padding-bottom: 10%;
}

.fee_blocks {
  padding: 10% 0%;
}
.fee_blocks .box {
  color: #1F1F1F;
  background-color: white;
  padding: 5% 10%;
  margin: 5%;
  position: relative;
}
.fee_blocks .box:after {
  content: "";
  width: calc(95% - 2px);
  height: calc(95% - 2px);
  border: 1px solid #1F1F1F;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fee_blocks .box .fee_block {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 5%;
  margin-bottom: 5%;
  position: relative;
}
.fee_blocks .box .fee_block:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 2px solid #A91E1E;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fee_blocks .box .fee_block:after {
  content: "";
  width: 40%;
  height: 1px;
  border-bottom: 2px solid #1F1F1F;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fee_blocks .box .fee_block.child:before, .fee_blocks .box .fee_block.child:after {
  display: none;
}
.fee_blocks .box .fee_block h3 {
  width: 40%;
}
.fee_blocks .box .fee_block h3 strong, .fee_blocks .box .fee_block h3 span {
  display: block;
}
.fee_blocks .box .fee_block h3 strong {
  font-weight: bold;
}
.fee_blocks .box .fee_block h3 span {
  font-size: 80%;
}
.fee_blocks .box .fee_block .fee_text h4 strong, .fee_blocks .box .fee_block .fee_text h4 span {
  display: block;
}
.fee_blocks .box .fee_block .fee_text h4 strong {
  font-weight: bold;
  font-size: 150%;
  line-height: 1;
}
.fee_blocks .box .fee_block .fee_text h4 span {
  font-size: 80%;
}

.osusume_block {
  background-color: white;
  color: #1f1f1f;
  padding: 15% 0;
}
.osusume_block h2.title {
  font-size: 100%;
}
.osusume_block h3 {
  text-align: center;
  margin-bottom: 10%;
}
.osusume_block .osusume_image {
  padding-bottom: 5%;
  background-image: url("../img/osusume_img_back.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.osusume_block .osusume_image .image {
  margin: 0 5%;
}

.learn_block .learn_box {
  margin: 0 5% 5%;
}
.learn_block .learn_box .block {
  padding: 5%;
  margin-bottom: 10%;
  background-image: url("../img/back_img01.webp");
  color: #1F1F1F;
  text-align: center;
}
.learn_block .learn_box .block h3 {
  font-size: 150%;
  font-weight: bold;
  padding: 3% 0;
  opacity: 0;
}
.learn_block .learn_box .block h3.js-active {
  -webkit-animation: fuwatto 0.3s linear 0s normal both;
          animation: fuwatto 0.3s linear 0s normal both;
}
.learn_block .learn_box .block h4 {
  font-size: 120%;
  font-weight: 500;
  padding: 3% 0;
}
.learn_block .learn_box .block p {
  padding: 5% 0;
}
.learn_block .learn_box .block .time {
  opacity: 0;
  margin: 5% 0;
  display: inline-block;
  padding: 1% 5%;
  min-width: 60%;
  color: white;
  background-color: #1F1F1F;
}
.learn_block .learn_box .block .time.js-active {
  -webkit-animation: fuwatto 0.5s linear 0.5s normal both;
          animation: fuwatto 0.5s linear 0.5s normal both;
}

.experience_block {
  padding: 10% 0;
}
.experience_block h3 {
  padding: 0 5% 5%;
  font-size: 110%;
}
.experience_block .exp_block {
  padding: 5%;
}
.experience_block .exp_block .block {
  background-color: #A91E1E;
  color: white;
  margin-bottom: 8%;
}
.experience_block .exp_block .block .text {
  padding: 3% 5% 5%;
}
.experience_block .exp_block .block .text h4 {
  padding: 0 0 2%;
  text-align: center;
  border-bottom: 1px solid white;
  margin-bottom: 5%;
  font-size: 130%;
  letter-spacing: 0.2rem;
  font-weight: bold;
}

.instructor_block .image {
  padding: 0 5% 5%;
}
.instructor_block .instructor_text p {
  padding: 0 5% 5%;
  font-size: 85%;
}

.cautions_block {
  background-image: url("../img/cautions_back.png");
  background-size: cover;
  color: #1F1F1F;
  padding: 10% 5%;
}
.cautions_block .caution_inner_block {
  padding: 5%;
  background-color: rgba(255, 255, 255, 0.65);
}
.cautions_block .caution_inner_block .caution_list {
  padding: 5%;
  font-size: 75%;
}
.cautions_block .caution_inner_block .caution_list ul {
  padding-left: 2rem;
  list-style-type: disc;
}
.cautions_block .caution_inner_block .caution_list ul li {
  margin-bottom: 2%;
}

.bonus_block {
  background-color: #0E0144;
  position: relative;
  padding-bottom: 0;
}
.bonus_block:after {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background-color: #1F1F1F;
  bottom: 0;
  left: 0;
}
.bonus_block .movie {
  padding: 0 5% 5%;
}
.bonus_block .movie img {
  max-width: 40%;
}
.bonus_block .catch_text {
  margin: 10%;
  padding: 0;
  position: relative;
}
.bonus_block .catch_text:before {
  content: "";
  width: 10%;
  padding-top: 10%;
  border-top: 1px solid white;
  border-left: 1px solid white;
  position: absolute;
  left: 0;
  top: 0;
}
.bonus_block .catch_text:after {
  content: "";
  width: 10%;
  padding-top: 10%;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  position: absolute;
  right: 0;
  bottom: 0;
}
.bonus_block .catch_text p {
  display: block;
  position: relative;
  padding: 8% 6%;
}
.bonus_block .catch_text p:before {
  content: "";
  width: 10%;
  padding-top: 10%;
  border-top: 1px solid white;
  border-right: 1px solid white;
  position: absolute;
  right: 0;
  top: 0;
}
.bonus_block .catch_text p:after {
  content: "";
  width: 10%;
  padding-top: 10%;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  position: absolute;
  left: 0;
  bottom: 0;
}
.bonus_block .catch {
  text-align: center;
  padding: 5%;
}
.bonus_block .catch p {
  display: block;
  background-color: #1F1F1F;
  color: white;
  padding: 2% 0;
  border-radius: 1rem;
  font-size: 90%;
}
.bonus_block .btn.contact {
  position: relative;
  z-index: 2;
}

footer {
  background-size: cover;
  color: white;
  padding: 5% 0 0;
}
footer .logo {
  text-align: center;
  margin-bottom: 10%;
}
footer .logo img {
  max-width: 60%;
  margin: auto;
}
footer .links {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5%;
  margin: 5%;
}
footer .links a {
  width: 100%;
  border: 1px solid white;
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: white !important;
}
footer .links a img {
  transition: 0.3s;
}
footer .links a:hover .image img {
  transform: rotate(360deg);
}
footer address {
  padding: 5%;
  font-size: 80%;
}
footer .gaiyou {
  font-size: 80%;
  padding: 5%;
}
footer .gaiyou dl {
  display: flex;
  margin-bottom: 5%;
  flex-wrap: wrap;
}
footer .gaiyou dl dt {
  width: 25%;
}
footer .gaiyou dl dd {
  width: 75%;
}
footer .onevex_foot_text {
  margin: 0 5% 5%;
  padding: 5%;
  font-size: 80%;
  border: 1px solid white;
}
footer .copyright {
  border-top: 1px solid white;
  text-align: center;
  padding: 2% 0;
  margin-top: 10%;
  font-size: 60%;
}
footer .tips {
  display: block;
}
footer .tips p {
  font-size: 70%;
  text-indent: -2.5%;
  padding-left: 4%;
}

.totop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  text-align: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  transition: 1s;
}
.totop:hover span {
  transform: translate(-50%, -50%) rotate(360deg);
}
.totop:hover:before {
  top: 20%;
}
.totop:before {
  content: "";
  width: 20%;
  padding-top: 20%;
  border-top: 1px solid #1f1f1f;
  border-left: 1px solid #1f1f1f;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: 0.3s;
}
.totop span {
  transition: 0.5s;
  position: absolute;
  font-size: 70%;
  line-height: 1;
  top: 60%;
  left: 50%;
  color: #1f1f1f;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 700px) {
  .totop {
    bottom: -15vh;
    z-index: 5;
  }
  .totop span {
    font-size: 100%;
  }
  .totop.on {
    bottom: 11vh;
  }
}

@media all and (max-width: 1200px) {
  nav {
    top: 0;
    left: inherit;
    right: -100vw;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translate(0);
    z-index: 100;
    opacity: 0;
    transition: 0.5s;
  }
  nav .js-target {
    opacity: 0;
  }
  nav.on {
    right: 0;
    opacity: 1;
  }
  nav .tips {
    display: block;
  }
  nav .tips p {
    font-size: 60%;
    text-indent: -2%;
    padding-left: 4%;
  }
}
@media all and (max-width: 1200px) and (max-height: 800px) {
  nav ul {
    padding: 5% 0;
  }
}
@media all and (max-width: 1200px) {
  .hamburger-menu {
    display: block;
  }
}
@media all and (max-width: 520px) and (orientation: portrait) {
  .anchor {
    padding-top: 80px;
    margin-bottom: -80px;
    display: block;
  }
  .sp {
    display: inline-block;
  }
  .pc {
    display: none;
  }
  body {
    font-size: 3.1vw;
  }
  main {
    padding-top: 50px;
    width: 100%;
  }
  #sp_title {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    background-color: #1f1f1f;
    z-index: 3;
  }
  #sp_title h1 {
    max-width: 60%;
  }
  nav {
    justify-content: flex-start;
    padding: 5%;
  }
  nav div h1 {
    max-width: 50vw;
  }
  nav div h1 img {
    max-width: 100%;
  }
  nav div h2 {
    font-size: 200%;
  }
  nav div .menu_lists {
    flex-direction: column;
    padding: 5% 0;
  }
  nav div .menu_lists ul {
    padding: 0;
  }
  nav div .menu_lists ul li a {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    justify-content: flex-start;
  }
  nav div .menu_lists ul li a:after {
    top: 12.5%;
  }
  nav div .menu_lists ul li a b {
    font-size: 150%;
  }
  nav div .menu_lists ul li a span {
    margin-left: 5%;
    font-size: 80%;
  }
  nav ul li a {
    padding: 3vw;
    padding-left: 25vw;
  }
  .base_block .tips_block {
    padding: 0 3% 5%;
  }
  .space {
    height: 5vw;
  }
  .hamburger-menu .menu-btn.on span:before, .hamburger-menu .menu-btn.on span:after {
    background-color: white;
  }
  #scroll_btn {
    width: 100%;
  }
}
@-webkit-keyframes fuwatto {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fuwatto {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */