@charset "UTF-8";
/*
Theme Name: new
*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

a:hover {
  opacity: 0.7;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a.btn {
  position: relative;
  background: linear-gradient(to right, #fff500, #ff4e00);
  text-decoration: none;
  padding: 1em 2em;
  font-size: 1.25em;
  color: #fff;
  font-weight: bold;
  display: block;
  width: 90%;
  max-width: 470px;
  margin: 4em auto;
  text-align: center;
}
a.btn::after {
  content: url("./img/arrow.svg");
  position: absolute;
  right: 1em;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  padding: 20px;
}
header #logo a {
  display: inline-block;
}
header #logo img {
  width: auto;
  height: 35px;
}
@media screen and (max-width: 768px) {
  header #logo img {
    height: 25px;
  }
}
header .hm {
  position: fixed;
  top: 35px;
  width: 60px;
  height: 35px;
  right: 35px;
  z-index: 20;
}
@media screen and (min-width: 1024px) {
  header .hm:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  header .hm {
    top: 25px;
    width: 50px;
  }
}
header .hm__inner {
  width: 100%;
  height: 3px;
  background-color: #101250;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: left top;
}
header .hm__inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #101250;
  top: 12px;
  transition: all 0.3s ease;
}
header .menu {
  position: absolute;
  top: 110vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(#00d8ff 0%, #0061fc 100%);
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}
header .menu ul {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
header .menu ul li {
  text-align: center;
}
header .menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1.5em;
}
header .menu ul li a span {
  font-size: 0.5em;
  display: block;
}
header .menu.show {
  top: 0;
  opacity: 1;
}

.open .hm__inner {
  background: #fff !important;
  transform: rotate(45deg);
}
.open .hm__inner::before {
  background: #fff;
  opacity: 0;
}
.open .hm__inner::after {
  background: #fff;
  width: 100%;
  transform: rotate(-90deg);
  top: 0;
  left: 0;
  transform-origin: center bottom;
}

.controller {
  position: absolute;
  top: 3em;
  right: 2em;
}
@media screen and (max-width: 768px) {
  .controller {
    right: 0.5em;
  }
}
.controller .prevBtn,
.controller .nextBtn {
  padding: 0.25em;
  margin: 0.25em;
}
@media screen and (max-width: 768px) {
  .controller .prevBtn,
  .controller .nextBtn {
    font-size: 1.5rem;
    padding: 0.125em;
    margin: 0.125em;
  }
}
.controller .prevBtn {
  background: #fff;
  color: #04334f;
}
.controller .nextBtn {
  background: #04334f;
  color: #fff;
}

main section {
  z-index: 5;
}
main section * {
  z-index: 10;
}
main h2 {
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
  font-family: "outfit", serif;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  main h2 {
    font-size: 2.25rem;
  }
}
main h2 span {
  font-family: "Noto Sans JP", serif;
  font-size: 0.375em;
  display: block;
  margin-top: 0.5em;
  font-weight: 600;
}
main .mv {
  position: relative;
}
main .mv::before {
  border-color: transparent #00d8ff transparent transparent;
  border-style: solid;
  border-width: 7.3vw 100vw 0 0;
  bottom: -1px;
  content: "";
  height: 0;
  position: absolute;
  z-index: 3;
}
main .mv .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .mv .swiper-slide img {
  width: 100%;
  height: auto;
  transition: transform 5s linear; /* ズームのアニメーション時間 */
  height: calc(100vh + 3.65vw);
  transform: scale(1.2); /* ズーム倍率 */
}
main .mv .swiper-slide-active img {
  transform: scale(1); /* ズーム倍率 */
}
main .mv .mvCatch {
  position: relative;
  z-index: 10;
  position: absolute;
  top: calc(50vh + 30px);
  left: 12.5%;
}
main .mv p {
  transform: translate(0%, -50%);
  color: #fff;
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.25em;
}
@media screen and (max-width: 768px) {
  main .mv p {
    font-size: 10vw;
  }
}
main .mv p span {
  font-size: 1em;
  margin: 0 0.125em;
  position: relative;
}
main .mv p span::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 80%;
  top: 50%;
  left: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: solid 1px #fff;
  z-index: -1;
  transform: translate(-50%, -45%) !important;
}
main .titleImg {
  position: sticky;
  top: 90px;
  width: 9vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  main .titleImg {
    width: 15vw;
  }
}
main .region {
  padding: 7.3vw 0 14.6vw;
  background: linear-gradient(#00d8ff 0%, #0061fc 100%);
  position: relative;
  display: flex;
  justify-content: space-between;
}
main .region .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  max-width: 100%;
}
main .region .bg img {
  width: 100vw;
  height: 100vh;
}
main .region__title {
  left: 2%;
}
main .region::before {
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 7.3vw 100vw 0 0;
  bottom: -1px;
  content: "";
  height: 0;
  position: absolute;
}
main .region h3 {
  color: #fff;
  border-bottom: solid 1px #fff;
  padding: 1em 0 0.5em;
}
main .region__inner {
  width: 75%;
}
main .region__inner .achievements {
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
main .region__inner .archive {
  position: relative;
  z-index: 10;
}
main .region__inner .archive__slider__item img {
  aspect-ratio: 3/2;
}
main .member {
  padding-top: 3.65vw;
  padding-bottom: 18.25vw;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
}
main .member__title {
  right: 2%;
  z-index: 15;
}
main .member::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 21.9vw;
  display: inline-block;
  background: linear-gradient(to bottom, #fff500, #ff4e00); /* ボーダー用グラデーション */
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
main .member__inner {
  width: 75%;
  margin-left: 10%;
}
@media screen and (max-width: 768px) {
  main .member__inner {
    margin-left: 5%;
  }
}
main .member__inner h2,
main .member__inner h3 {
  color: #04334f;
}
main .member__inner h2 {
  margin-top: 1em;
}
main .member__inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}
@media screen and (max-width: 768px) {
  main .member__inner ul {
    flex-direction: column;
  }
}
main .member__inner ul li {
  flex-basis: 31%;
  margin-bottom: 4em;
}
main .member__inner ul li div {
  position: relative;
}
main .member__inner ul li div img {
  aspect-ratio: 1;
}
main .member__inner ul li div p {
  position: absolute;
  bottom: 1em;
  left: -0.5em;
  color: #fff;
}
main .member__inner ul li div p span {
  display: inline-block;
  font-size: 0.875em;
  padding: 0.25em 0.5em;
  background: linear-gradient(90deg, #00d8ff 0%, #0061fc 100%);
  margin-bottom: 0.125em;
}
main .member__inner ul li h3 {
  font-size: 1.5em;
  padding: 1em 0;
}
main .member__inner ul li h3 span {
  font-size: 0.75em;
  display: block;
}
main .member__inner dl {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3em 2em;
  background: #fff;
  position: relative;
  box-shadow: rgba(4, 51, 79, 0.05) 15px 15px 20px;
}
@media screen and (max-width: 768px) {
  main .member__inner dl {
    flex-direction: column;
  }
}
main .member__inner dl dt,
main .member__inner dl dd {
  padding: 2em 0;
  border-bottom: solid 1px #ccc;
}
main .member__inner dl dt:last-of-type,
main .member__inner dl dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
main .member__inner dl dt {
  font-weight: bold;
  flex-basis: 5em;
}
@media screen and (max-width: 768px) {
  main .member__inner dl dt {
    padding: 2em 0 0;
    border: none;
  }
}
main .member__inner dl dd {
  flex-basis: calc(100% - 5em);
}
@media screen and (max-width: 768px) {
  main .member__inner dl dd {
    padding: 0 0 2em;
  }
}
main .about {
  position: relative;
  margin-top: -14.6vw;
  z-index: 10;
}
main .about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 43.8vw;
  display: inline-block;
  background: linear-gradient(to bottom, #00d8ff, #0061fc); /* ボーダー用グラデーション */
  -webkit-clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
          clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .about::before {
    height: 58.4vw;
  }
}
main .about__logo {
  padding-top: 6.3875vw;
  width: 50%;
  margin-left: 2.5%;
}
@media screen and (max-width: 768px) {
  main .about__logo {
    width: 75%;
  }
}
main .about__desc {
  position: relative;
  padding-top: 14.6vw;
  padding-bottom: 14.6vw;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  main .about__desc {
    padding-top: 21.9vw;
    padding-bottom: 14.6vw;
    margin-top: -7.3vw;
  }
}
main .about__desc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("./img/aboutbg.webp");
  background-size: cover;
  z-index: -10;
}
main .about__desc::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -5;
  background-color: rgba(4, 51, 79, 0.3);
}
main .about__desc-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main .about__desc-inner {
    width: 80%;
  }
}
main .about__desc-inner p {
  color: #fff;
  font-weight: 500;
}
main .about__desc-inner p.catch {
  font-size: 2em;
  margin-bottom: 2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main .about__desc-inner p.catch {
    font-size: 5.5vw;
  }
}
main .about__desc-inner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 14.6vw;
  display: inline-block;
  background: #fff; /* ボーダー用グラデーション */
  -webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  z-index: -5;
}
main .about__desc-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14.6vw;
  background-image: url("./img/bg.webp");
  z-index: -3;
}
main .about__desc-inner ul {
  display: flex;
  gap: 2em;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  main .about__desc-inner ul {
    flex-direction: column;
    width: 90%;
    margin: 5rem auto 0;
  }
}
main .about__desc-inner ul li {
  background: #fff;
  margin-bottom: 2rem;
  padding: 3em 3em 4em;
  position: relative;
  box-shadow: rgba(4, 51, 79, 0.05) 15px 15px 20px;
}
main .about__desc-inner ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00d8ff 0%, #0061fc 100%);
}
main .about__desc-inner ul li * {
  color: #04334f;
}
main .about__desc-inner ul li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main .about__desc-inner ul li h3 {
  font-size: 1.5em;
  padding: 1em 0;
  text-align: center;
  position: relative;
  padding: 0 0 1.5em;
}
main .about__desc-inner ul li h3 span {
  font-family: "outfit", serif;
  font-size: 0.675em;
  display: block;
  font-weight: 400;
  margin-bottom: 1em;
}
main .about__desc-inner ul li p {
  font-size: 1.125em;
}
main .flowAdmission {
  display: flex;
}
main .flowAdmission__inner {
  width: 80%;
  padding-left: 15%;
  margin-right: 5%;
}
main .flow {
  position: relative;
  padding-top: 7.3vw;
  z-index: 10;
  justify-content: space-between;
}
main .flow__title {
  left: 2%;
}
main .flow iframe {
  margin-bottom: 4em;
  width: 100%;
  aspect-ratio: 16/9;
}
main .flow h2 {
  color: #04334f;
}
main .flow ul {
  padding-left: calc(100px + 1em);
  position: relative;
}
@media screen and (max-width: 768px) {
  main .flow ul {
    padding: 0;
  }
}
main .flow ul::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 90%;
  top: 0;
  left: 49px;
  background-image: linear-gradient(to bottom, #000 3px, transparent 3px);
  background-size: 3px 22px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  main .flow ul::after {
    left: 50%;
  }
}
main .flow ul li {
  background: #fff;
  padding: 3em;
  margin-bottom: 2.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .flow ul li {
    margin-top: 8rem;
    padding: 4em 2.5em 3em;
  }
}
main .flow ul li::before {
  content: "（ STEP 1 ）";
  justify-content: center;
  color: #fff;
  font-family: "outfit", serif;
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  display: flex;
  align-items: center;
  border-radius: 50px;
  left: calc((100px + 1em) * -1);
  background: linear-gradient(#00d8ff 0%, #0061fc 100%);
}
@media screen and (max-width: 768px) {
  main .flow ul li::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
main .flow ul li:nth-of-type(2)::before {
  content: "（ STEP 2 ）";
  text-align: center;
}
main .flow ul li:nth-of-type(3)::before {
  content: "（ STEP 3 ）";
}
main .flow ul li:nth-of-type(4)::before {
  content: "（ STEP 4 ）";
}
main .flow ul li:nth-of-type(5)::before {
  content: "（ STEP 5 ）";
}
main .flow ul li h3 {
  color: #04334f;
  font-size: 1.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  main .flow ul li h3 {
    text-align: center;
  }
}
main .flow ul li p {
  color: #04334f;
}
main .flow ul li p span {
  display: block;
  font-size: 1.125em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main .flow ul li p span {
    font-size: 1em;
  }
}
main .admission {
  position: relative;
}
main .admission__inner h2 {
  margin-top: 5rem;
  color: #04334f;
}
main .admission__inner-desc {
  background: #fff;
  padding: 2em 3em;
  z-index: 100;
  box-shadow: rgba(4, 51, 79, 0.05) 15px 15px 20px;
}
main .admission__inner h3 {
  font-size: 1.125em;
  margin: 2em 0 0.75em;
}
main .admission__inner h3:first-of-type {
  margin-top: 0;
}
main .admission__inner ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1em;
}
main .admission__inner ul li::before {
  content: "●";
  font-size: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
}
main .sns {
  padding: 14.6vw 0 4em;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  main .sns {
    padding: 21.9vw 0 4em;
  }
}
main .sns::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 100%);
  z-index: -2;
}
@media screen and (max-width: 768px) {
  main .sns::before {
    -webkit-clip-path: polygon(0 0, 100% 12.5%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 12.5%, 100% 100%, 0% 100%);
  }
}
main .sns::after {
  content: "";
  position: absolute;
  top: 0;
  width: 65%;
  height: 65%;
  display: inline-block;
  background: linear-gradient(to bottom, #ff4e00, #fff500); /* ボーダー用グラデーション */
  -webkit-clip-path: polygon(0 0, 0% 50%, 100% 25%);
          clip-path: polygon(0 0, 0% 50%, 100% 25%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .sns::after {
    -webkit-clip-path: polygon(0 0, 0% 25%, 100% 12.5%);
            clip-path: polygon(0 0, 0% 25%, 100% 12.5%);
  }
}
main .sns h2 {
  color: #04334f;
  text-align: center;
}
main .sns ul {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3em;
}
main .sns ul li img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  position: relative;
  z-index: 10;
  background: #fff;
}
footer .footer__inner {
  background: url("./img/footer.jpg") no-repeat center center;
  background-size: cover;
  padding: 7.3vw 0;
}
footer .footer__inner img {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer__inner img {
    width: 75%;
  }
}
footer .logo {
  padding: 100px 0;
}
footer .logo img {
  width: 282px;
  height: auto;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */