html {
  font-size: 0.521vw;
}

@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  line-height: 1;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  width: 16vw;
  opacity: 0;
  transform: translateY(6px);
  animation: preloaderFade 0.6s ease 0.1s forwards;
}
@media (max-width: 767px) {
  .preloader__logo {
    width: 17rem;
  }
}

body.preloader-debug .preloader {
  opacity: 1 !important;
  visibility: visible !important;
}
body.preloader-debug .preloader__logo {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes preloaderFade {
  to {
    opacity: 1;
    transform: none;
  }
}
.header__logo {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.is-loading .header__logo {
  opacity: 0;
  transform: translateY(8px);
}

body.is-loaded .header__logo {
  opacity: 1;
  transform: translateY(0);
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .pc_n {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sp_n {
    display: none !important;
  }
}

.header {
  padding-left: 2.604vw;
  padding-right: 2.604vw;
  height: 7.808vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header {
    height: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  height: 100%;
}
@media (max-width: 767px) {
  .header .header__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.header__logo {
  width: 24.302vw;
  position: relative;
}
@media (min-width: 768px) {
  .header__logo::after {
    content: "";
    position: absolute;
    background: url(../img/logo-text.png) no-repeat center center/cover;
    width: 6.573vw;
    height: 6.573vw;
    top: 50%;
    transform: translateY(-50%);
    left: -7.5vw;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 16.9rem;
  }
}

.header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.979vw;
}
@media (max-width: 767px) {
  .header__nav-list {
    gap: 3.8rem;
  }
}

.header__nav-item a {
  display: inline-block;
  font-size: 1.042vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .header__nav-item a {
    font-size: 2rem;
  }
}
.header__nav-item a:hover {
  color: #289DD3;
}

/* サブメニュー */
.header__nav-item--has-child {
  position: relative;
}

.header__nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1D2A55;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
}

.header__nav-item--has-child:hover .header__nav-submenu {
  opacity: 1;
  visibility: visible;
}

.header__nav-submenu-item {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  text-align: center;
}

.header__nav-submenu-item:last-child {
  border-bottom: none;
}

.header__nav-submenu-item a {
  display: block;
  padding: 8px 12px;
  font-size: 0.8vw;
  white-space: nowrap;
  color: #fff;
  transition: opacity 0.3s;
}

.header__nav-submenu-item a:hover {
  opacity: 0.7;
  color: #fff;
}

/* SPメニュー用サブメニュー */
.hamburger-nav-item--has-child {
  position: relative;
}

.hamburger-nav-submenu {
  padding-left: 20px;
  margin-top: 10px;
}

.hamburger-nav-submenu-item {
  list-style: none;
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hamburger-nav-submenu-item:last-child {
  border-bottom: none;
}

.hamburger-nav-submenu-item a {
  font-size: 0.9em;
  opacity: 0.9;
}

.header__buttons {
  display: flex;
  align-items: center;
}

.header__contact {
  margin-left: 2.083vw;
}
@media (max-width: 767px) {
  .header__contact {
    margin-left: 4rem;
  }
}
.header__contact a {
  width: 11.583vw;
  height: 3.646vw;
  border-radius: 1.823vw;
  display: flex;
  align-items: center;
  padding-left: 4.427vw;
  background: #1D2A55;
  font-size: 0.942vw;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.2;
  text-align: left;
}
@media (max-width: 767px) {
  .header__contact a {
    width: 28rem;
    height: 7rem;
    border-radius: 3.5rem;
    padding-left: 8.5rem;
    font-size: 2rem;
  }
}
.header__contact a::after {
  content: "";
  position: absolute;
  background: url(../img/contact-img.png) no-repeat center center/cover;
  width: 3.646vw;
  height: 3.125vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0.26vw;
}
@media (max-width: 767px) {
  .header__contact a::after {
    width: 7rem;
    height: 6rem;
    left: 0.5rem;
  }
}
.header__contact a::before {
  content: "";
  position: absolute;
  background: url(../img/line-btn.png) no-repeat center center/cover;
  width: 0.521vw;
  height: 0.469vw;
  right: 1.068vw;
}
@media (max-width: 767px) {
  .header__contact a::before {
    width: 1rem;
    height: 0.9rem;
    right: 2.05rem;
  }
}

.header__menu-button {
  width: 3.646vw;
  height: 3.646vw;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  margin-left: 2.083vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  z-index: 1001;
  box-shadow: 0px 0px 1rem rgba(0, 59, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .header__menu-button {
    position: absolute;
    right: -4.802vw;
  }
}
@media (max-width: 767px) {
  .header__menu-button {
    width: 5rem;
    height: 5rem;
    margin-left: 0rem;
    top: auto;
    transform: none;
  }
}
.header__menu-button .hamburger {
  width: 2.083vw;
  height: 1.042vw;
  position: relative;
}
@media (max-width: 767px) {
  .header__menu-button .hamburger {
    width: 3rem;
    height: 1.5rem;
  }
}
.header__menu-button .hamburger span {
  display: block;
  width: 100%;
  height: 0.3rem;
  background: #1D2A55 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header__menu-button .hamburger span:hover {
  background: #1D2A55 0% 0% no-repeat padding-box;
}
.header__menu-button .hamburger span:nth-child(1) {
  top: -0.208vw;
}
@media (max-width: 767px) {
  .header__menu-button .hamburger span:nth-child(1) {
    top: -0.4rem;
  }
}
.header__menu-button .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__menu-button .hamburger span:nth-child(3) {
  bottom: -0.156vw;
}
@media (max-width: 767px) {
  .header__menu-button .hamburger span:nth-child(3) {
    bottom: -0.3rem;
  }
}
.header__menu-button .hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__menu-button .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__menu-button .hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.hamburger-menu.active {
  opacity: 1;
  visibility: visible;
}

.hamburger-nav {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hamburger-nav .header__contact {
  margin-left: 0;
}

.hamburger-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hamburger-nav-item {
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .hamburger-nav {
    top: 50%;
  }
  .hamburger-nav-item {
    margin-bottom: 3rem;
  }
}
.hamburger-nav-item a {
  font-size: 1.563vw;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .hamburger-nav-item a {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.hamburger-nav-item a:hover {
  color: #289DD3;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .header__nav-wrap .header__nav {
    display: none;
  }
  .header__menu-button {
    display: flex;
  }
}
@media (min-width: 768px) {
  .header__menu-button {
    display: flex;
  }
  .hamburger-menu {
    display: block;
  }
}
.main-section--col--two {
  width: 100% !important;
}

.inner, .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 124rem;
}
@media (max-width: 767px) {
  .inner, .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.title {
  font-family: "Poppins", sans-serif;
  font-size: 10rem;
  font-weight: 500;
  color: #1D2A55;
  overflow: hidden;
}
.title .blue {
  color: #1D2A55;
}
.title span {
  display: inline-block;
}
@media (max-width: 767px) {
  .title {
    font-size: 5rem;
  }
}

.section {
  position: relative;
}
.section::after {
  position: absolute;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  left: 2.5rem;
  top: 19.4rem;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .section::after {
    font-size: 1.2rem;
    right: 0rem;
    top: 10.6rem;
    left: auto;
  }
}
.section::before {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #289DD3;
  border-radius: 50%;
  left: 5.8rem;
  top: 13.6rem;
}
@media (max-width: 767px) {
  .section::before {
    width: 1rem;
    height: 1rem;
    right: 2rem;
    top: 5.9rem;
    left: auto;
  }
}

.wrap {
  overflow: hidden;
}

.common__btn {
  position: relative;
  z-index: 2;
}
.common__btn span:nth-of-type(1) {
  width: 30rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 500;
  background-color: #1D2A55;
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .common__btn span:nth-of-type(1) {
    height: 7rem;
    font-size: 1.8rem;
  }
}
.common__btn span:nth-of-type(2) {
  width: 10rem;
  height: 10rem;
  margin-left: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1D2A55;
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .common__btn span:nth-of-type(2) {
    height: 7rem;
  }
}
.common__btn span:nth-of-type(2) img {
  width: 2.5rem;
  height: 1.5rem;
}

.footer__bg {
  margin-top: 7.813vw;
}
@media (max-width: 767px) {
  .footer__bg {
    margin-top: 8rem;
  }
}

.footer {
  background-color: #1D2A55;
  margin-bottom: 11rem;
}
@media (max-width: 767px) {
  .footer {
    margin-bottom: 7rem;
  }
}

.footer__inner {
  position: relative;
}

.footer__logo {
  max-width: 23.229vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -1.615vw;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 23rem;
    top: 0;
  }
}

.footer__company-name {
  font-size: 1.042vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
  margin-top: 1.719vw;
}
@media (max-width: 767px) {
  .footer__company-name {
    margin-top: 3.3rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.footer__address {
  font-size: 0.833vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin-top: 1.406vw;
}
@media (max-width: 767px) {
  .footer__address {
    margin-top: 2.7rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.footer__nav {
  margin-top: 2.656vw;
  padding-top: 2.917vw;
  padding-bottom: 2.76vw;
  border-top: 0.1rem solid #fff;
  border-bottom: 0.1rem solid #fff;
}
@media (max-width: 767px) {
  .footer__nav {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    margin-top: 5.1rem;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 2rem;
  }
}

.footer__nav-item a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer__nav-item a {
    font-size: 1.6rem;
  }
}

.footer__copyright {
  margin-top: 1.198vw;
  font-size: 0.729vw;
  font-weight: 200;
  text-align: right;
  letter-spacing: 0.1em;
  color: #fff;
  padding-bottom: 1.042vw;
}
@media (max-width: 767px) {
  .footer__copyright {
    line-height: 1.5;
    margin-top: 2.3rem;
    font-size: 1.4rem;
    padding-bottom: 2rem;
  }
}

.footer__page-top {
  position: absolute;
  width: 3.125vw;
  height: 3.125vw;
  transition: all 0.3s;
  bottom: 12.24vw;
  right: 1.094vw;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .footer__page-top {
    width: 6rem;
    height: 6rem;
    transition: all 0.3s;
    bottom: 23.5rem;
    right: 2.1rem;
  }
}
.footer__page-top:hover {
  opacity: 0.7;
}

.page-header {
  margin-top: 7vw;
  height: 52.9rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-header {
    height: 33.6rem;
    margin-top: 4.9rem;
  }
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}
.page-header .page-header-title {
  font-size: 3.2rem;
  position: relative;
  z-index: 3;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.page-header-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.site-body-container {
  padding-left: 0;
  padding-right: 0;
}

.wrap {
  overflow: hidden;
  margin: 0 !important;
}

#vk-mobile-nav {
  display: none;
}

.breadcrumb-list {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .breadcrumb-list {
    flex-wrap: wrap;
  }
}
.breadcrumb-list .breadcrumb-list__item--home {
  text-decoration: underline;
  position: relative;
}
.breadcrumb-list .breadcrumb-list__item--home::after {
  content: "/";
  position: absolute;
  right: -1.1rem;
}

.header__nav-wrap-inner {
  position: relative;
}

.page-bottom {
  height: 9rem;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.page-bottom .inner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}
.page-bottom .inner::after {
  content: "";
  position: absolute;
  background: url(../img/cta-page.png) no-repeat center center/cover;
  width: 36.2rem;
  height: 13.2rem;
  bottom: -0.2rem;
  left: -4.9rem;
}
.page-bottom .page-bottom-sp {
  margin-left: 7.2rem;
  padding-bottom: 0;
}

.page-bottom__text {
  font-size: 1.6rem;
  color: #1A1A1A;
  margin-top: 1.5rem;
}

.page-bottom__tel {
  font-size: 4rem;
  color: #1D2A55;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  margin-top: 0.5rem;
  display: inline-block;
  padding-left: 3.5rem;
}
.page-bottom__tel:hover {
  color: #1D2A55;
}
.page-bottom__tel::after {
  content: "";
  position: absolute;
  background: url(../img/tel.png) no-repeat center center/cover;
  width: 3rem;
  height: 4rem;
  top: 50%;
  transform: translateY(-50%);
  left: -0.1rem;
}

.page-bottom__hours {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 0.9rem;
  margin-left: 7rem;
}

.page-bottom__image {
  width: 26.7rem;
  height: 8.9rem;
  position: relative;
  left: 2.1rem;
  margin-left: 7rem;
}

.page-bottom .page-bottom-sp {
  width: auto;
  position: static;
}

@media (min-width: 768px) {
  .page-bottom-sp {
    display: none;
  }
}

.page-bottom-sp-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: 7.4rem;
}

.page-bottom-sp {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  justify-content: center;
  height: 8rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .page-bottom-sp {
    padding-bottom: 0;
  }
}

.page-bottom-sp__monthly {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.25;
}

.page-bottom-sp__entry-fee {
  font-size: 1.2rem;
  font-weight: 400;
}

.page-bottom-sp__btn {
  width: 22.8rem;
  height: 5rem;
  border-radius: 0.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: transparent linear-gradient(90deg, #65C2EE 0%, #2B9ED5 51%, #BAE0F2 100%) 0% 0% no-repeat padding-box;
  font-size: 2rem;
}
.page-bottom-sp__btn:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .page_top_btn {
    bottom: 7.5rem;
  }
}

.header__seminar {
  display: none;
}
@media (max-width: 767px) {
  .header__seminar {
    width: 6.5rem;
    height: 5.5rem;
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1D2A55;
    margin-right: 1rem;
  }
}

@media (max-width: 767px) {
  .header__seminar-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  margin-top: 6rem;
}
.page-numbers li {
  font-size: 2rem;
  font-weight: bold;
  color: #1D2A55;
}/*# sourceMappingURL=common.css.map */