@charset "UTF-8";
.appear.up .item {
  transform: translateY(40px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear.zoom .item {
  transform: translateZ(40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

* {
  transition-property: all;
  transition-duration: 0.3s;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #040000;
  background: #ffffff;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

#loading {
  transition: all 1s;
  /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #0D8771;
  border-right-color: #0D8771;
  border-bottom-color: #0D8771;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.3s all;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.5;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(1080px, 90%);
  margin: 0 auto;
}

.inner {
  width: min(1080px, 90%);
  margin: 0 auto;
  text-align: center;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

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

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.lp {
  overflow: hidden;
}

.hero {
  position: relative;
  height: 774px;
  background: linear-gradient(34deg, #f9ffe3 16%, #99dbee 51%, #0067ff 90%);
}
@media screen and (max-width: 1440px) {
  .hero {
    height: 60vw;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    height: 72vw;
  }
}

.grid-texture {
  position: absolute;
  inset: 0;
  background-image: url("../images/bg_grid.png");
  background-size: 140px 140px;
  mix-blend-mode: multiply;
}

.hero .item {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero .item::after {
  content: "";
  position: absolute;
  left: calc(50% + min(21.9vw, 315px));
  top: calc(24px + min(16.1vw, 232px));
  z-index: 2;
  width: min(18vw, 260px);
  aspect-ratio: 1;
  background: linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.92) 49%, rgba(255, 255, 255, 0.92) 51%, transparent 56%), linear-gradient(0deg, transparent 44%, rgba(255, 255, 255, 0.9) 49%, rgba(255, 255, 255, 0.9) 51%, transparent 56%), linear-gradient(35deg, transparent 45%, rgba(0, 255, 255, 0.78) 49%, rgba(0, 255, 255, 0.78) 51%, transparent 55%), linear-gradient(-35deg, transparent 45%, rgba(0, 255, 255, 0.78) 49%, rgba(0, 255, 255, 0.78) 51%, transparent 55%), radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 7%, rgba(0, 255, 255, 0.62) 8% 17%, rgba(255, 255, 255, 0.28) 18% 34%, rgba(255, 255, 255, 0) 62%);
  border-radius: 50%;
  filter: blur(3px) drop-shadow(0 0 18px rgba(0, 255, 255, 0.95)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.85));
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
  transform-origin: center;
  animation: heroBookFlash 3s ease-in-out 1.2s infinite;
}
@media screen and (max-width: 640px) {
  .hero .item::after {
    left: calc(50% + 23.2vw);
    top: 17vw;
    width: 20vw;
  }
}
@media screen and (max-width: 480px) {
  .hero .item::after {
    left: calc(50% + 25.2vw);
    top: 18.4vw;
  }
}

.book {
  position: absolute;
  left: 50%;
  top: 24px;
  width: min(1440px, 100%);
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .book {
    top: 0px;
    width: 105vw;
    max-width: none;
  }
}
@media screen and (max-width: 480px) {
  .book {
    width: 114vw;
  }
}

@keyframes heroBookFlash {
  0%, 58%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
  }
  64% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1) rotate(18deg);
  }
  70% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(1.18) rotate(32deg);
  }
  76% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35) rotate(45deg);
  }
}
.intro {
  position: relative;
  margin-top: -66px;
  padding: 120px 20px 112px;
  background: url("../images/bg_intro.png") no-repeat top center/cover;
  color: #fff;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .intro {
    padding: 80px 20px 112px;
  }
}
@media screen and (max-width: 480px) {
  .intro {
    padding: 50px 20px 112px;
  }
}

.intro h1 {
  position: relative;
  color: #ffea00;
  font-size: clamp(1.4rem, 0.818rem + 2.91vw, 3rem);
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: 900;
}
@media screen and (max-width: 640px) {
  .intro h1 {
    letter-spacing: 0.05em;
  }
}

.intro .sub {
  font-size: clamp(1rem, 0.709rem + 1.45vw, 1.8rem);
  line-height: 2.2;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin: 32px 0 64px;
}
@media screen and (max-width: 640px) {
  .intro .sub {
    letter-spacing: 0.05em;
    margin: 24px 0 40px;
  }
}

.body-copy {
  font-size: clamp(1.1rem, 0.773rem + 1.64vw, 2rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .body-copy {
    letter-spacing: 0em;
    text-align: justify;
  }
}

.onair {
  display: inline-block;
  margin-top: 70px;
  padding: 22px 50px;
  background: rgba(0, 255, 255, 0.9);
  color: #ff3276;
  font-family: "DotGothic16", monospace;
  font-size: clamp(1.3rem, 0.791rem + 2.55vw, 2.7rem);
  line-height: 1.45;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 640px) {
  .onair {
    padding: 16px 24px;
  }
}

.archive img {
  margin: 100px auto;
  text-align: center;
  width: 1031px, 90%;
}
@media screen and (max-width: 640px) {
  .archive img {
    margin: 50px auto;
  }
}

.program-photos {
  display: block;
  position: relative;
  margin-top: -100px;
  aspect-ratio: 1440/150;
  width: 100%;
  background: url("../images/foot_maskline.png") no-repeat top center/cover;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .program-photos {
    aspect-ratio: 1440/300;
  }
}
@media screen and (max-width: 640px) {
  .program-photos {
    aspect-ratio: 1440/420;
  }
}

.schools {
  padding: 0px 20px 110px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .schools {
    padding: 0px 20px 60px;
  }
}

.schools h2 {
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 0 55px;
}
@media screen and (max-width: 640px) {
  .schools h2 {
    margin: 0 0 30px;
  }
}

.school-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .school-logos {
    gap: 32px 32px;
  }
}

.school-logos img {
  max-width: 100%;
  max-height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.message {
  padding: 35px 0px 100px;
}
@media screen and (max-width: 640px) {
  .message {
    padding: 25px 0px 70px;
  }
}

.message-card {
  position: relative;
  max-width: 1041px;
  margin: 0 auto;
  aspect-ratio: 1041/565;
}

.president {
  position: absolute;
  left: 0;
  top: 0;
  width: 91.642%;
  height: 88.496%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .president {
    left: 50%;
    transform: translateX(-50%);
  }
}

.message-title {
  position: absolute;
  top: 30.93%;
  right: 4.03%;
  z-index: 2;
  width: 43.27%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .message-title {
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.message-text {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 40.058%;
  min-height: 55.929%;
  padding: 75px 44px 36px;
  background: linear-gradient(225deg, #e6fff4 8.77%, #99dbee 32.15%, #0067ff 80.17%);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: clamp(0.9rem, 0.609rem + 1.45vw, 1.7rem);
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .message-text {
    padding: 36px 36px 20px;
    top: 103%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 70%;
    height: auto;
    min-height: auto;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  .message-text {
    padding: 36px 24px 20px;
  }
}

.message-text .role {
  font-size: clamp(1rem, 0.709rem + 1.45vw, 1.8rem);
  margin: 0 0 10px;
  line-height: 1;
}

.message-text h2 {
  font-size: clamp(1.3rem, 0.864rem + 2.18vw, 2.5rem);
  margin: 0 0 42px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .message-text h2 {
    margin: 0 0 20px;
  }
}

.message-body {
  margin: 0;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 449px));
  justify-content: center;
  gap: 22px;
  padding: 20px 20px 128px;
}
@media screen and (max-width: 960px) {
  .links {
    padding: 240px 20px 64px;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .links {
    padding: 200px 20px 64px;
  }
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 105px;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .link-card {
    min-height: auto;
  }
}

.link-card img {
  max-width: 449px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 960px) {
  .link-card img {
    max-width: 100%;
  }
}

footer {
  height: 55px;
  background: #0067ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.8rem, 0.509rem + 1.45vw, 1.6rem);
  font-weight: 400;
}

header {
  max-width: 1400px;
  width: 100%;
  padding: 20px 35px 0 35px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 640px) {
  header {
    padding: 15px 20px 0;
  }
}

.logo {
  width: 138px;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .logo {
    width: 100px;
  }
}

.footer {
  background: #DBEDEA;
  color: #040000;
  text-align: center;
  padding: 80px 0 40px;
}
.footer a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 60px 0 30px;
  }
}

.foot-link a {
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #0D8771;
  transition: 0.3s all;
  position: relative;
  background: #0D8771;
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  line-height: 4;
  border-radius: 10px;
  letter-spacing: 5px;
}
@media screen and (max-width: 960px) {
  .foot-link a {
    width: 80%;
  }
}

.foot-link a::before {
  position: absolute;
  content: "";
  background: url("../images/link_arw.svg") no-repeat center/contain;
  width: 53px;
  height: 6px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .foot-link a::before {
    right: 20px;
  }
}

.foot-link a:hover::before {
  right: 0.8vw;
}
@media screen and (max-width: 960px) {
  .foot-link a:hover::before {
    right: 2vw;
  }
}

.backtotop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #FF0069;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  font-family: "Noto Sans JP", sans-serif;
  color: #0D8771;
  margin-top: 60px;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.4rem);
}/*# sourceMappingURL=style.css.map */