@charset "UTF-8";
html {
  font-size: 1px;
}

body {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  text-align: justify;
  background: #EFF9F9;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

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

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

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

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_y {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_y.is-animated {
  transform-origin: right;
  animation: scaled_y 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
header.fixed {
  animation: 0.3s fadeIn forwards;
  position: fixed;
  z-index: 10;
  background: white;
}
header .top__menu {
  width: 100%;
  padding: 15rem 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top__menu .logo {
  width: 260rem;
  display: flex;
  transition: 0.3s;
}
header .top__menu .logo:hover {
  opacity: 0.7;
}
header .top__menu ul {
  display: flex;
  align-items: center;
  justify-content: right;
}
header .top__menu ul li {
  padding: 0 20rem;
}
header .top__menu ul li:last-child {
  margin-right: 0;
}
header .top__menu ul li a {
  font-size: 14rem;
  line-height: 25.2rem;
  color: #505050;
  transition: 0.3s;
}
header .top__menu ul li a:hover {
  color: #28B3D1;
}
header .bottom__menu {
  width: 100%;
  height: 60rem;
  background: #fff;
  display: flex;
  justify-content: right;
  align-items: center;
}
header .bottom__menu ul {
  display: flex;
  align-items: center;
}
header .bottom__menu ul li {
  padding: 0 48rem;
  border-left: 1rem solid #a9a9a9;
}
header .bottom__menu ul li:first-child {
  padding-left: 0;
  border-left: 0;
}
header .bottom__menu ul li:last-child {
  padding-right: 0;
}
header .bottom__menu ul li a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #505050;
  transition: 0.3s;
}
header .bottom__menu ul li a:hover {
  color: #28B3D1;
}
header .bottom__menu .entry__btn {
  width: 220rem;
  height: 100%;
  margin-left: 44rem;
  background: #28b3d1;
  border: 1rem solid #28b3d1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header .bottom__menu .entry__btn:hover {
  background: white;
}
header .bottom__menu .entry__btn:hover span {
  color: #28b3d1;
}
header .bottom__menu .entry__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

@keyframes moveCloud {
  0% {
    opacity: 0;
    transform: translateX(-50rem);
  }
  50% {
    opacity: 1;
    transform: translateX(100rem);
  }
  100% {
    opacity: 0;
    transform: translateX(250rem);
  }
}
@keyframes boat {
  0% {
    opacity: 0;
    transform: translateX(150rem);
  }
  50% {
    opacity: 1;
    transform: translateX(-50rem);
  }
  100% {
    opacity: 0;
    transform: translateX(-250rem);
  }
}
@keyframes fly {
  0% {
    opacity: 0;
    transform: translateY(80%) translateX(100rem);
  }
  50% {
    opacity: 1;
    transform: translateY(-60%) translateX(-100rem);
  }
  100% {
    opacity: 0;
    transform: translateY(-140%) translateX(-300rem);
  }
}
.frontview {
  max-width: 1200rem;
  margin: auto;
  margin-top: 217rem;
  position: relative;
}
.frontview .fp {
  display: block;
  position: relative;
}
.frontview .gap01 {
  width: 360rem;
  height: 240rem;
  display: flex;
  position: absolute;
  left: -30rem;
  top: 95rem;
  border-radius: 15rem;
  box-shadow: 0 0 20rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.frontview .gap01 span {
  width: 100%;
  height: 100%;
}
.frontview .gap02 {
  width: 360rem;
  height: 240rem;
  display: flex;
  position: absolute;
  right: -24rem;
  top: -35rem;
  overflow: hidden;
  border-radius: 15rem;
  box-shadow: 0 0 20rem rgba(0, 0, 0, 0.2);
}
.frontview .gap02 span {
  width: 100%;
  height: 100%;
}
.frontview .gap03 {
  width: 255rem;
  height: 170rem;
  display: flex;
  position: absolute;
  right: 62rem;
  bottom: -86rem;
  border-radius: 15rem;
  box-shadow: 0 0 20rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.frontview .gap03 span {
  width: 100%;
  height: 100%;
}
.frontview .cloud01 {
  width: 100rem;
  display: flex;
  position: absolute;
  top: 45rem;
  left: 285rem;
  animation: moveCloud 10s linear infinite;
}
.frontview .cloud02 {
  width: 77rem;
  display: flex;
  position: absolute;
  top: 45rem;
  right: 406rem;
  animation: moveCloud 10s linear infinite;
}
.frontview .cloud03 {
  width: 111rem;
  display: flex;
  position: absolute;
  top: 290rem;
  right: 328rem;
  animation: moveCloud 10s linear infinite;
}
.frontview .bear {
  width: 205rem;
  display: flex;
  position: absolute;
  bottom: 68rem;
  left: 480rem;
  animation: boat 10s linear infinite;
}
.frontview .ge {
  width: 133rem;
  display: flex;
  position: absolute;
  bottom: 205rem;
  right: 304rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.frontview .plane {
  width: 153rem;
  display: flex;
  position: absolute;
  top: 290rem;
  right: 100rem;
  animation: fly 10s linear infinite;
}
.frontview .catchcopy__text {
  position: absolute;
  left: 50%;
  top: 78rem;
  transform: translate(-50%);
}
.frontview .catchcopy__text .ja__txt {
  font-weight: bold;
  font-size: 22rem;
  line-height: 36.3rem;
  text-align: center;
  color: #fff;
}
.frontview .catchcopy__text .en__txt {
  font-weight: bold;
  font-size: 56rem;
  line-height: 70rem;
  margin-top: 6rem;
  text-align: center;
  color: #fff;
}

.main-detail__content {
  margin-top: 85rem;
  text-align: center;
}
.main-detail__content p {
  font-weight: 500;
  font-size: 30rem;
  line-height: 54rem;
  text-align: center;
  color: #505050;
  display: inline-block;
  position: relative;
}
.main-detail__content p .icon {
  width: 240rem;
  display: flex;
  position: absolute;
  left: -270rem;
  top: -38rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.main-detail__content p span {
  font-size: 24rem;
}

.main__sublink {
  max-width: 1150rem;
  width: 95%;
  height: auto;
  margin: auto;
  margin-top: 82rem;
  border-radius: 8rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
}
.main__sublink ul {
  width: 100%;
  display: flex;
}
.main__sublink ul li {
  width: 33.3333333333%;
  border-left: 1rem solid #B4B4B4;
}
.main__sublink ul li:hover a:after {
  width: 100%;
}
.main__sublink ul li:hover a .content__text .t__txt {
  color: #28b3d1;
}
.main__sublink ul li:hover a .content__text .c__txt {
  color: #28b3d1;
}
.main__sublink ul li:first-child {
  border-left: 0;
}
.main__sublink ul li a {
  padding: 20rem 36rem 20rem 20rem;
  display: flex;
  align-items: center;
  position: relative;
}
.main__sublink ul li a:after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 4rem solid #28b3d1;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.main__sublink ul li a .image {
  max-width: 120rem;
  margin-right: 30rem;
  display: flex;
}
.main__sublink ul li a .content__text .t__txt {
  font-weight: bold;
  font-size: 18rem;
  line-height: 29.7rem;
  color: #505050;
  transition: 0.3s;
}
.main__sublink ul li a .content__text .c__txt {
  height: 60rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 8rem;
  color: #505050;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@keyframes bycle {
  0% {
    opacity: 0;
    transform: translateY(10%) translateX(50rem);
  }
  50% {
    opacity: 1;
    transform: translateY(25%) translateX(0rem);
  }
  100% {
    opacity: 0;
    transform: translateY(40%) translateX(-50rem);
  }
}
@keyframes access1 {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa01 {
  0% {
    transform: translate(0, 0) rotate(7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(-7deg);
  }
}
.section-course {
  max-width: 1150rem;
  width: 95%;
  height: auto;
  margin: auto;
  margin-top: 35rem;
  position: relative;
  z-index: 1;
}
.section-course .course__header {
  width: 100%;
  padding: 10rem;
  border-radius: 12rem;
  background: #28b3d1;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
  display: flex;
  align-items: center;
  position: relative;
}
.section-course .course__header .icon {
  width: 112rem;
  display: flex;
  position: absolute;
  left: 45rem;
  top: 34rem;
  animation: fuwafuwa01 3s ease-in-out infinite alternate;
}
.section-course .course__header .icon02 {
  width: 166rem;
  display: flex;
  position: absolute;
  left: 452rem;
  bottom: 20rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.section-course .course__header .image {
  width: 470rem;
  display: flex;
  border-radius: 0 12rem 12rem 0;
  overflow: hidden;
}
.section-course .course__header .content__text {
  width: calc(100% - 470rem);
  text-align: center;
}
.section-course .course__header .content__text .text__inner {
  width: 500rem;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
}
.section-course .course__header .content__text .text__inner .c__title {
  display: flex;
  align-items: center;
  justify-content: right;
}
.section-course .course__header .content__text .text__inner .c__title .en__txt {
  font-weight: bold;
  font-size: 46rem;
  line-height: 1;
  margin-right: 15rem;
  margin-top: -13rem;
  color: #efff00;
}
.section-course .course__header .content__text .text__inner .c__title .ja__txt {
  width: 140rem;
  height: 40rem;
  border-radius: 20rem;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1rem solid #efff00;
}
.section-course .course__header .content__text .text__inner .c__title .ja__txt span {
  font-weight: bold;
  font-size: 20rem;
  line-height: 1;
  text-align: center;
  color: #efff00;
}
.section-course .course__header .content__text .text__inner .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 48rem;
  margin-bottom: 45rem;
  text-align: justify;
  color: #fff;
}
.section-course .service__items {
  margin-top: 35rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-course .service__items .c__item {
  width: 460rem;
  height: 680rem;
  border-radius: 12rem;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
  padding: 4rem;
  position: relative;
}
.section-course .service__items .c__item:nth-child(2) {
  animation-delay: 0.3s;
}
.section-course .service__items .c__item:nth-child(3) {
  animation-delay: 0.6s;
}
.section-course .service__items .c__item.c01 {
  width: 300rem;
}
.section-course .service__items .c__item .image {
  width: 100%;
  display: flex;
  border-radius: 12rem 12rem 0 0;
  overflow: hidden;
}
.section-course .service__items .c__item .content__text {
  padding: 25rem 40rem 50rem;
  position: relative;
}
.section-course .service__items .c__item .content__text .gap {
  width: 63.94rem;
  display: flex;
  position: absolute;
  top: -10rem;
  left: 50rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.section-course .service__items .c__item .content__text .e__txt {
  font-weight: bold;
  font-size: 16rem;
  line-height: 1;
  text-align: center;
  color: #28b3d1;
}
.section-course .service__items .c__item .content__text .line {
  width: 100%;
  margin-top: 12rem;
  display: flex;
}
.section-course .service__items .c__item .content__text .j__txt {
  font-weight: bold;
  font-size: 20rem;
  line-height: 1;
  margin-top: 16rem;
  text-align: center;
  color: #505050;
}
.section-course .service__items .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  text-align: justify;
  color: #505050;
}
.section-course .service__items .c__item .__pos {
  position: absolute;
  left: 50%;
  bottom: 50rem;
  transform: translate(-50%);
}
.section-course .service__items .c__item .__pos .more__btn {
  width: 220rem;
  margin: auto;
}

.more__btn {
  width: 300rem;
  height: 80rem;
  border-radius: 40rem;
  background: #fff;
  border: 1rem solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.more__btn:hover {
  background: #28B3D1;
}
.more__btn:hover:after {
  color: white;
}
.more__btn:hover span {
  color: white;
}
.more__btn.border {
  border: 1rem solid #28b3d1;
}
.more__btn.submit {
  margin: auto;
  margin-top: 55rem;
  background: #28B3D1;
  border-color: #28B3D1;
  font-weight: 500;
  font-size: 16rem;
  line-height: 26rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.more__btn.submit:disabled {
  background: #ddd;
  border-color: #ddd;
}
.more__btn.submit:disabled:hover {
  background: #ddd;
  color: white;
}
.more__btn.submit:hover {
  background: white;
  color: #28B3D1;
}
.more__btn.submit:hover span {
  color: #28B3D1;
}
.more__btn.submit:hover:after {
  color: #28B3D1;
}
.more__btn.submit:after {
  color: white;
}
.more__btn.submit span {
  color: white;
}
.more__btn:after {
  content: "→";
  font-weight: 500;
  font-size: 18rem;
  text-align: center;
  color: #28b3d1;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 25rem;
  transform: translateY(-50%);
}
.more__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 26rem;
  text-align: center;
  color: #28b3d1;
  transition: 0.3s;
}

.section-interview {
  width: 100%;
  margin-top: -90rem;
  overflow: hidden;
  position: relative;
}
.section-interview .content__inner {
  width: 88.9285714286%;
  display: flex;
  align-items: center;
  justify-content: right;
  position: absolute;
  top: 20%;
  right: 0;
}
.section-interview .content__inner .interview__slider {
  width: 78.7148594378%;
  margin-left: 65rem;
  display: flex;
  justify-content: space-between;
}
.section-interview .content__inner .interview__slider .swiper-wrapper {
  position: relative;
}
.section-interview .content__inner .interview__slider .c__item {
  width: 200rem;
}
.section-interview .content__inner .interview__slider .c__item .image {
  width: 100%;
  height: 22vw;
  border-radius: 10rem;
  overflow: hidden;
  display: flex;
  position: relative;
}
.section-interview .content__inner .interview__slider .c__item .from__cuntry {
  width: 150rem;
  height: 32rem;
  margin: auto;
  transform: translateY(-50%);
  border-radius: 16rem;
  background: #28b3d1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-interview .content__inner .interview__slider .c__item .from__cuntry:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5rem solid transparent;
  border-right: 5rem solid transparent;
  border-top: 7rem solid #28b3d1;
  position: absolute;
  left: 50%;
  bottom: -6rem;
  transform: translate(-50%);
}
.section-interview .content__inner .interview__slider .c__item .from__cuntry span {
  font-weight: bold;
  font-size: 16rem;
  line-height: 1;
  margin-top: -4rem;
  text-align: center;
  color: #efff00;
}
.section-interview .content__inner .interview__slider .c__item .name {
  font-weight: 500;
  font-size: 1.1vw;
  line-height: 1.5;
  margin-top: 0;
  text-align: center;
  color: #fff;
}
.section-interview .back {
  width: 114%;
  display: flex;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  z-index: 0;
}
.section-interview .back .cloud01 {
  width: 160rem;
  display: flex;
  position: absolute;
  top: 521rem;
  left: 0;
  animation: moveCloud 10s linear infinite;
}
.section-interview .back .cloud02 {
  width: 100rem;
  display: flex;
  position: absolute;
  top: 278rem;
  left: 17%;
  animation: moveCloud 10s linear infinite;
}
.section-interview .back .cloud03 {
  width: 180rem;
  display: flex;
  position: absolute;
  top: 180rem;
  right: 22%;
  animation: moveCloud 10s linear infinite;
}
.section-interview .back .bear {
  width: 275rem;
  display: flex;
  position: absolute;
  bottom: 8%;
  left: 42%;
  animation: boat 10s linear infinite;
}
.section-interview .back .plane {
  width: 120rem;
  display: flex;
  position: absolute;
  top: 170rem;
  right: 34%;
  animation: fly 10s linear infinite;
}
.section-interview .back .iw01 {
  width: 102rem;
  display: flex;
  position: absolute;
  bottom: 22%;
  right: 22%;
  animation: bycle 10s linear infinite;
}
.section-interview .back .iw02 {
  width: 155rem;
  display: flex;
  position: absolute;
  bottom: 22%;
  left: 28%;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.section-interview .back .iw03 {
  width: 75rem;
  display: flex;
  position: absolute;
  bottom: 22%;
  left: 11%;
  animation: access1 1000ms linear infinite alternate;
  transform-origin: 78% 100%;
  animation-delay: 0.5s;
}
.section-interview .__pos {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 45%;
  bottom: -140rem;
  transform: translate(-50%);
}

.section-title.--white .en__txt {
  color: white;
}
.section-title.--white .ja__txt {
  color: white;
}
.section-title .en__txt {
  font-weight: bold;
  font-size: 46rem;
  line-height: 1.2;
  color: #28b3d1;
}
.section-title .ja__txt {
  font-weight: bold;
  font-size: 20rem;
  margin-top: 12rem;
  line-height: 1.2;
  color: #28b3d1;
}

.section-osaka {
  padding-bottom: 85rem;
}
.section-osaka .content__inner {
  max-width: 1150rem;
  width: 95%;
  height: auto;
  margin: auto;
  margin-top: 100rem;
  border-radius: 12rem;
  padding: 5rem;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
  display: flex;
  align-items: center;
  text-align: center;
}
.section-osaka .content__text {
  width: calc(100% - 670rem);
  padding-top: 50rem;
  text-align: center;
}
.section-osaka .content__text .text__inner {
  width: 300rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: left;
}
.section-osaka .content__text .text__inner .gap {
  width: 242.7rem;
  display: flex;
  position: absolute;
  right: -30rem;
  top: -98rem;
}
.section-osaka .content__text .text__inner .ge_gap {
  width: 122rem;
  display: flex;
  position: absolute;
  left: -64rem;
  top: -70rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.section-osaka .content__text .text__inner .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 90rem;
  text-align: justify;
  color: #505050;
}
.section-osaka .osaka__images {
  width: 670rem;
  border-radius: 0 13rem 13rem 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.section-osaka .osaka__images .image {
  width: calc(50% - 1.5rem);
}
.section-osaka .osaka__images .image:first-child {
  width: 100%;
  margin-bottom: 3rem;
}
.section-osaka .osaka__images .image:nth-child(2) {
  margin-right: 3rem;
}

.about-teacher {
  background: white;
  padding-top: 139rem;
}
.about-teacher .content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-teacher .content__inner .c__item {
  margin: 0 45rem;
  padding-bottom: 120rem;
  position: relative;
}
.about-teacher .content__inner .c__item .content__inner {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: flex-start;
}
.about-teacher .content__inner .c__item .content__inner .content__text {
  width: 280rem;
}
.about-teacher .content__inner .c__item .content__inner .content__text h3 {
  font-weight: bold;
  font-size: 16rem;
  line-height: 1.2;
  padding: 10rem 0;
  border-bottom: 1rem solid #28b3d1;
  color: #28b3d1;
}
.about-teacher .content__inner .c__item .content__inner .content__text .t__txt {
  font-weight: bold;
  font-size: 20rem;
  line-height: 1;
  margin-top: 18rem;
  color: #505050;
}
.about-teacher .content__inner .c__item .content__inner .content__text .txt {
  width: 220rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  color: #505050;
}
.about-teacher .content__inner .c__item .content__inner .image {
  width: 220rem;
  border-radius: 12rem;
  overflow: hidden;
  display: flex;
}
.about-teacher .content__inner .c__item .__pos {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.section-topic {
  padding: 95rem 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-topic .topic__frame {
  width: 340rem;
  height: 688rem;
  margin-right: 60rem;
  display: flex;
}
.section-topic .topic__frame iframe {
  width: 100%;
  height: 100%;
}
.section-topic .topic__content {
  width: 720rem;
  height: auto;
  padding: 65rem;
  border-radius: 12rem;
  background: #f5f5f5;
}
.section-topic .topic__content .title__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-topic .topic__content .title__content .__pos .more__btn {
  width: 220rem;
}
.section-topic .topic__content .topic__items {
  margin-top: 50rem;
}
.section-topic .topic__content .topic__items .t__item {
  padding: 33rem 0;
  border-top: 1rem dashed #b4b4b4;
  position: relative;
  display: block;
}
.section-topic .topic__content .topic__items .t__item:hover h3 {
  color: #28B3D1;
}
.section-topic .topic__content .topic__items .t__item:hover .arrow span {
  transform: translate(4rem);
}
.section-topic .topic__content .topic__items .t__item:last-child {
  border-bottom: 1rem dashed #b4b4b4;
}
.section-topic .topic__content .topic__items .t__item .arrow {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: #fff;
  border: 1rem solid #28b3d1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 65rem;
}
.section-topic .topic__content .topic__items .t__item .arrow span {
  width: 8rem;
  display: flex;
  transition: 0.3s;
}
.section-topic .topic__content .topic__items .t__item .date {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #28b3d1;
}
.section-topic .topic__content .topic__items .t__item h3 {
  width: 490rem;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 10rem;
  color: #505050;
  transition: 0.3s;
}

.contact__items {
  padding: 20rem;
  background: #fff;
}
.contact__items .content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__items .content__inner .c__item {
  width: 440.16rem;
  height: 440.16rem;
  margin: 0 5rem;
  background: url(../img/contact_back01.webp);
  background-size: 100% 100%;
  padding-top: 290rem;
  position: relative;
  display: block;
  transition: 0.3s;
}
.contact__items .content__inner .c__item:hover {
  opacity: 0.7;
}
.contact__items .content__inner .c__item:nth-child(2) {
  background: url(../img/contact_back02.webp);
  background-size: 100% 100%;
}
.contact__items .content__inner .c__item:nth-child(2) .icon {
  width: 162rem;
  left: 124rem;
}
.contact__items .content__inner .c__item:nth-child(3) {
  background: url(../img/contact_back03.webp);
  background-size: 100% 100%;
}
.contact__items .content__inner .c__item:nth-child(3) .icon {
  width: 153rem;
  left: 124rem;
}
.contact__items .content__inner .c__item .icon {
  width: 190.64rem;
  display: flex;
  position: absolute;
  bottom: 198rem;
  left: 107rem;
}
.contact__items .content__inner .c__item .icon.teacher {
  width: 240rem;
  left: 99rem;
}
.contact__items .content__inner .c__item .icon.course {
  width: 165rem;
  left: 127rem;
}
.contact__items .content__inner .c__item .icon.guide {
  width: 190rem;
}
.contact__items .content__inner .c__item .icon.support {
  width: 215rem;
}
.contact__items .content__inner .c__item .icon.event {
  width: 123rem;
  left: 160rem;
}
.contact__items .content__inner .c__item .icon.graduation {
  width: 200rem;
  left: 132rem;
  bottom: 166rem;
}
.contact__items .content__inner .c__item .icon.about {
  width: 230rem;
  left: 110rem;
  bottom: 184rem;
}
.contact__items .content__inner .c__item .icon.interview {
  width: 242rem;
  left: 78rem;
  bottom: 184rem;
}
.contact__items .content__inner .c__item .en__txt {
  font-weight: bold;
  font-size: 16rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.contact__items .content__inner .c__item .ja__txt {
  font-weight: bold;
  font-size: 24rem;
  line-height: 1.2;
  margin-top: 12rem;
  text-align: center;
  color: #fff;
}

footer {
  padding: 95rem 0 60rem;
  position: relative;
}
footer a {
  transition: 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
footer .facebook {
  width: 42rem;
  display: flex;
  position: absolute;
  bottom: 50rem;
  right: 125rem;
}
footer .footer__inner {
  width: 1030rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer__inner .logo {
  width: 354.77rem;
  display: flex;
}
footer .footer__inner ul {
  height: 145rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
footer .footer__inner ul li {
  padding: 5rem 25rem;
}
footer .footer__inner ul li a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.5;
  color: #505050;
}
footer .copyright {
  font-weight: normal;
  font-size: 14rem;
  line-height: 25.2rem;
  margin-top: 75rem;
  text-align: center;
  color: #505050;
}

.breadcrumb {
  padding: 150rem 0 0 25rem;
}
.breadcrumb a {
  transition: 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb a, .breadcrumb span {
  font-size: 14rem;
  line-height: 25.2rem;
  color: #505050;
}

.subfrontview {
  max-width: 1140rem;
  display: flex;
  margin: auto;
  margin-top: 60rem;
  position: relative;
}
.subfrontview .subtitle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.subfrontview .subtitle .en__txt {
  font-weight: bold;
  font-size: 36rem;
  line-height: 40rem;
  text-align: center;
  color: #fff;
}
.subfrontview .subtitle .ja__txt {
  font-weight: bold;
  font-size: 18rem;
  line-height: 1.5;
  margin-top: 10rem;
  text-align: center;
  color: #fff;
}
.subfrontview .gap01 {
  width: 231.19rem;
  display: flex;
  position: absolute;
  bottom: -58rem;
  right: 190rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.subfrontview .gap01.c01 {
  width: 167.2rem;
}
.subfrontview .gap01.c02 {
  width: 111rem;
  bottom: -65rem;
}
.subfrontview .gap01.c03 {
  width: 181rem;
  bottom: -65rem;
}
.subfrontview .gap01.c04 {
  width: 160rem;
  bottom: -80rem;
  right: 272rem;
}
.subfrontview .gap01.c05 {
  width: 200rem;
  bottom: -80rem;
  right: 272rem;
}
.subfrontview .gap01.c06 {
  width: 190rem;
  bottom: -33rem;
  right: 247rem;
}
.subfrontview .gap01.c07 {
  width: 144rem;
  bottom: -58rem;
  right: 340rem;
}
.subfrontview .gap01.c08 {
  width: 104rem;
  bottom: -48rem;
  right: 340rem;
}
.subfrontview .gap01.c09 {
  width: 160rem;
  bottom: -52rem;
  right: 332rem;
}
.subfrontview .gap01.c10 {
  width: 144rem;
  bottom: -50rem;
  right: 262rem;
}
.subfrontview .gap02 {
  width: 122rem;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 104rem;
}
.subfrontview .plane {
  width: 110.66rem;
  display: flex;
  position: absolute;
  right: 111rem;
  top: 52rem;
  animation: fly 10s linear infinite;
}

.about__wrapper {
  margin-top: 126rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.about__wrapper .link__content {
  width: 200rem;
  padding: 28rem 30rem;
  height: auto;
  margin-top: 100rem;
  border-radius: 6rem;
  background: #28b3d1;
  box-shadow: 0 0 20rem rgba(41, 178, 209, 0.4);
  position: sticky;
  top: 135rem;
}
.about__wrapper .link__content ul li {
  padding: 7rem 0;
}
.about__wrapper .link__content ul li:hover a .lbl {
  color: #EFFF00;
}
.about__wrapper .link__content ul li:hover a .arrow svg g line, .about__wrapper .link__content ul li:hover a .arrow svg g path {
  stroke: #EFFF00;
}
.about__wrapper .link__content ul li.active a .lbl {
  color: #EFFF00;
}
.about__wrapper .link__content ul li.active a .arrow svg g line, .about__wrapper .link__content ul li.active a .arrow svg g path {
  stroke: #EFFF00;
}
.about__wrapper .link__content ul li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .link__content ul li a .lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.6;
  color: #fff;
  transition: 0.3s;
}
.about__wrapper .link__content ul li a .arrow {
  width: 8rem;
}
.about__wrapper .link__content ul li a .arrow svg {
  width: 100%;
  height: 100%;
}
.about__wrapper .about__content {
  width: 800rem;
  margin-left: 115rem;
}
.about__wrapper .about__content .c__item {
  padding: 72rem 0;
  border-top: 1rem solid #28b3d1;
}
.about__wrapper .about__content .c__item:first-child {
  border-top: 0;
}
.about__wrapper .about__content .c__item .edu__philo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__wrapper .about__content .c__item .edu__philo .content__text {
  width: 440rem;
}
.about__wrapper .about__content .c__item .edu__philo .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  text-align: justify;
  color: #505050;
}
.about__wrapper .about__content .c__item .edu__philo .image {
  width: 300rem;
  border-radius: 12rem;
  overflow: hidden;
  display: flex;
}
.about__wrapper .about__content .c__item h3 {
  font-weight: bold;
  font-size: 24rem;
  line-height: 1.5;
  color: #28b3d1;
}
.about__wrapper .about__content .c__item .edu__index {
  width: 100%;
  padding: 57rem 0;
  margin-top: 34rem;
  border-radius: 6rem;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
  position: relative;
}
.about__wrapper .about__content .c__item .edu__index .gap {
  width: 136.71rem;
  display: flex;
  position: absolute;
  left: 40rem;
  top: 50%;
  transform: translateY(-50%);
}
.about__wrapper .about__content .c__item .edu__index p {
  font-weight: 500;
  font-size: 20rem;
  line-height: 46rem;
  text-align: center;
  color: #505050;
}
.about__wrapper .about__content .c__item .edu__index p span {
  font-weight: 900;
  color: #28B3D1;
}
.about__wrapper .about__content .c__item ul.list {
  margin-top: 35rem;
}
.about__wrapper .about__content .c__item ul.list li {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  padding-left: 20rem;
  text-indent: -18rem;
  color: #505050;
}
.about__wrapper .about__content .c__item ul.list li span {
  color: #28B3D1;
}
.about__wrapper .about__content .c__item .message__content {
  margin-top: 32rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about__wrapper .about__content .c__item .message__content .content__text {
  width: 540rem;
}
.about__wrapper .about__content .c__item .message__content .content__text .t__txt {
  font-weight: 500;
  font-size: 20rem;
  line-height: 36rem;
  letter-spacing: -0.05em;
  color: #505050;
}
.about__wrapper .about__content .c__item .message__content .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  text-align: justify;
  color: #505050;
}
.about__wrapper .about__content .c__item .message__content .content__text .c__txt span {
  display: block;
  font-weight: bold;
  text-align: right;
}
.about__wrapper .about__content .c__item .message__content .image {
  width: 200rem;
  margin-left: 60rem;
  border-radius: 6rem;
}
.about__wrapper .about__content .c__item .note__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  color: #505050;
}
.about__wrapper .about__content .c__item ul.pdf__links {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
}
.about__wrapper .about__content .c__item ul.pdf__links li {
  margin-right: 42rem;
  padding-top: 25rem;
}
.about__wrapper .about__content .c__item ul.pdf__links li a {
  display: flex;
  align-items: center;
}
.about__wrapper .about__content .c__item ul.pdf__links li a .icon {
  width: 19.45rem;
  margin-right: 13rem;
  display: flex;
}
.about__wrapper .about__content .c__item ul.pdf__links li a .lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  letter-spacing: -0.02em;
  color: #505050;
  text-decoration: underline;
  text-decoration-color: #28B3D1;
  text-underline-offset: 3rem;
}
.about__wrapper .about__content .c__item table {
  width: 100%;
  margin-top: 30rem;
  border-collapse: collapse;
}
.about__wrapper .about__content .c__item table tr:last-child td:first-child {
  padding-top: 20rem;
}
.about__wrapper .about__content .c__item table tr td {
  font-weight: 400;
  font-size: 16rem;
  line-height: 1.5;
  padding: 10rem 0;
  color: #505050;
}
.about__wrapper .about__content .c__item table tr td:first-child {
  width: 208rem;
  font-weight: 500;
  color: #28B3D1;
}
.about__wrapper .about__content .c__item table tr td .more__btn {
  width: 220rem;
  height: 50rem;
  margin-top: 30rem;
  border-color: #28B3D1;
}
.about__wrapper .about__content .c__item .map {
  width: 100%;
  height: 400rem;
  margin-top: 60rem;
}
.about__wrapper .about__content .c__item .map iframe {
  width: 100%;
  height: 100%;
}

.facility__slider {
  margin-top: 92rem;
  padding-bottom: 90rem;
  display: flex;
  justify-content: space-between;
  padding: 0 0 90rem !important;
}
.facility__slider .swiper-button-next {
  right: 0;
}
.facility__slider .swiper-button-prev {
  left: 0;
}
.facility__slider .swiper-button-next:after {
  content: "";
  width: 50rem;
  height: 100rem;
  background: url(../img/page/right_arrow.webp);
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: -90rem;
}
.facility__slider .swiper-button-prev:after {
  content: "";
  width: 50rem;
  height: 100rem;
  background: url(../img/page/left_arow.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -90rem;
}
.facility__slider .swiper-wrapper {
  position: relative;
  left: -20%;
}
.facility__slider .c__item {
  width: 22%;
}
.facility__slider .c__item .image {
  width: 100%;
  height: 26vw;
  border-radius: 6rem;
  overflow: hidden;
  background: #dadada;
}
.facility__slider .c__item .c__lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 15rem;
  color: #505050;
}

.course__wrapper {
  margin-top: 125rem;
}
.course__wrapper .column__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.course__wrapper .column__content .title__content {
  position: relative;
  margin-right: 70rem;
}
.course__wrapper .column__content .title__content .gap {
  width: 278rem;
  display: flex;
  position: absolute;
  left: -40rem;
  top: 120rem;
  transform-origin: 78% 100%;
  animation: access1 1000ms linear infinite alternate;
}
.course__wrapper .column__content .content__items {
  width: 800rem;
}
.course__wrapper .column__content .content__items .c__item {
  padding: 80rem 0;
  border-bottom: 1rem solid #28b3d1;
}
.course__wrapper .column__content .content__items .c__item:last-child {
  border-bottom: 0;
}
.course__wrapper .column__content .content__items .c__item:first-child {
  padding-top: 0;
}
.course__wrapper .column__content .content__items .c__item .detail__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course__wrapper .column__content .content__items .c__item .detail__content .content__text .t__txt {
  font-weight: bold;
  font-size: 24rem;
  line-height: 1.5;
  color: #28b3d1;
}
.course__wrapper .column__content .content__items .c__item .detail__content .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #505050;
}
.course__wrapper .column__content .content__items .c__item .detail__content .content__text .c__txt span {
  color: #28B3D1;
}
.course__wrapper .column__content .content__items .c__item .detail__content .image {
  width: 360rem;
  display: flex;
}
.course__wrapper .column__content .content__items .c__item .title__txt {
  font-weight: bold;
  font-size: 24rem;
  line-height: 39.6rem;
  color: #28b3d1;
}
.course__wrapper .column__content .content__items .c__item .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  color: #505050;
}
.course__wrapper .column__content .content__items .c__item .c__txt a {
  color: #28B3D1;
  text-decoration: underline;
}
.course__wrapper .column__content .content__items .c__item table {
  width: 100%;
  margin-top: 34rem;
  border-collapse: collapse;
  background: white;
}
.course__wrapper .column__content .content__items .c__item table.c01 tr td {
  width: 230rem;
  padding: 12rem 22rem;
}
.course__wrapper .column__content .content__items .c__item table.c01 tr td:first-child {
  width: 115rem;
  padding-left: 20rem;
}
.course__wrapper .column__content .content__items .c__item table tr:nth-child(odd) td {
  background: #EFF9F9;
}
.course__wrapper .column__content .content__items .c__item table tr:first-child td {
  font-weight: 500;
  color: #28B3D1;
}
.course__wrapper .column__content .content__items .c__item table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 25rem;
  padding: 12rem 25rem;
  color: #505050;
  border-left: 1rem dotted #28B3D1;
  vertical-align: baseline;
}
.course__wrapper .column__content .content__items .c__item table tr td:first-child {
  width: 125rem;
  font-weight: 500;
  padding-left: 25rem;
  padding-right: 0;
  color: #28B3D1;
  border-left: 0;
}
.course__wrapper .column__content .content__items .c__item table tr td:nth-child(2) {
  width: 338rem;
}
.course__wrapper .weekly-schedule {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  padding: 110rem 0;
  border-top: 1rem solid #28b3d1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.course__wrapper .weekly-schedule .content__text .t__txt {
  font-weight: bold;
  font-size: 20rem;
  line-height: 33rem;
  margin-top: 50rem;
  color: #505050;
}
.course__wrapper .weekly-schedule .content__text .c__txt {
  width: 300rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  color: #505050;
}
.course__wrapper .weekly-schedule .table-content {
  width: 700rem;
}
.course__wrapper .weekly-schedule .table-content table {
  width: 100%;
  border-collapse: collapse;
}
.course__wrapper .weekly-schedule .table-content table tr:first-child td:nth-child(7) {
  writing-mode: unset;
  background: transparent;
}
.course__wrapper .weekly-schedule .table-content table tr:first-child td:nth-child(7) {
  writing-mode: unset;
}
.course__wrapper .weekly-schedule .table-content table tr:first-child td:nth-child(8) {
  writing-mode: unset;
}
.course__wrapper .weekly-schedule .table-content table tr:nth-child(odd) td {
  background: #EFF9F9;
}
.course__wrapper .weekly-schedule .table-content table tr:first-child td {
  font-weight: 500;
  color: #28B3D1;
}
.course__wrapper .weekly-schedule .table-content table tr td {
  font-size: 16rem;
  line-height: 25rem;
  padding: 12rem 0;
  text-align: center;
  color: #505050;
  background: white;
  border-right: 1rem dotted #28B3D1;
}
.course__wrapper .weekly-schedule .table-content table tr td:nth-child(7) {
  writing-mode: vertical-lr;
  background: transparent;
}
.course__wrapper .weekly-schedule .table-content table tr td:nth-child(8) {
  writing-mode: vertical-lr;
  background: transparent;
}
.course__wrapper .weekly-schedule .table-content table tr td:first-child {
  width: 150rem;
}
.course__wrapper .weekly-schedule .table-content table tr td:first-child .w__lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 25rem;
  text-align: center;
  color: #28b3d1;
}
.course__wrapper .weekly-schedule .table-content table tr td:first-child .w__txt {
  font-weight: normal;
  font-size: 14rem;
  line-height: 25rem;
  text-align: center;
  color: #505050;
}

.admission__wrapper {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  margin-top: 112rem;
}
.admission__wrapper .admission-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.admission__wrapper .admission-content .content__text {
  width: 800rem;
}
.admission__wrapper .admission-content .content__text .c__item {
  padding: 65rem 0;
  border-bottom: 1rem solid #28b3d1;
  position: relative;
}
.admission__wrapper .admission-content .content__text .c__item:nth-child(2) .enter__study li span {
  font-size: 70%;
  position: relative;
  top: -2rem;
}
.admission__wrapper .admission-content .content__text .c__item .pt__image {
  width: 300rem;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.admission__wrapper .admission-content .content__text .c__item:last-child {
  border-bottom: 0;
}
.admission__wrapper .admission-content .content__text .c__item:first-child {
  padding-top: 30rem;
}
.admission__wrapper .admission-content .content__text .c__item h2 {
  font-weight: bold;
  font-size: 24rem;
  line-height: 1.5;
  color: #28b3d1;
}
.admission__wrapper .admission-content .content__text .c__item .enter__study {
  margin-top: 30rem;
}
.admission__wrapper .admission-content .content__text .c__item .enter__study li {
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.5;
  margin-bottom: 5rem;
  padding-left: 20rem;
  text-indent: -18rem;
  color: #505050;
}
.admission__wrapper .admission-content .content__text .c__item .enter__study li span {
  color: #28B3D1;
}
.admission__wrapper .admission-content .content__text .c__item .note__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.5;
  margin-top: 30rem;
  color: #505050;
}
.admission__wrapper .admission-content .content__text .c__item .note__txt span {
  font-weight: 500;
  color: #28B3D1;
}
.admission__wrapper .admission-content .content__text .c__item .note__txt a {
  display: inline-flex;
  align-items: center;
  color: #28B3D1;
}
.admission__wrapper .admission-content .content__text .c__item .note__txt a span {
  width: 12rem;
  margin-left: 4rem;
  display: inline-flex;
}
.admission__wrapper .admission-content .content__text .c__item .document-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28rem;
  background: white;
}
.admission__wrapper .admission-content .content__text .c__item .document-table tr:nth-child(odd) {
  background: #EFF9F9;
}
.admission__wrapper .admission-content .content__text .c__item .document-table tr:first-child td {
  font-weight: 500;
  color: #28b3d1;
}
.admission__wrapper .admission-content .content__text .c__item .document-table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 25rem;
  padding: 12rem 0;
  text-align: center;
  color: #505050;
  border-right: 1rem dotted #28B3D1;
}
.admission__wrapper .admission-content .content__text .c__item .document-table tr td:first-child {
  width: 185rem;
  font-weight: 500;
  padding-left: 15rem;
  text-align: left;
  color: #28b3d1;
}
.admission__wrapper .admission-content .content__text .c__item .document__list {
  width: 800rem;
  margin-top: 60rem;
  border-radius: 6rem;
  background: #fff;
  padding: 55rem 50rem;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link {
  width: 300rem;
  height: 80rem;
  border-radius: 40rem;
  border: 1rem solid #28B3D1;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 50rem;
  bottom: 90rem;
  transition: 0.3s;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link:hover {
  background: #28B3D1;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link:hover span {
  color: white;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link:hover .icon svg path {
  fill: white;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 26.4rem;
  text-align: center;
  color: #28b3d1;
  transition: 0.3s;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link .icon {
  width: 18.54rem;
  display: flex;
  position: absolute;
  right: 22rem;
  top: 50%;
  transform: translateY(-50%);
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link .icon svg {
  width: 100%;
  height: 100%;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .download__link .icon svg path {
  transition: 0.3s;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text {
  font-weight: 500;
  font-size: 16rem;
  line-height: 40rem;
  padding: 0 27rem;
  color: #505050;
  border-right: 1rem dotted #28b3d1;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text a {
  color: #505050;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text a:hover {
  opacity: 0.7;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text a span {
  width: 12rem;
  margin-left: 5rem;
  display: flex;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text:first-of-type {
  padding-left: 0;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text:last-child {
  padding-right: 0;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text:last-child {
  border-right: 0;
}
.admission__wrapper .admission-content .content__text .c__item .document__list .p__text span {
  color: #28b3d1;
  display: block;
}
.admission__wrapper .cost-content {
  padding: 150rem 0 120rem;
  border-top: 1rem solid #28b3d1;
  position: relative;
}
.admission__wrapper .cost-content .title__pos {
  position: absolute;
  left: 0;
  top: 110rem;
}
.admission__wrapper .cost-content table {
  width: 800rem;
  margin: 0 0 0 auto;
  border-collapse: collapse;
}
.admission__wrapper .cost-content table tr:nth-child(even) {
  background: white;
}
.admission__wrapper .cost-content table tr:first-child td {
  font-weight: 500;
  color: #28B3D1;
}
.admission__wrapper .cost-content table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 25rem;
  padding: 12rem 0;
  text-align: center;
  color: #505050;
  border-right: 1rem dotted #28B3D1;
}
.admission__wrapper .cost-content table tr td:first-child {
  font-weight: 500;
  padding-left: 18rem;
  color: #28B3D1;
}
.admission__wrapper .scholarship-content {
  padding: 120rem 0;
  border-top: 1rem solid #28b3d1;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.admission__wrapper .scholarship-content .content__text {
  width: 800rem;
}
.admission__wrapper .scholarship-content .content__text .c__item {
  margin-bottom: 74rem;
}
.admission__wrapper .scholarship-content .content__text .c__item:first-child {
  padding-top: 24rem;
}
.admission__wrapper .scholarship-content .content__text .c__item:last-child {
  margin-bottom: 0;
}
.admission__wrapper .scholarship-content .content__text .c__item .c__lbl {
  font-weight: bold;
  font-size: 20rem;
  line-height: 33rem;
  margin-bottom: 15rem;
  color: #505050;
}
.admission__wrapper .scholarship-content .content__text .c__item table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40rem;
}
.admission__wrapper .scholarship-content .content__text .c__item table:last-child {
  margin-bottom: 0;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr:nth-child(even) {
  background: white;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr:first-child td {
  font-weight: 500;
  color: #28B3D1;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr:last-child td {
  color: #505050 !important;
  background: white;
  font-weight: 400 !important;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 25rem;
  padding: 12rem 8rem;
  text-align: center;
  color: #505050;
  border-right: 1rem dotted #28B3D1;
  vertical-align: baseline;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr td .c__text {
  display: flex;
  align-items: baseline;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr td .c__text span {
  width: 60rem;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr td .c__text p {
  text-align: left;
  width: calc(100% - 60rem);
}
.admission__wrapper .scholarship-content .content__text .c__item table tr td span {
  color: #28B3D1;
}
.admission__wrapper .scholarship-content .content__text .c__item table tr td:first-child {
  width: 180rem;
  font-weight: 500;
  padding-left: 18rem;
  color: #28B3D1;
}

.event__wrapper {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  margin-top: 120rem;
  padding-bottom: 120rem;
}
.event__wrapper .detail__content {
  padding-bottom: 90rem;
  display: flex;
  align-items: center;
  position: relative;
}
.event__wrapper .detail__content .gap__image {
  width: 304.35rem;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.event__wrapper .detail__content .image {
  width: 300rem;
  margin-right: 80rem;
  display: flex;
}
.event__wrapper .detail__content .c__txt {
  width: 460rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #505050;
}
.event__wrapper .event__items {
  padding-top: 120rem;
  border-top: 1rem solid #28B3D1;
  display: flex;
  flex-wrap: wrap;
}
.event__wrapper .event__items .e__item {
  width: 33.3333333333%;
  padding: 0 30rem;
  margin-bottom: 65rem;
}
.event__wrapper .event__items .e__item:nth-child(3n-1) {
  animation-delay: 0.3s;
}
.event__wrapper .event__items .e__item:nth-child(3n) {
  animation-delay: 0.6s;
}
.event__wrapper .event__items .e__item .e__inner {
  width: 100%;
}
.event__wrapper .event__items .e__item .e__inner .image {
  width: 100%;
  display: flex;
}
.event__wrapper .event__items .e__item .e__inner .content__text {
  padding: 18rem 0 0 85rem;
  position: relative;
}
.event__wrapper .event__items .e__item .e__inner .content__text .month {
  width: 50rem;
  height: 60rem;
  background: url(../img/page/month_bg.webp);
  background-size: 100% 100%;
  padding-top: 4rem;
  text-align: center;
  position: absolute;
  left: 20rem;
  top: 0;
}
.event__wrapper .event__items .e__item .e__inner .content__text .month span {
  font-weight: bold;
  font-size: 26rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
.event__wrapper .event__items .e__item .e__inner .content__text .month span span {
  font-size: 18rem;
}
.event__wrapper .event__items .e__item .e__inner .content__text .t__txt {
  font-weight: 500;
  font-size: 18rem;
  line-height: 26rem;
  color: #505050;
}
.event__wrapper .__pos {
  display: flex;
  justify-content: center;
}

.support__wrapper {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  margin-top: 120rem;
  padding-bottom: 120rem;
}
.support__wrapper .content__items {
  width: 100%;
}
.support__wrapper .content__items .c__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 135rem;
}
.support__wrapper .content__items .c__item:last-child {
  margin-bottom: 0;
}
.support__wrapper .content__items .c__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.support__wrapper .content__items .c__item:nth-child(odd) .image {
  margin-right: 0;
  margin-left: 20rem;
}
.support__wrapper .content__items .c__item .image {
  width: 450rem;
  margin-right: 20rem;
  display: flex;
}
.support__wrapper .content__items .c__item .content__text {
  width: 540rem;
}
.support__wrapper .content__items .c__item .content__text h3 {
  font-weight: bold;
  font-size: 24rem;
  line-height: 1.5;
  color: #28b3d1;
}
.support__wrapper .content__items .c__item .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 28rem;
  color: #505050;
}
.support__wrapper .content__items .c__item .content__text p span {
  display: block;
}
.support__wrapper .content__items .c__item .content__text p span span {
  display: inline-block;
  margin-right: 4rem;
  font-size: 70%;
  color: #28b3d1;
  position: relative;
  top: -2rem;
}

.graducation__wrapper {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  margin-top: 120rem;
  padding-bottom: 120rem;
}
.graducation__wrapper .detail__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.graducation__wrapper .detail__content .content__text {
  width: 540rem;
}
.graducation__wrapper .detail__content .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #505050;
}
.graducation__wrapper .detail__content .content__text a {
  width: 300rem;
  height: 80rem;
  margin: auto;
  margin-top: 25rem;
  border-radius: 40rem;
  background: #fff;
  border: 1rem solid #28b3d1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.graducation__wrapper .detail__content .content__text a:hover {
  background: #28B3D1;
}
.graducation__wrapper .detail__content .content__text a:hover .lbl {
  color: #fff;
}
.graducation__wrapper .detail__content .content__text a .lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 26.4rem;
  text-align: center;
  color: #505050;
  transition: 0.3s;
}
.graducation__wrapper .detail__content .content__text a .icon {
  width: 11.97rem;
  margin-left: 5rem;
  display: flex;
}
.graducation__wrapper .detail__content .content__text a .icon svg path {
  transition: 0.3s;
}
.graducation__wrapper .detail__content .image {
  width: 480rem;
  display: flex;
  margin-left: 20rem;
}
.graducation__wrapper .career-education {
  margin-top: 100rem;
}
.graducation__wrapper .career-education .c__item {
  margin-bottom: 120rem;
}
.graducation__wrapper .career-education .c__item:last-child {
  margin-bottom: 0;
}
.graducation__wrapper .career-education .c__item h3 {
  font-weight: bold;
  font-size: 24rem;
  line-height: 1.5;
  color: #28b3d1;
}
.graducation__wrapper .career-education .c__item .content__text {
  width: 100%;
  height: auto;
  padding: 50rem 30rem 0 50rem;
  border-radius: 6rem;
  margin-top: 35rem;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
}
.graducation__wrapper .career-education .c__item .content__text ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.graducation__wrapper .career-education .c__item .content__text ul li {
  width: 25%;
  padding: 0 20rem;
  font-weight: 500;
  font-size: 18rem;
  padding-left: 32rem;
  text-indent: -12rem;
  margin-bottom: 20rem;
  line-height: 1.5;
  color: #505050;
}
.graducation__wrapper .career-education .c__item .content__text ul li:nth-child(n+10) {
  text-indent: -23rem;
  padding-left: 37rem;
}
.graducation__wrapper .career-education .c__item .content__text ul li span {
  color: #28B3D1;
  font-weight: 900;
}

.teacher__wrapper {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  margin-top: 120rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.teacher__wrapper .t__item {
  width: 500rem;
  margin-bottom: 100rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.teacher__wrapper .t__item:nth-child(2n) {
  animation-delay: 0.3s;
}
.teacher__wrapper .t__item .image {
  width: 200rem;
  height: 300rem;
  background: #DADADA;
  border-radius: 6rem;
  overflow: hidden;
}
.teacher__wrapper .t__item .content__text {
  width: 260rem;
  padding-top: 15rem;
}
.teacher__wrapper .t__item .content__text .cat {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.5;
  padding: 3rem 26rem;
  text-align: center;
  color: #fff;
  border-radius: 16rem;
  background: #28b3d1;
  display: inline-block;
}
.teacher__wrapper .t__item .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 1.4;
  margin-top: 20rem;
  color: #28b3d1;
}
.teacher__wrapper .t__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  text-align: justify;
  color: #505050;
}

.interviews__wrapper {
  max-width: 1090rem;
  width: 95%;
  margin: auto;
  margin-top: 120rem;
  padding-bottom: 120rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.interviews__wrapper .c__item {
  width: 100%;
  margin-bottom: 100rem;
  display: flex;
  justify-content: space-between;
}
.interviews__wrapper .c__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.interviews__wrapper .c__item:nth-child(2n) .image {
  margin-right: 0;
  margin-left: 0;
}
.interviews__wrapper .c__item:last-child {
  margin-bottom: 0;
}
.interviews__wrapper .c__item .image {
  width: 525rem;
  height: 450rem;
  margin-right: 20rem;
  display: flex;
}
.interviews__wrapper .c__item .image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.interviews__wrapper .c__item .content__text {
  width: 480rem;
}
.interviews__wrapper .c__item .content__text .cat {
  display: inline-block;
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  padding: 2rem 25rem;
  border-radius: 16rem;
  background: #28b3d1;
  text-align: center;
  color: #efff00;
  position: relative;
  transform: scale(0);
  transform-origin: 50% 95%;
  transition: transform 0.3s;
  opacity: 1;
}
.interviews__wrapper .c__item .content__text .cat.is-animated {
  transform: scale(1);
}
.interviews__wrapper .c__item .content__text .cat:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5rem solid transparent;
  border-right: 5rem solid transparent;
  border-top: 10rem solid #28b3d1;
  position: absolute;
  left: 50%;
  bottom: -8rem;
  transform: translate(-50%);
}
.interviews__wrapper .c__item .content__text .name {
  font-weight: bold;
  font-size: 22rem;
  line-height: 1.5;
  margin-top: 35rem;
  color: #28b3d1;
}
.interviews__wrapper .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 28rem;
  text-align: justify;
  color: #505050;
}

.news__wrapper {
  max-width: 1090rem;
  width: 95%;
  height: auto;
  margin: 120rem auto 75rem;
  border-radius: 12rem;
  padding: 75rem 145rem 110rem;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
}
.news__wrapper .new__item {
  width: 100%;
  padding: 35rem 0;
  border-bottom: 1rem dotted #b4b4b4;
  display: block;
  position: relative;
}
.news__wrapper .new__item:hover h3 {
  color: #28B3D1;
}
.news__wrapper .new__item:hover .arrow span {
  transform: translate(4px);
}
.news__wrapper .new__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.news__wrapper .new__item .arrow {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: #fff;
  border: 1rem solid #28b3d1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 64rem;
}
.news__wrapper .new__item .arrow span {
  width: 8rem;
  display: flex;
  transition: 0.3s;
}
.news__wrapper .new__item .date {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #28b3d1;
}
.news__wrapper .new__item h3 {
  width: 90%;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 11rem;
  color: #505050;
  transition: 0.3s;
}

.pagination {
  margin-top: 70rem;
  margin-bottom: 100rem;
}
.pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .wp-pagenavi a, .pagination .wp-pagenavi span {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.16em;
  line-height: 23.1rem;
  margin: 0 15rem;
  text-align: center;
  color: #505050;
}
.pagination .wp-pagenavi a.nextpostslink, .pagination .wp-pagenavi span.nextpostslink {
  width: 8rem;
  height: 8rem;
  background: url(../img/arrow.webp);
  background-size: 100% 100%;
}
.pagination .wp-pagenavi a.previouspostslink, .pagination .wp-pagenavi span.previouspostslink {
  width: 8rem;
  height: 8rem;
  background: url(../img/arrow.webp);
  background-size: 100% 100%;
  transform: rotate(180deg);
}
.pagination .wp-pagenavi a.first, .pagination .wp-pagenavi span.first {
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1rem solid #b4b4b4;
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: center;
  color: #505050;
}
.pagination .wp-pagenavi a.last, .pagination .wp-pagenavi span.last {
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1rem solid #b4b4b4;
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: center;
  color: #505050;
}
.pagination .wp-pagenavi a.current, .pagination .wp-pagenavi span.current {
  color: #28B3D1;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul li {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.16em;
  line-height: 23.1rem;
  margin: 0 15rem;
  text-align: center;
  color: #505050;
}
.pagination ul li.active {
  color: #28B3D1;
}
.pagination ul li.prev {
  width: 8rem;
  height: 8rem;
  background: url(../img/arrow.webp);
  background-size: 100% 100%;
  transform: rotate(180deg);
}
.pagination ul li.next {
  width: 8rem;
  height: 8rem;
  background: url(../img/arrow.webp);
  background-size: 100% 100%;
}
.pagination ul li.last_prev {
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1rem solid #b4b4b4;
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: center;
  color: #505050;
}
.pagination ul li.last_next {
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1rem solid #b4b4b4;
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: center;
  color: #505050;
}

.news-detail__wrapper {
  max-width: 1090rem;
  width: 95%;
  height: auto;
  margin: auto;
  margin-top: 120rem;
  border-radius: 12rem;
  padding: 112rem 145rem 82rem;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
}
.news-detail__wrapper .date {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #28b3d1;
}
.news-detail__wrapper h2 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 39.6rem;
  margin-top: 28rem;
  color: #505050;
}
.news-detail__wrapper .content__text {
  margin-top: 45rem;
  padding-top: 85rem;
  border-top: 1rem solid #b4b4b4;
}
.news-detail__wrapper .content__text h2 {
  font-weight: 500;
  font-size: 20rem;
  margin-top: 0;
  margin-bottom: 30rem;
  line-height: 36rem;
  color: #28b3d1;
}
.news-detail__wrapper .content__text h3 {
  font-weight: 500;
  font-size: 18rem;
  line-height: 32.4rem;
  margin-bottom: 30rem;
  color: #28b3d1;
}
.news-detail__wrapper .content__text a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-bottom: 30rem;
  display: inline-block;
  color: #505050;
  text-decoration: underline;
  text-decoration-color: #28b3d1;
  text-underline-offset: 3rem;
}
.news-detail__wrapper .content__text ul {
  margin-bottom: 30rem;
}
.news-detail__wrapper .content__text ul li {
  font-weight: 500;
  font-size: 18rem;
  line-height: 32.4rem;
  padding-left: 20rem;
  margin-bottom: 10rem;
  color: #505050;
  position: relative;
}
.news-detail__wrapper .content__text ul li:after {
  content: "●";
  position: absolute;
  line-height: 1;
  left: 0;
  top: 6rem;
  color: #28B3D1;
}
.news-detail__wrapper .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-bottom: 30rem;
  color: #505050;
}
.news-detail__wrapper .content__text img {
  margin-bottom: 30rem;
}

.control__btns {
  max-width: 1090rem;
  width: 95%;
  height: auto;
  margin: auto;
  margin-top: 60rem;
  margin-bottom: 120rem;
  display: flex;
  justify-content: right;
  align-items: center;
}
.control__btns .c__btn {
  width: 125rem;
  height: 60rem;
  border-radius: 30rem;
  background: #28b3d1;
  border: 1px solid #28B3D1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.control__btns .c__btn.list {
  width: 200rem;
  margin-left: 20rem;
}
.control__btns .c__btn.list:after {
  content: unset;
}
.control__btns .c__btn.disible {
  opacity: 0;
  visibility: hidden;
}
.control__btns .c__btn:hover {
  background: white;
}
.control__btns .c__btn:hover span {
  color: #28B3D1;
}
.control__btns .c__btn:hover:after {
  color: #28B3D1;
  background: url(../img/arrow.webp);
  background-size: 100% 100%;
  transform: translateY(-50%) rotate(180deg);
}
.control__btns .c__btn.next {
  margin-left: 20rem;
}
.control__btns .c__btn.next:hover:after {
  transform: translateY(-50%);
}
.control__btns .c__btn.next:after {
  left: auto;
  right: 20rem;
  transform: translateY(-50%) rotate(180deg);
}
.control__btns .c__btn:after {
  content: "";
  width: 9rem;
  height: 10rem;
  background: url(../img/page/arrow_w.webp);
  background-size: 100% 100%;
  font-weight: 500;
  font-size: 18rem;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 20rem;
  transform: translateY(-50%);
}
.control__btns .c__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.faq__wrapper {
  margin-top: 50rem;
  padding-bottom: 120rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.faq__wrapper .link__content {
  width: 200rem;
  padding: 28rem 30rem;
  height: auto;
  margin-top: 80rem;
  border-radius: 6rem;
  background: #28b3d1;
  box-shadow: 0 0 20rem rgba(41, 178, 209, 0.4);
  position: sticky;
  top: 135rem;
}
.faq__wrapper .link__content ul li {
  padding: 7rem 0;
}
.faq__wrapper .link__content ul li.active a .lbl {
  color: #EFFF00;
}
.faq__wrapper .link__content ul li.active a .arrow svg g line, .faq__wrapper .link__content ul li.active a .arrow svg g path {
  stroke: #EFFF00;
}
.faq__wrapper .link__content ul li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.faq__wrapper .link__content ul li a .lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.6;
  color: #fff;
  transition: 0.3s;
}
.faq__wrapper .link__content ul li a .arrow {
  width: 8rem;
}
.faq__wrapper .link__content ul li a .arrow svg {
  width: 100%;
  height: 100%;
}
.faq__wrapper .faq__content {
  width: 800rem;
  margin-left: 115rem;
}
.faq__wrapper .faq__content .f__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80rem 0;
  border-bottom: 1rem solid #28B3D1;
}
.faq__wrapper .faq__content .f__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.faq__wrapper .faq__content .f__item .f__lbl {
  width: 180rem;
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: -0.05em;
  line-height: 1.5;
  color: #28b3d1;
}
.faq__wrapper .faq__content .f__item .content__text {
  width: 620rem;
}
.faq__wrapper .faq__content .f__item .content__text .b__item {
  width: 100%;
  margin-bottom: 55rem;
}
.faq__wrapper .faq__content .f__item .content__text .b__item:last-child {
  margin-bottom: 0;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title {
  display: flex;
  font-weight: bold;
  font-size: 20rem;
  line-height: 1.5;
  color: #505050;
  position: relative;
  cursor: pointer;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title.open .sign {
  border-color: #fff;
  background: #c8c8c8;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title.open .sign:after {
  border-color: white;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title.open .sign:before {
  opacity: 0;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title .sign {
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: #fff;
  border: 1rem solid #28b3d1;
  position: absolute;
  right: 0;
  top: -6rem;
  transition: 0.3s;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title .sign:after {
  content: "";
  width: 8rem;
  height: 0rem;
  border-top: 1rem solid #28B3D1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title .sign:before {
  content: "";
  height: 8rem;
  width: 0rem;
  border-left: 1rem solid #28B3D1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title .q__lbl {
  color: #28B3D1;
  margin-right: 15rem;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .t__title .q__txt {
  width: 85%;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .a__box {
  width: 100%;
  height: auto;
  margin-top: 28rem;
  padding: 30rem 35rem 30rem;
  background: #fff;
  border: 1rem solid rgba(0, 0, 0, 0);
  filter: drop-shadow(0rem 0rem 10rem rgba(40, 179, 209, 0.2));
  position: relative;
  display: none;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .a__box:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10rem solid transparent;
  border-right: 10rem solid transparent;
  border-bottom: 14rem solid #fff;
  position: absolute;
  left: 106rem;
  top: -13rem;
  filter: drop-shadow(0rem 0rem 10rem rgba(40, 179, 209, 0.2));
}
.faq__wrapper .faq__content .f__item .content__text .b__item .a__box p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #505050;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .a__box p a {
  text-decoration: underline;
  transition: 0.3s;
  color: #505050;
}
.faq__wrapper .faq__content .f__item .content__text .b__item .a__box p a:hover {
  opacity: 0.7;
}

.contact__wrapper {
  max-width: 1090rem;
  width: 95%;
  height: auto;
  margin: auto;
  padding: 95rem 145rem;
  margin-top: 120rem;
  margin-bottom: 120rem;
  border-radius: 12rem;
  background: #fff;
  box-shadow: 0rem 0rem 10rem rgba(40, 179, 209, 0.2);
}
.contact__wrapper .note__txt {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-bottom: 20rem;
  color: #505050;
}
.contact__wrapper .nt__text {
  display: flex;
  align-items: flex-start;
}
.contact__wrapper .nt__text .q__lbl {
  font-weight: 700;
  font-size: 16rem;
  margin-right: 15rem;
  color: #28B3D1;
}
.contact__wrapper .nt__text .q__txt {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-bottom: 20rem;
  color: #505050;
}
.contact__wrapper .contact__frame {
  margin-top: 45rem;
  padding-top: 50rem;
  border-top: 1rem dotted #b4b4b4;
}
.contact__wrapper .contact__frame table {
  width: 100%;
  border-collapse: collapse;
}
.contact__wrapper .contact__frame table tr td {
  width: 100%;
  font-weight: 500;
  font-size: 18rem;
  line-height: 32.4rem;
  padding: 18rem 0;
  color: #505050;
}
.contact__wrapper .contact__frame table tr td .wpcf7-list-item {
  display: block;
  margin: 0 1em 0 0;
}
.contact__wrapper .contact__frame table tr td input[type=text], .contact__wrapper .contact__frame table tr td input[type=email] {
  width: 420rem;
  height: 40rem;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  border: 1rem solid #dcdcdc;
  padding-left: 15rem;
}
.contact__wrapper .contact__frame table tr td input[type=text].tel, .contact__wrapper .contact__frame table tr td input[type=email].tel {
  width: 320rem;
}
.contact__wrapper .contact__frame table tr td input[type=email] {
  width: 100%;
}
.contact__wrapper .contact__frame table tr td textarea {
  width: 100%;
  height: 240rem;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  border: 1rem solid #dcdcdc;
  padding: 15rem;
}
.contact__wrapper .contact__frame table tr td:first-child {
  width: 190rem;
  display: flex;
  align-items: center;
}
.contact__wrapper .contact__frame table tr td:first-child .required {
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  border-radius: 2rem;
  padding: 1rem 6rem;
  margin-right: 14rem;
  background: #28b3d1;
  text-align: center;
  color: #fff;
}
.contact__wrapper .contact__frame .privacy__content {
  width: 100%;
  height: 270rem;
  overflow: auto;
  margin-top: 30rem;
  padding: 35rem 40rem;
  border-radius: 6rem;
  background: #f5f5f5;
}
.contact__wrapper .contact__frame .privacy__content::-webkit-scrollbar {
  width: 8rem; /* Width of the scrollbar */
}
.contact__wrapper .contact__frame .privacy__content::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
}
.contact__wrapper .contact__frame .privacy__content::-webkit-scrollbar-thumb {
  background: #bbbbbb; /* Color of the scrollbar handle */
  border-radius: 4rem; /* Rounded corners for the handle */
}
.contact__wrapper .contact__frame .privacy__content::-webkit-scrollbar-thumb:hover {
  background: #bbbbbb; /* Darker color on hover */
}
.contact__wrapper .contact__frame .privacy__content p {
  font-weight: 400;
  font-size: 16rem;
  line-height: 28.8rem;
  color: #505050;
}
.contact__wrapper .contact__frame .privacy__content p span {
  font-weight: 500;
  display: block;
}
.contact__wrapper .contact__frame .privacy__chk {
  margin-top: 54rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__wrapper .contact__frame .privacy__chk span {
  font-weight: normal;
  font-size: 18rem;
  line-height: 32.4rem;
  text-align: center;
  color: #505050;
}

.w__container {
  margin: 300rem 0 200rem;
}
.w__container .en_txt {
  font-size: 22rem;
  text-align: center;
}
.w__container .txt {
  font-size: 16rem;
  margin-top: 10rem;
  text-align: center;
}
.w__container .more__btn {
  margin: auto;
  margin-top: 25rem;
  background: #28B3D1;
  border-color: #28B3D1;
}
.w__container .more__btn:hover {
  background: white;
}
.w__container .more__btn:hover span {
  color: #28B3D1;
}
.w__container .more__btn:hover:after {
  color: #28B3D1;
}
.w__container .more__btn span {
  color: white;
}
.w__container .more__btn:after {
  color: white;
}

@media screen and (max-width: 1300px) {
  header .bottom__menu ul li {
    padding: 0 28rem;
  }
  .frontview .gap02 {
    width: 24%;
    height: 23%;
    right: 72rem;
    top: 6rem;
    z-index: 1;
  }
  .frontview .gap01 {
    width: 24%;
    height: 23%;
    left: 50rem;
    top: 147rem;
    z-index: 1;
  }
  .frontview .gap03 {
    width: 26%;
    height: 25%;
  }
}
@media screen and (max-width: 1170px) {
  html {
    font-size: 0.8px;
  }
  footer .footer__inner ul {
    height: 155rem;
  }
  .contact__items .content__inner .c__item {
    width: 32%;
  }
  .section-interview .content__inner .interview__slider .swiper-wrapper {
    position: relative;
    left: 2%;
  }
}
@media screen and (max-width: 895px) {
  html {
    font-size: 0.7px;
  }
  footer .footer__inner ul {
    height: 177rem;
  }
  .about-teacher .content__inner .c__item {
    margin: 0 19rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.27vw;
  }
  header .top__menu {
    width: 100%;
    padding: 20rem 0;
    display: block;
  }
  header .top__menu .logo {
    width: 194rem;
    margin: auto;
  }
  header .top__menu ul li {
    padding: 0 8rem;
    margin-top: 6rem;
  }
  header .top__menu ul li a {
    font-size: 13rem;
  }
  header .top__menu ul {
    justify-content: center;
  }
  .frontview {
    margin-top: 184rem;
  }
  .frontview .gap01 {
    width: 165rem;
    height: 110rem;
    border-radius: 10rem;
    left: 24rem;
    top: -75rem;
  }
  .frontview .gap02 {
    width: 120rem;
    height: 80rem;
    right: 37rem;
    border-radius: 6rem;
    top: -74rem;
  }
  .frontview .catchcopy__text .ja__txt {
    font-size: 20rem;
    line-height: 33rem;
  }
  .frontview .catchcopy__text {
    width: 100%;
    left: 50%;
    top: 65rem;
  }
  .frontview .catchcopy__text .en__txt {
    font-size: 40rem;
    line-height: 44rem;
  }
  .frontview .gap03 {
    width: 105rem;
    height: 70rem;
    right: auto;
    left: -10rem;
    bottom: -48rem;
    border-radius: 7rem;
  }
  .frontview .bear {
    width: 68rem;
    bottom: 26rem;
    left: 160rem;
  }
  @keyframes boat {
    0% {
      opacity: 0;
      transform: translateX(80rem);
    }
    50% {
      opacity: 1;
      transform: translateX(20rem);
    }
    100% {
      opacity: 0;
      transform: translateX(-40rem);
    }
  }
  .frontview .plane {
    width: 51rem;
    top: 212rem;
    right: 78rem;
  }
  .frontview .fp {
    width: 100%;
    overflow: hidden;
  }
  .frontview .cloud01 {
    width: 68rem;
    top: 24rem;
    left: 185rem;
  }
  .frontview .cloud03 {
    width: 52rem;
    top: 200rem;
    right: 71rem;
  }
  .frontview .cloud02 {
    width: 47rem;
    top: 201rem;
    right: 350rem;
  }
  .main-detail__content p {
    font-weight: 500;
    font-size: 26rem;
    line-height: 46rem;
  }
  .main-detail__content p span {
    font-size: 16rem;
    display: block;
    line-height: 1.8;
  }
  .main-detail__content {
    margin-top: 115rem;
  }
  .main__sublink {
    width: 330rem;
    height: auto;
    margin: auto;
    margin-top: 12rem;
  }
  .main__sublink ul {
    display: block;
  }
  .main__sublink ul li {
    width: 100%;
    border-left: 0;
    border-bottom: 1rem solid #B4B4B4;
  }
  .main__sublink ul li a {
    justify-content: space-between;
    padding: 30rem;
  }
  .main__sublink ul li a .image {
    width: 100rem;
    margin-right: 10rem;
  }
  .main__sublink ul li a .content__text {
    width: 150rem;
    text-align: left;
  }
  .main__sublink ul li a .content__text .t__txt {
    font-size: 18rem;
    line-height: 29.7rem;
    letter-spacing: -0.1em;
  }
  .c__icon {
    width: 240rem;
    margin-left: 48rem;
    margin-top: 17rem;
    transform-origin: 78% 100%;
    animation: access1 1000ms linear infinite alternate;
  }
  .section-course {
    width: 300rem;
    margin-top: 30rem;
  }
  .section-course .course__header {
    padding: 38rem 4rem 4rem;
    display: block;
  }
  .section-course .course__header .content__text .text__inner {
    width: 100%;
  }
  .section-course .course__header .content__text {
    width: 100%;
    padding: 0 30rem;
  }
  .section-course .course__header .content__text .text__inner .c__title .en__txt {
    margin-top: 0;
    font-weight: bold;
    font-size: 38rem;
    margin-right: 0;
    letter-spacing: -0.05em;
    text-align: center;
    display: block;
  }
  .section-course .course__header .content__text .text__inner .c__title {
    display: block;
  }
  .section-course .course__header .content__text .text__inner .c__title .ja__txt {
    margin: auto;
    margin-top: 22rem;
  }
  .section-course .course__header .icon {
    width: 61rem;
    left: 17rem;
    top: 80rem;
  }
  .section-course .course__header .content__text .text__inner .c__txt {
    margin-top: 31rem;
    margin-bottom: 25rem;
  }
  .more__btn {
    width: 220rem;
    height: 80rem;
  }
  .section-course .course__header .image {
    width: 100%;
    height: 200rem;
    margin-top: 23rem;
    border-radius: 0 0 7rem 7rem;
  }
  .section-course .service__items {
    margin-top: 20rem;
    display: block;
  }
  .section-course .service__items .c__item {
    width: 100%;
    height: auto;
    margin-bottom: 20rem;
  }
  .section-course .service__items .c__item .image {
    width: 100%;
    height: 200rem;
  }
  .section-course .service__items .c__item .content__text {
    padding: 30rem 40rem 25rem;
  }
  .section-course .service__items .c__item .content__text .gap {
    width: 55rem;
    top: 3rem;
    left: 19rem;
  }
  .section-course .service__items .c__item .__pos {
    position: relative;
    left: auto;
    bottom: auto;
    transform: unset;
    margin-bottom: 40rem;
  }
  .section-interview .back {
    width: 100%;
  }
  .section-interview .content__inner {
    width: 100%;
    display: block;
    top: 190rem;
  }
  .section-interview .content__inner .section-title {
    position: relative;
    z-index: 1;
  }
  .section-interview .content__inner .section-title .ja__txt {
    text-align: center;
  }
  .section-interview .content__inner .section-title .en__txt {
    text-align: center;
  }
  .section-interview .content__inner .interview__slider {
    width: 100%;
    margin-left: 0;
    margin-top: 35rem;
    padding-bottom: 50rem;
  }
  .section-interview .content__inner .interview__slider .swiper-pagination {
    display: flex;
    justify-content: center;
    top: 390rem;
  }
  .section-interview .content__inner .interview__slider .swiper-pagination span {
    width: 12rem;
    height: 12rem;
    margin: 0 6rem;
    border-radius: 50%;
    display: block;
    background: #aadcdc;
    border: 1px solid #28b3d1;
    opacity: 1;
  }
  .section-interview .content__inner .interview__slider .swiper-pagination span.swiper-pagination-bullet-active {
    background: #FDF3EA;
  }
  .section-interview {
    width: 100%;
    margin-top: -130rem;
  }
  .section-interview .back .plane {
    width: 110rem;
    top: 158rem;
    right: 0;
  }
  .section-interview .back .cloud03 {
    width: 102rem;
    top: 180rem;
    right: 85%;
  }
  .section-interview .back .cloud02 {
    width: 78rem;
    top: 294rem;
  }
  .section-interview .back .bear {
    width: 200rem;
    bottom: 35rem;
    left: 13%;
  }
  .section-interview .__pos {
    display: flex;
    justify-content: center;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 155rem;
    transform: unset;
    z-index: 1;
  }
  .section-interview .__pos .more__btn {
    width: 300rem;
  }
  .section-interview .content__inner .interview__slider .swiper-wrapper {
    left: 0;
  }
  .section-osaka .content__inner {
    width: 300rem;
    height: auto;
    margin: auto;
    display: block;
    margin-top: 37rem;
  }
  .section-osaka .content__text .text__inner .gap {
    width: 154rem;
    position: absolute;
    right: 40rem;
    top: 26rem;
  }
  .section-osaka .content__text {
    width: 100%;
    padding-top: 0;
  }
  .section-osaka .content__text .text__inner {
    width: 100%;
    padding: 40rem;
    text-align: left;
  }
  .section-osaka .content__text .text__inner .c__txt {
    margin-top: 95rem;
    text-align: justify;
  }
  .section-osaka .content__text .text__inner .section-title {
    margin-top: 65rem;
  }
  .section-osaka .content__text .text__inner .ge_gap {
    width: 122rem;
    left: -20rem;
    top: 22rem;
  }
  .section-osaka .osaka__images {
    width: 100%;
    border-radius: 0 0 10rem 10rem;
    display: block;
  }
  .section-osaka .osaka__images .image:first-child {
    width: 100%;
    height: 200rem;
  }
  .section-osaka .osaka__images .image {
    width: 100%;
    height: 200rem;
  }
  .section-osaka {
    padding-bottom: 64rem;
  }
  .about-teacher {
    padding-top: 90rem;
  }
  .about-teacher .content__inner {
    display: block;
  }
  .about-teacher .content__inner .c__item {
    width: 300rem;
    margin: auto;
    padding-bottom: 0;
  }
  .about-teacher .content__inner .c__item:first-child {
    margin-bottom: 106rem;
  }
  .about-teacher .content__inner .c__item .__pos {
    position: relative;
    left: auto;
    margin-top: 25rem;
    bottom: 0;
    transform: unset;
  }
  .about-teacher .content__inner .c__item .__pos .more__btn {
    width: 100%;
  }
  .about-teacher .content__inner .c__item .content__inner .image {
    width: 180rem;
    height: 140rem;
    position: absolute !important;
    z-index: 0;
    right: 0;
    top: -43rem;
  }
  .about-teacher .content__inner .c__item .content__inner .content__text .txt {
    width: 100%;
    font-size: 16rem;
    line-height: 28.8rem;
    margin-top: 35rem;
    text-align: justify;
  }
  .about-teacher .content__inner .c__item .content__inner {
    width: 100%;
    display: block;
  }
  .section-topic {
    padding: 70rem 0 0;
    display: block;
  }
  .section-topic .topic__frame {
    margin: auto;
    width: 340rem;
    height: 500rem;
  }
  .section-topic .topic__content {
    width: 330rem;
    height: auto;
    margin: auto;
    margin-top: 45rem;
    padding: 50rem 50rem 40rem;
  }
  .section-topic .topic__content .title__content {
    justify-content: center;
  }
  .section-topic .topic__content .title__content .section-title .en__txt {
    text-align: center;
  }
  .section-topic .topic__content .title__content .section-title .ja__txt {
    text-align: center;
  }
  .section-topic .topic__content .topic__items .t__item h3 {
    width: 100%;
  }
  .section-topic .topic__content .topic__items .t__item .arrow {
    display: none;
  }
  .section-topic .__pos {
    display: flex;
    justify-content: center;
    margin-top: 50rem;
  }
  .contact__items .content__inner {
    display: block;
  }
  .contact__items .content__inner .c__item {
    width: 100%;
    height: 330rem;
    margin: 0 0 20rem;
    padding-top: 206rem;
  }
  .contact__items .content__inner .c__item .icon {
    width: 142rem;
    position: absolute;
    bottom: 150rem;
    left: 76rem;
  }
  .contact__items .content__inner .c__item:nth-child(2) .icon {
    width: 122rem;
    left: 83rem;
  }
  .contact__items .content__inner .c__item:nth-child(3) .icon {
    width: 115rem;
    left: 100rem;
  }
  footer {
    padding: 78rem 0;
  }
  footer .footer__inner .logo {
    width: 300rem;
    margin: auto;
    margin-bottom: 40rem;
  }
  footer .footer__inner {
    width: 100%;
    margin: auto;
    display: block;
  }
  footer .footer__inner ul {
    height: 170rem;
  }
  footer .footer__inner ul li {
    padding: 5rem 20rem;
  }
  footer .footer__inner ul li:nth-child(1) {
    padding-left: 70rem;
  }
  footer .footer__inner ul li:nth-child(2) {
    padding-left: 70rem;
  }
  footer .footer__inner ul li:nth-child(3) {
    padding-left: 70rem;
  }
  footer .footer__inner ul li:nth-child(4) {
    padding-left: 70rem;
  }
  footer .footer__inner ul li:nth-child(5) {
    padding-left: 70rem;
  }
  footer .footer__inner ul.sp-block {
    height: 75rem;
  }
  footer .copyright {
    margin-top: 45rem;
  }
  footer .facebook {
    bottom: 70rem;
    right: 25rem;
  }
  .sp-menu-bar {
    display: flex;
    justify-content: right;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 14;
  }
  .sp-menu-bar .sp-menu {
    width: 60rem;
    height: 60rem;
    border-radius: 30rem 0 0 0;
    background: white;
    cursor: pointer;
    position: relative;
  }
  .sp-menu-bar .sp-menu.open span:nth-child(1) {
    top: 30rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu-bar .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu-bar .sp-menu.open span:nth-child(3) {
    top: 30rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu-bar .sp-menu span {
    width: 26rem;
    height: 0;
    border-top: 1rem solid #28B3D1;
    position: absolute;
    top: 21rem;
    left: 50%;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu-bar .sp-menu span + span {
    top: 30rem;
  }
  .sp-menu-bar .sp-menu span + span + span {
    top: 40rem;
  }
  .sp-menu-bar .entry__btn {
    width: 220rem;
    height: 60rem;
    background: #28b3d1;
    border: 1rem solid #28b3d1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
  .sp-menu-bar .entry__btn:hover {
    background: white;
  }
  .sp-menu-bar .entry__btn:hover span {
    color: #28b3d1;
  }
  .sp-menu-bar .entry__btn span {
    font-weight: 500;
    font-size: 16rem;
    line-height: 28.8rem;
    text-align: center;
    color: #fff;
    transition: 0.3s;
  }
  header .bottom__menu ul {
    width: 100%;
    height: 100%;
    background: white;
    position: fixed;
    padding-top: 130rem;
    left: 0;
    top: 0;
    z-index: 3;
    display: none;
  }
  header .bottom__menu ul li {
    padding: 15rem 0;
    text-align: center;
    border: 0;
  }
  .breadcrumb {
    padding: 110rem 20rem 0 20rem;
  }
  .subfrontview {
    margin-top: 50rem;
  }
  .subfrontview .gap02 {
    width: 67rem;
    bottom: 0;
    left: 15rem;
  }
  .subfrontview .gap01 {
    width: 155rem;
    bottom: -58rem;
    right: 24rem;
  }
  .subfrontview .plane {
    width: 110.66rem;
    right: 111rem;
    top: -12rem;
  }
  .about__wrapper {
    margin-top: 72rem;
    display: block;
  }
  .subfrontview .subtitle {
    width: 100%;
    top: 40%;
  }
  .subfrontview .subtitle.c01 {
    top: 47%;
  }
  .subfrontview .subtitle .ja__txt {
    margin-top: 12rem;
  }
  .about__wrapper .link__content {
    width: 300rem;
    margin: auto;
    padding: 18rem 20rem;
    position: relative;
    top: 0;
  }
  .about__wrapper .link__content ul {
    display: flex;
    flex-wrap: wrap;
  }
  .about__wrapper .link__content ul li {
    width: 40%;
    padding: 7rem;
  }
  .about__wrapper .link__content ul li:nth-child(odd) {
    width: 60%;
    padding-right: 20rem;
  }
  .about__wrapper .link__content ul li a .lbl {
    letter-spacing: -0.05em;
  }
  .about__wrapper .about__content {
    width: 100%;
    margin-left: 0;
    margin-top: 50rem;
  }
  .about__wrapper .about__content .c__item .edu__philo {
    display: block;
  }
  .about__wrapper .about__content .c__item {
    padding: 50rem 35rem;
  }
  .about__wrapper .about__content .c__item .edu__philo .content__text {
    width: 100%;
  }
  .about__wrapper .about__content .c__item .edu__philo .image {
    width: 100%;
    margin-top: 25rem;
  }
  .about__wrapper .about__content .c__item .edu__index {
    width: 100%;
    padding: 22rem;
  }
  .about__wrapper .about__content .c__item .edu__index p {
    font-size: 20rem;
    line-height: 32rem;
    text-align: left;
    padding: 5rem 0 5rem 30rem;
    text-indent: -26rem;
  }
  .about__wrapper .about__content .c__item .edu__index .gap {
    width: 65rem;
    left: auto;
    right: 25rem;
    top: 22%;
    transform: translateY(-50%);
  }
  .about__wrapper .about__content .c__item .message__content {
    display: block;
  }
  .about__wrapper .about__content .c__item .message__content .content__text {
    width: 100%;
  }
  .about__wrapper .about__content .c__item .message__content .image {
    margin: auto;
    margin-top: 45rem;
  }
  .about__wrapper .about__content .c__item ul.pdf__links li {
    margin-right: 0;
  }
  .about__wrapper .about__content .c__item ul.pdf__links li a .lbl {
    letter-spacing: -0.05em;
  }
  .about__wrapper .about__content .c__item table tr {
    display: grid;
  }
  .about__wrapper .about__content .c__item table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .about__wrapper .about__content .c__item table tr td:last-child {
    padding-top: 2rem;
  }
  .about__wrapper .about__content .c__item table tr td .more__btn {
    margin: auto;
    margin-top: 15rem;
  }
  .about__wrapper .about__content .c__item .map {
    width: 100%;
    height: 300rem;
    margin-top: 40rem;
  }
  .facility__slider {
    margin-top: 10rem;
    padding: 0 0 60rem !important;
  }
  .facility__slider .c__item .image {
    width: 300rem;
    margin: auto;
    height: 200rem;
  }
  .facility__slider .swiper-button-next:after {
    top: -90rem;
  }
  .facility__slider .swiper-button-next:before {
    top: -90rem;
  }
  .facility__slider .c__item .c__lbl {
    width: 300rem;
    margin: auto;
    margin-top: 15rem;
  }
  .subfrontview .gap01.c10 {
    width: 115rem;
    bottom: -50rem;
    right: 30rem;
  }
  .course__wrapper {
    margin-top: 80rem;
  }
  .course__wrapper .column__content {
    display: block;
  }
  .course__wrapper .column__content .title__content {
    width: 300rem;
    margin: auto;
  }
  .course__wrapper .column__content .content__items .c__item {
    padding: 60rem 35rem;
  }
  .course__wrapper .column__content .content__items .c__item .detail__content {
    display: block;
    margin-top: 35rem;
  }
  .course__wrapper .column__content .content__items .c__item .detail__content .image {
    width: 300rem;
    margin-top: 25rem;
  }
  .course__wrapper .column__content .content__items .c__item table tr td:first-child {
    width: 85rem;
    padding-left: 9rem;
  }
  .course__wrapper .column__content .content__items .c__item table tr td:nth-child(2) {
    width: 135rem;
  }
  .course__wrapper .column__content .content__items {
    width: 100%;
  }
  .course__wrapper .column__content .content__items .c__item table {
    width: 350rem;
    margin-left: -25rem;
    margin-top: 30rem;
  }
  .course__wrapper .column__content .content__items .c__item table tr td {
    padding: 12rem 18rem;
    font-size: 15rem;
  }
  .course__wrapper .column__content .content__items .c__item table.c01 tr td:first-child {
    width: 70rem;
    padding-left: 3rem;
  }
  .course__wrapper .column__content .content__items .c__item table.c01 tr td {
    width: 95rem;
    padding: 12rem 9rem;
    font-size: 14rem;
  }
  .course__wrapper .weekly-schedule {
    width: 100%;
    margin: auto;
    padding: 50rem 0;
    display: block;
  }
  .course__wrapper .weekly-schedule .content__text {
    width: 300rem;
    margin: auto;
  }
  .course__wrapper .weekly-schedule .content__text .section-title .en__txt {
    font-size: 40rem;
  }
  .course__wrapper .weekly-schedule .content__text .c__txt {
    text-align: justify;
  }
  .course__wrapper .weekly-schedule .table-content {
    width: 350rem;
    margin: auto;
    margin-top: 25rem;
  }
  .course__wrapper .weekly-schedule .table-content table tr td:first-child {
    width: 80rem;
    writing-mode: unset;
  }
  .course__wrapper .weekly-schedule .table-content table tr td {
    writing-mode: vertical-lr;
    paint-order: normal;
    white-space: pre;
  }
  .course__wrapper .weekly-schedule .table-content table tr:first-child td {
    writing-mode: unset;
  }
  .admission__wrapper {
    width: 100%;
  }
  .admission__wrapper .admission-content {
    width: 100%;
    display: block;
  }
  .admission__wrapper .admission-content .section-title {
    width: 300rem;
    margin: auto;
  }
  .admission__wrapper .admission-content .content__text {
    width: 100%;
  }
  .admission__wrapper .admission-content .content__text .c__item {
    padding: 65rem 35rem;
  }
  .admission__wrapper .admission-content .content__text .c__item:first-child {
    padding-top: 50rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .document-table tr td:first-child {
    width: 100rem;
    padding-left: 10rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .document-table tr td {
    font-size: 15rem;
    padding: 12rem 2rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .document-table tr td:nth-child(2) {
    width: 40rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .document-table tr td:nth-child(3) {
    width: 40rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .document-table tr td:nth-child(4) {
    width: 40rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .document__list {
    width: 350rem;
    margin-top: 30rem;
    margin-left: -25rem;
    border-radius: 6rem;
    background: #fff;
    padding: 25rem;
    display: block;
  }
  .admission__wrapper .admission-content .content__text .c__item .document__list .p__text {
    font-weight: 500;
    font-size: 16rem;
    line-height: 40rem;
    padding: 35rem 0;
    border: 0;
    border-bottom: 1rem dashed #28B3D1;
  }
  .admission__wrapper .admission-content .content__text .c__item .document__list .p__text:last-of-type {
    border-bottom: 0;
  }
  .admission__wrapper .admission-content .content__text .c__item .document__list .p__text:first-of-type {
    padding-left: 0;
    padding-top: 0;
  }
  .admission__wrapper .admission-content .content__text .c__item .document__list .download__link {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .admission__wrapper .admission-content .content__text .c__item:last-child {
    border-bottom: 1rem solid #28b3d1;
  }
  .admission__wrapper .cost-content {
    padding: 42rem 0 60rem;
  }
  .admission__wrapper .cost-content .title__pos {
    position: relative;
    padding-left: 35rem;
    top: 0;
  }
  .admission__wrapper .cost-content .title__pos .section-title .en__txt {
    font-size: 40rem;
  }
  .admission__wrapper .cost-content table {
    width: 350rem;
    margin: auto;
    margin-top: 35rem;
  }
  .admission__wrapper .cost-content table tr td:first-child {
    width: 88rem;
    padding-left: 0;
  }
  .admission__wrapper .cost-content table tr td {
    vertical-align: baseline;
  }
  .admission__wrapper .cost-content table tr:nth-child(2) td:last-child {
    font-weight: bold;
    color: #28B3D1;
  }
  .admission__wrapper .cost-content table tr:nth-child(3) td:last-child {
    font-weight: bold;
    color: #28B3D1;
  }
  .admission__wrapper .cost-content table tr:first-child td {
    letter-spacing: -0.05em;
  }
  .admission__wrapper .scholarship-content {
    padding: 50rem 0;
    display: block;
  }
  .admission__wrapper .scholarship-content .section-title {
    padding-left: 35rem;
  }
  .admission__wrapper .scholarship-content .section-title .en__txt {
    font-size: 40rem;
  }
  .admission__wrapper .scholarship-content .content__text .c__item .c__lbl {
    padding-left: 35rem;
    margin-top: 30rem;
  }
  .admission__wrapper .scholarship-content .content__text .c__item table {
    width: 350rem;
    background: white;
    margin: auto;
    border-collapse: collapse;
    margin-bottom: 40rem;
    display: none;
  }
  .admission__wrapper .scholarship-content .content__text {
    width: 100%;
  }
  .admission__wrapper .scholarship-content .content__text .c__item {
    padding: 0 10rem;
  }
  .admission__wrapper .scholarship-content .content__text .c__item img {
    margin-bottom: 20rem;
  }
  .subfrontview .gap01.c02 {
    width: 93rem;
    bottom: -39rem;
  }
  .event__wrapper {
    width: 100%;
    margin: auto;
    margin-top: 70rem;
    padding-bottom: 45rem;
  }
  .event__wrapper .detail__content {
    padding-bottom: 50rem;
    display: block;
  }
  .event__wrapper .detail__content .image {
    margin: auto;
  }
  .event__wrapper .detail__content .c__txt {
    width: 300rem;
    margin: auto;
    margin-top: 35rem;
    text-align: justify;
  }
  .event__wrapper .detail__content .gap__image {
    position: relative;
    margin: auto;
  }
  .event__wrapper .event__items {
    padding-top: 60rem;
  }
  .event__wrapper .event__items .e__item {
    width: 100%;
    padding: 0 35rem;
    margin-bottom: 45rem;
  }
  .event__wrapper .__pos .more__btn {
    width: 300rem;
  }
  .support__wrapper {
    width: 300rem;
    margin: auto;
    margin-top: 70rem;
    padding-bottom: 50rem;
  }
  .support__wrapper .content__items .c__item {
    display: block;
    margin-bottom: 70rem;
  }
  .support__wrapper .content__items .c__item .image {
    width: 100%;
    margin: 0;
  }
  .subfrontview .gap01.c03 {
    width: 151rem;
    bottom: -37rem;
  }
  .support__wrapper .content__items .c__item:nth-child(odd) .image {
    margin-right: 0;
    margin-left: 0;
  }
  .support__wrapper .content__items .c__item .content__text {
    width: 100%;
    margin-top: 33rem;
  }
  .support__wrapper .content__items .c__item .content__text p {
    text-align: justify;
  }
  .graducation__wrapper .detail__content .content__text {
    width: 300rem;
  }
  .subfrontview .gap01.c04 {
    width: 125rem;
    bottom: -40rem;
    right: 28rem;
  }
  .graducation__wrapper {
    width: 100%;
    margin: auto;
    margin-top: 70rem;
    padding-bottom: 65rem;
  }
  .graducation__wrapper .detail__content {
    width: 300rem;
    margin: auto;
    flex-direction: column-reverse;
  }
  .graducation__wrapper .detail__content .image {
    width: 100%;
    display: flex;
    margin-left: 0;
    margin-bottom: 35rem;
  }
  .graducation__wrapper .career-education {
    width: 300rem;
    margin: auto;
    margin-top: 60rem;
  }
  .graducation__wrapper .career-education .c__item .content__text {
    padding: 55rem 50rem;
  }
  .graducation__wrapper .career-education .c__item .content__text ul li {
    width: 100%;
    text-indent: 0;
    padding: 0;
    margin-bottom: 15rem;
    display: flex;
    align-items: flex-start;
  }
  .graducation__wrapper .career-education .c__item .content__text ul li:last-child {
    margin-bottom: 0;
  }
  .graducation__wrapper .career-education .c__item {
    margin-bottom: 70rem;
  }
  .subfrontview .gap01.c05 {
    width: 175rem;
    bottom: -27rem;
    right: 20rem;
  }
  .teacher__wrapper {
    width: 300rem;
    margin: auto;
    margin-top: 120rem;
  }
  .teacher__wrapper .t__item .content__text {
    width: 100%;
    padding-top: 0;
  }
  .teacher__wrapper .t__item {
    width: 100%;
    position: relative;
  }
  .teacher__wrapper .t__item:last-child {
    margin-bottom: 50rem;
  }
  .teacher__wrapper .t__item .image {
    width: 100rem;
    height: 150rem;
    background: #DADADA;
    border-radius: 6rem;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -48rem;
  }
  .teacher__wrapper .t__item .content__text .c__txt {
    margin-top: 45rem;
  }
  .subfrontview .gap01.c06 {
    width: 150rem;
    bottom: -33rem;
    right: 38rem;
  }
  .interviews__wrapper {
    width: 100%;
    margin: auto;
    margin-top: 70rem;
    padding-bottom: 60rem;
  }
  .interviews__wrapper .c__item {
    width: 300rem;
    margin: auto;
    margin-bottom: 65rem;
    display: block;
  }
  .interviews__wrapper .c__item .image {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 40rem;
  }
  .interviews__wrapper .c__item .content__text {
    width: 100%;
    text-align: center;
  }
  .interviews__wrapper .c__item .content__text .name {
    text-align: center;
  }
  .news__wrapper {
    width: 330rem;
    height: auto;
    margin: 70rem auto 40rem;
    border-radius: 6rem;
    padding: 55rem 50rem;
  }
  .news__wrapper .new__item .arrow {
    display: none;
  }
  .news__wrapper .new__item {
    padding: 28rem 0;
  }
  .pagination {
    margin-top: 40rem;
    margin-bottom: 60rem;
  }
  .news-detail__wrapper {
    width: 330rem;
    height: auto;
    margin: auto;
    margin-top: 70rem;
    border-radius: 6rem;
    padding: 55rem;
  }
  .news-detail__wrapper .content__text {
    margin-top: 30rem;
    padding-top: 45rem;
  }
  .control__btns {
    width: 330rem;
    height: auto;
    margin: auto;
    margin-top: 40rem;
    margin-bottom: 135rem;
    justify-content: center;
    position: relative;
  }
  .control__btns .c__btn.list {
    width: 200rem;
    margin-left: 0;
    position: absolute;
    bottom: -75rem;
    left: 50%;
    transform: translate(-50%);
  }
  .about__wrapper {
    margin-top: 70rem;
  }
  .subfrontview .gap01.c08 {
    width: 104rem;
    bottom: -41rem;
    right: 44rem;
  }
  .faq__wrapper {
    margin-top: 50rem;
    padding-bottom: 65rem;
    display: block;
  }
  .faq__wrapper .link__content {
    width: 300rem;
    padding: 18rem 20rem;
    height: auto;
    margin: auto;
    margin-top: 55rem;
    border-radius: 6rem;
    background: #28b3d1;
    box-shadow: 0 0 20rem rgba(41, 178, 209, 0.4);
    position: relative;
    top: auto;
  }
  .faq__wrapper .link__content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq__wrapper .link__content ul li {
    width: 115rem;
  }
  .faq__wrapper .faq__content {
    width: 100%;
    margin-left: 0;
    margin: auto;
  }
  .faq__wrapper .faq__content .f__item {
    width: 100%;
    display: block;
    padding: 50rem 35rem;
  }
  .faq__wrapper .faq__content .f__item .content__text {
    width: 100%;
    margin-top: 15rem;
  }
  .faq__wrapper .faq__content .f__item .content__text .b__item {
    width: 100%;
    margin-bottom: 35rem;
  }
  .faq__wrapper .faq__content .f__item .content__text .b__item .t__title .q__txt {
    width: 72%;
  }
  .faq__wrapper .faq__content .f__item .content__text .b__item .a__box {
    width: 100%;
    height: auto;
    margin-top: 22rem;
    padding: 25rem 20rem;
  }
  .contact__wrapper {
    width: 330rem;
    height: auto;
    margin: auto;
    padding: 55rem 50rem 40rem;
    margin-top: 70rem;
    margin-bottom: 65rem;
    border-radius: 6rem;
  }
  .contact__wrapper .nt__text {
    display: block;
  }
  .contact__wrapper .nt__text .q__lbl {
    font-weight: 700;
    margin-right: 0;
    font-size: 16rem;
    display: block;
    margin-bottom: 4rem;
  }
  .contact__wrapper .contact__frame {
    margin-top: 25rem;
    padding-top: 36rem;
  }
  .contact__wrapper .contact__frame table tr {
    display: grid;
  }
  .contact__wrapper .contact__frame table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .contact__wrapper .contact__frame table tr td:last-child {
    padding-top: 10rem;
  }
  .contact__wrapper .contact__frame table tr td input[type=text], .contact__wrapper .contact__frame table tr td input[type=email] {
    width: 100%;
  }
  .contact__wrapper .contact__frame .privacy__content {
    margin-top: 30rem;
    padding: 20rem 30rem;
  }
  .contact__wrapper .contact__frame .privacy__chk span {
    font-size: 18rem;
    line-height: 26rem;
  }
  .contact__wrapper .contact__frame .privacy__chk {
    margin-top: 32rem;
    align-items: baseline;
  }
  .more__btn.submit {
    margin-top: 35rem;
  }
  .contact__wrapper .contact__frame table tr td input[type=text].tel, .contact__wrapper .contact__frame table tr td input[type=email].tel {
    width: 100%;
  }
  .subfrontview .gap01.c09 {
    width: 125rem;
    bottom: -42rem;
    right: 55rem;
  }
  .facility__slider .swiper-wrapper {
    left: auto;
  }
  .frontview .ge {
    width: 52rem;
    bottom: 63rem;
    right: 92rem;
  }
  .section-interview .back .iw01 {
    width: 49rem;
    bottom: 192rem;
    right: 25rem;
  }
  .section-interview .back .iw03 {
    width: 35rem;
    bottom: 183rem;
    left: 0rem;
  }
  .section-interview .back .iw02 {
    width: 75rem;
    bottom: 182rem;
    left: 132rem;
  }
  .w__container {
    margin: 200rem 0 100rem;
  }
  header .bottom__menu {
    height: auto;
  }
  .subfrontview .gap01.c07 {
    width: 120rem;
    bottom: -39rem;
    right: 21rem;
  }
  .news__wrapper .new__item h3 {
    width: 100%;
  }
  .contact__items .content__inner .c__item .icon.teacher {
    width: 203rem;
    left: 50rem;
  }
  .contact__items .content__inner .c__item .icon.course {
    width: 123rem;
    left: 99rem;
  }
  .contact__items .content__inner .c__item .icon.guide {
    width: 142rem;
    left: 81rem;
  }
  .contact__items .content__inner .c__item .icon.support {
    width: 187rem;
    left: 69rem;
  }
  .contact__items .content__inner .c__item .icon.event {
    width: 92rem;
    left: 117rem;
  }
  .contact__items .content__inner .c__item .icon.graduation {
    width: 142rem;
    left: 104rem;
    bottom: 135rem;
  }
  .admission__wrapper .admission-content .content__text .c__item .pt__image {
    width: 300rem;
    margin-top: 34rem;
    display: flex;
    position: relative;
    top: 0;
    right: 0;
  }
  .contact__items .content__inner .c__item .icon.about {
    width: 173rem;
    left: 83rem;
    bottom: 144rem;
  }
  .contact__items .content__inner .c__item .icon.interview {
    width: 208rem;
    left: 55rem;
    bottom: 147rem;
  }
  .section-osaka .osaka__images .image:nth-child(2) {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .section-topic .topic__content .topic__items .t__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .course__wrapper .column__content .content__items .c__item .detail__content .content__text .c__txt {
    letter-spacing: -0.02em;
  }
  .admission__wrapper .admission-content .content__text .c__item .enter__study li span.c01 {
    font-weight: 400;
    font-size: 14rem;
    color: #505050;
    padding-left: 16rem;
    letter-spacing: -0.1em;
    display: block;
  }
  .admission__wrapper .admission-content .content__text .c__item .enter__study li {
    text-indent: -17rem;
  }
  .support__wrapper .content__items .c__item .content__text p span {
    display: block;
    padding-left: 20rem;
    text-indent: -25rem;
  }
  .support__wrapper .content__items .c__item .content__text p span span {
    left: 13rem;
  }
  .graducation__wrapper .career-education .c__item .content__text ul li span {
    margin-right: 3rem;
  }
  .graducation__wrapper .career-education .c__item .content__text ul li:nth-child(n+10) {
    text-indent: 0;
    padding-left: 0;
  }
  .faq__wrapper .faq__content .f__item .content__text .b__item .t__title .sign {
    top: auto;
    bottom: 0;
  }
  .section-topic .topic__frame iframe {
    width: 95%;
    margin: auto;
  }
  .section-interview .content__inner .interview__slider .c__item .image {
    width: 100%;
    height: 75vw;
  }
  .section-interview .content__inner .interview__slider .c__item .name {
    font-size: 4.1vw;
  }
  .about-teacher .content__inner .c__item .content__inner .content__text .t__txt {
    line-height: 1.4;
  }
}/*# sourceMappingURL=style.css.map */