@charset "UTF-8";
body {
  font-family: "Rethink Sans", "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

main {
  margin-top: 66px;
}
@media (min-width: 768px) {
  main {
    margin-top: 0;
  }
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

sup {
  font-size: 0.65rem;
}

.c_btn {
  background: #c83421;
  border-radius: 19px;
  text-align: center;
  transition: all 0.15s;
}
.c_btn:hover {
  background: #fff;
  outline: 1px solid #c83421;
}
.c_btn_text {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
.c_btn_link {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 1.25rem;
  cursor: pointer;
}
.c_btn_link:hover {
  color: #c83421;
}

.sectionSpacer {
  margin-top: 150px;
}
@media only screen and (max-width: 1200px) {
  .sectionSpacer {
    margin-top: 12.5vw;
  }
}
@media only screen and (max-width: 992px) {
  .sectionSpacer {
    margin-top: 15.1209677419vw;
  }
}
@media only screen and (max-width: 768px) {
  .sectionSpacer {
    margin-top: 16.9270833333vw;
  }
}
@media only screen and (max-width: 576px) {
  .sectionSpacer {
    margin-top: 20.8333333333vw;
  }
}

.c-description {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .c-description {
    font-size: 0.875rem;
  }
}

.contactSpacer {
  margin-top: 130px;
}

.fadeContents {
  transition: all 0.8s ease-in;
  opacity: 0;
  transform: translateY(6px);
}
.fadeContents.c-fade {
  opacity: 1;
  transform: none;
}

.nav-link {
  padding: 1.2rem;
  color: #333;
  font-weight: 600;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 120px;
  width: 100%;
  z-index: 1000;
}
.l-header_contents {
  width: 100%;
  align-items: baseline;
}
.l-header_img {
  width: 78px;
}
@media (min-width: 768px) {
  .l-header_img {
    width: 115px;
  }
}
.l-header_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  opacity: 0;
  background-color: #29abb9;
  z-index: 50;
  visibility: hidden;
  transition: all 0.7s;
}
@media (min-width: 1200px) {
  .l-header_nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    height: 100%;
  }
}
.l-header_navList {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  justify-content: center;
  height: 100%;
}
@media (min-width: 1200px) {
  .l-header_navList {
    flex-direction: row;
  }
}
.l-header_navApply {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .l-header_navApply {
    margin-bottom: 0;
  }
}
.l-header_navContact {
  background: #1d264d;
}
.l-header_navContact:hover {
  background: #fff;
  outline: 1px solid #1d264d;
}
.l-header_navContact_link:hover {
  color: #1d264d;
}
.l-header_mobileMenu_btn {
  background-color: unset;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 50;
}
@media (min-width: 1200px) {
  .l-header_mobileMenu_btn {
    display: none;
  }
}
.l-header_mobileMenu_btn span {
  background-color: #333;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.l-header_mobileMenu_btn span:last-child {
  margin-bottom: 0;
}

.menu-open .l-header_nav {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.menu-open .l-header_mobileMenu_btn > span {
  background-color: #333;
}
.menu-open .l-header_mobileMenu_btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .l-header_mobileMenu_btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .l-header_mobileMenu_btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

.p-top-hero {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  .p-top-hero {
    height: 100svh; /* 画面いっぱいに */
  }
}
.p-top-hero_img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.p-top-conceptInfo {
  background-color: #1c68a2;
  color: #fff;
  padding: 0.5rem;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.p-top-ConceptTx {
  font-size: 48px;
}
@media only screen and (max-width: 768px) {
  .p-top-ConceptTx {
    font-size: 4.9479166667vw;
  }
}
@media only screen and (max-width: 576px) {
  .p-top-ConceptTx {
    font-size: 36px;
    font-size: 6.25vw;
  }
}

.p-top-subConceptTx {
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .p-top-subConceptTx {
    font-size: 2.8645833333vw;
  }
}
@media only screen and (max-width: 576px) {
  .p-top-subConceptTx {
    font-size: 24px;
    font-size: 4.1666666667vw;
  }
}

.p-top-concept_feature {
  background: #29abb9;
  width: 100%;
}
@media (min-width: 1200px) {
  .p-top-concept_container {
    width: 1120px;
  }
}
.p-top-concept_list {
  width: 265px;
}
.p-top-concept_card {
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.3s;
  overflow: hidden;
}
.p-top-concept_card:hover {
  opacity: 0.7;
}
.p-top-concept_text {
  color: #fff;
}

.p-top-classAndLesson {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-classAndLesson_text {
    width: 50%;
  }
}

.p-top-access_container {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-access_container {
    width: 80%;
    margin: 0 auto;
  }
}
.p-top-access_text {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-access_text {
    width: 130%;
  }
}

div iframe {
  width: 100%;
  height: 300px;
}
@media (min-width: 992px) {
  div iframe {
    height: 450px;
  }
}

.l-footer {
  background: #888;
}
.l-footer_imgLogo {
  width: 130px;
}
.l-footer_imgSns {
  width: 35px;
}
@media (min-width: 768px) {
  .l-footer_imgSns {
    width: 45px;
  }
}

@media screen and (max-width: 1199px) {
  .l-footerNav .nav-link {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .p-top-dircetor_profileImg {
    width: 35%;
  }
}
.p-top-dircetor_img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-top-dircetor_img {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .p-top-dircetor_img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .p-top-dircetor_career {
    width: 60%;
  }
}

.responsive-img {
  aspect-ratio: 1/1; /* 正方形にしたい場合 */
  object-fit: contain;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.p-top-assosiateD_profileImgimg {
  width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-top-assosiateD_profileImgimg {
    width: 80%;
    text-align: start;
  }
}
@media (min-width: 992px) {
  .p-top-assosiateD_profileImgimg {
    width: 50%;
  }
}
.p-top-assosiateD_img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .p-top-assosiateD_img {
    width: 50%;
  }
}

.none {
  display: none;
}

.p-topModal_contents {
  width: 80%;
}

.p-top-lessons_headline {
  background-color: #000;
  color: #fff;
  padding: 0.5rem;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.p-top-management picture,
.p-top-management img {
  width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
}

.p-topForm th,
.p-topForm td {
  padding: 1.2rem 1.2rem;
}
.p-topForm_table p {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .p-topForm_table tr {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
  }
  .p-topForm_table th,
  .p-topForm_table td {
    display: block;
    width: 100%;
  }
  .p-topForm_table th {
    background-color: #f8f9fa;
    font-weight: bold;
    padding-top: 1rem;
  }
}

@media (max-width: 576px) {
  .p-topForm_table th,
  .p-topForm_table td {
    display: block;
    width: 100%;
  }
  .p-topForm_table tr {
    display: block;
    margin-bottom: 1rem;
  }
  .p-topForm_table {
    width: 100%;
  }
  .form-control {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */