html {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.6rem;
  }
}

header, main, section, aside, footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #074097;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@-webkit-keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@-webkit-keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  height: 10rem;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 12rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem 1rem;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    padding: 2rem 0;
  }
}
.header__logo {
  width: 26.4rem;
}
.header__sub {
  width: 18.3rem;
  margin-top: 1rem;
}

.main {
  line-height: 1.6;
}

.wrapper {
  max-width: 1600px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}
@media print, screen and (min-width: 768px) {
  .wrapper.middle {
    max-width: 1400px;
    width: 90%;
  }
}
@media print, screen and (min-width: 768px) {
  .wrapper.small {
    max-width: 1100px;
    width: 80%;
  }
}

.mv {
  position: fixed;
  top: 0;
  padding-top: 63%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .mv {
    padding-top: 72%;
  }
}
.mv::before, .mv::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
.mv::before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  inset: 0;
}
.mv__wrapper {
  position: absolute;
  top: 10rem;
}
@media only screen and (max-width: 767px) {
  .mv__wrapper {
    top: 12rem;
  }
}
.mv__scroll {
  position: absolute;
  text-align: center;
  top: 63%;
  left: 2.5%;
  margin: auto;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  white-space: nowrap;
  z-index: 1;
}
.mv__scroll p {
  position: relative;
  display: inline-block;
  padding-bottom: 10.5rem;
}
.mv__scroll p::before, .mv__scroll p::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.2rem;
}
.mv__scroll p::before {
  height: 9rem;
  background-color: #fff;
  bottom: 0;
}
.mv__scroll p::after {
  height: 0rem;
  background-color: #074097;
  bottom: 8rem;
  -webkit-animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
          animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

.page-content {
  margin-top: 63%;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .page-content {
    padding-bottom: 12rem;
    margin-top: 72%;
  }
}

.hero {
  position: relative;
}
.hero::before, .hero::after {
  content: "";
  display: block;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero::before {
  background-color: #66d0eb;
  left: 0;
}
.hero::after {
  background-color: #afd886;
  right: 0;
}
.hero__area {
  height: 87.5rem;
  background: url(../../images/school/top/hero_bg01.png) no-repeat left top -30rem/50%, url(../../images/school/top/hero_bg02.png) no-repeat right bottom -30rem/50%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero__area {
    height: 99.2rem;
    background-position: left -450% top 20rem, right -400% bottom;
    background-size: 91%, 90%;
    overflow: hidden;
  }
}
.hero__area.is-active {
  background-position: left top, right bottom;
}
@media only screen and (max-width: 767px) {
  .hero__area.is-active {
    background-position: left -450% top, right -400% bottom 12rem;
  }
}
.hero__area .logo, .hero__area .people, .hero__area .text01, .hero__area .text02 {
  position: absolute;
}
.hero__area .logo {
  top: 3.5%;
  left: -3.5%;
  width: 20rem;
}
@media only screen and (max-width: 767px) {
  .hero__area .logo {
    width: 18rem;
    top: 4.5%;
    left: 4.5%;
  }
}
.hero__area .people {
  width: 57.6%;
  bottom: 0;
  left: 55%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .hero__area .people {
    width: 103%;
    left: 59%;
  }
}
.hero__area .text01 {
  left: 3%;
  bottom: 25%;
  width: 36.7%;
}
@media only screen and (max-width: 767px) {
  .hero__area .text01 {
    left: 8%;
    bottom: 18%;
    width: 62.5%;
  }
}
.hero__area .text02 {
  bottom: 6%;
  left: 1%;
  width: 35.2%;
}
@media only screen and (max-width: 767px) {
  .hero__area .text02 {
    bottom: 2%;
    left: 4%;
    width: 60%;
  }
}
.hero__band {
  background-color: #074097;
  height: 10rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero__band .swiper {
    width: 170%;
    top: 8%;
  }
}
@media only screen and (max-width: 767px) {
  .hero__band .swiper-wrapper {
    transition-timing-function: linear;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__band .img {
    margin-top: 0.5rem;
    padding: 0 4.5%;
  }
}
@media only screen and (max-width: 767px) {
  .hero__band .img figure > img {
    height: 100%;
  }
}
.hero__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .hero__gallery {
    flex-wrap: wrap;
  }
}
.hero__gallery .item {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .hero__gallery .item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .hero .wrapper {
    width: 100%;
  }
}

.bnr-area {
  padding: 12rem 0;
}
.bnr-area a {
  display: block;
}
.bnr-area a:hover .img {
  transition: all 0.3s;
}
@media print, screen and (min-width: 768px) {
  .bnr-area a:hover .img {
    opacity: 0.7;
  }
}

.shop-info {
  padding: 6rem 0;
  background-color: #e5f7fc;
}
@media only screen and (max-width: 767px) {
  .shop-info {
    padding: 8rem 0;
  }
}
.shop-info__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-info__title .img {
  width: 26.4rem;
}
@media only screen and (max-width: 767px) {
  .shop-info__title .img {
    width: 23.8rem;
  }
}
.shop-info__title .text {
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  color: #e0334e;
  margin-left: 4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .shop-info__title .text {
    font-size: 4.5rem;
  }
}
.shop-info__title .text::before {
  content: "";
  display: block;
  background-color: #faf221;
  width: 105%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.shop-info__title .text .large {
  font-size: 7.4rem;
}
@media only screen and (max-width: 767px) {
  .shop-info__title .text .large {
    font-size: 6.6rem;
  }
}
.shop-info__title .text .inner {
  display: inline-block;
  position: relative;
  z-index: 1;
  top: -1rem;
}
.shop-info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 5rem auto;
}
@media print, screen and (min-width: 768px) {
  .shop-info__list {
    width: 65.7%;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__list {
    gap: 1.3rem;
    margin: 6rem auto;
  }
}
.shop-info__list .item {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0075c1;
  border: 1px solid #0075c1;
  padding: 0.4rem 1.3rem;
  background-color: #fff;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .shop-info__list .item {
    font-size: 2.8rem;
    padding: 0.4rem 2.3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .shop-info__list .item:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.shop-info__list .item.active {
  color: #fff;
  background-color: #4c9ed4;
}
.shop-info__container {
  background-color: #fff;
  padding-bottom: 4rem;
}
.shop-info__container .container_title {
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  background-color: #074097;
  padding: 1rem 0;
}
.shop-info__container .container_item:not(.active) {
  display: none;
}
.shop-info__container .container_item .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: unset;
  width: 90%;
  margin: 5rem auto 0;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content {
    flex-wrap: wrap;
    margin: 3rem auto 0;
    width: 93%;
  }
}
.shop-info__container .container_item .content__item {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item:not(:first-of-type) {
    margin-top: 4rem;
  }
}
.shop-info__container .container_item .content__item .title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #0075c1;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item .title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}
.shop-info__container .container_item .content__item .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0075c1;
  margin-left: 2rem;
}
.shop-info__container .container_item .content__item .img {
  aspect-ratio: 600/400;
  overflow: hidden;
}
.shop-info__container .container_item .content__item .img > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
}
.shop-info__container .container_item .content__item .inner {
  background-color: #f2f2f2;
  padding: 1.5rem 2rem 2rem;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item .inner {
    padding: 2.5rem 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main .title {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main .img {
    width: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .shop-info__container .container_item .content__item.item-main .text {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main .text {
    width: 46%;
    line-height: 1.45;
  }
}
.shop-info__container .container_item .content__item.item-main .tel {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin: 1.2rem 0;
  position: relative;
  padding-left: 4rem;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main .tel {
    font-size: 3.64rem;
    padding-left: 4.8rem;
    margin: 1.5rem 0;
  }
}
.shop-info__container .container_item .content__item.item-main .tel::before {
  content: "";
  width: 3.1rem;
  height: 3.1rem;
  display: block;
  background: url(../../images/school/top/icon_tel_bg.png) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 1.4rem;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main .tel::before {
    width: 4.35rem;
    height: 4.35rem;
  }
}
.shop-info__container .container_item .content__item.item-main .link {
  font-size: 1.4rem;
  display: block;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-main .link {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
@media print, screen and (min-width: 768px) {
  .shop-info__container .container_item .content__item.item-sub .inner {
    display: flex;
    justify-content: flex-end;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-sub .inner {
    min-height: 20.6rem;
  }
}
.shop-info__container .container_item .content__item.item-sub .inner .img {
  width: 85%;
  margin: 1.5rem auto 0;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_item .content__item.item-sub .inner .img {
    float: right;
    width: 40%;
    margin: 0 0 0 3.5rem;
  }
}
.shop-info__container .container_btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_btn {
    margin-top: 4rem;
  }
}
.shop-info__container .container_btn .btn {
  display: inline-block;
  min-width: 30rem;
  font-size: 1.9rem;
  font-weight: bold;
  background-color: #faf221;
  border-radius: 50px;
  padding: 1rem 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_btn .btn {
    font-size: 3.2rem;
    width: 65%;
    padding: 1.5rem 0;
  }
}
.shop-info__container .container_btn .btn::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../images/school/top/icon_arrow_black.svg) no-repeat center center/100%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease-in;
}
@media only screen and (max-width: 767px) {
  .shop-info__container .container_btn .btn::after {
    width: 2.6rem;
    height: 2.6rem;
    right: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .shop-info__container .container_btn .btn:hover::after {
    right: 1.5rem;
  }
}

.instructor {
  padding: 6rem 0;
  background: repeating-linear-gradient(135deg, rgba(204, 227, 243, 0.5), rgba(204, 227, 243, 0.5) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
}
@media only screen and (max-width: 767px) {
  .instructor {
    padding: 8rem 0;
  }
}
.instructor__title {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}
.instructor__container {
  margin-top: 5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .instructor__container {
    width: 80%;
    margin: 6rem auto 0;
  }
}
.instructor__container .swiper-button-prev, .instructor__container .swiper-button-next {
  top: 26%;
  width: 10.4rem;
  height: 10.4rem;
}
.instructor__container .swiper-button-prev::after, .instructor__container .swiper-button-next::after {
  content: "";
  display: block;
  background: url(../../images/school/top/icon_arrow_bg.svg) no-repeat center center/100%;
  position: absolute;
  inset: 0;
}
.instructor__container .swiper-button-prev {
  left: -10%;
}
@media only screen and (max-width: 767px) {
  .instructor__container .swiper-button-prev {
    left: -15%;
  }
}
.instructor__container .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.instructor__container .swiper-button-next {
  right: -10%;
}
@media only screen and (max-width: 767px) {
  .instructor__container .swiper-button-next {
    right: -15%;
  }
}
.instructor .container_item {
  padding: 0 2.25rem;
}
.instructor .container_img .img {
  width: 100%;
  aspect-ratio: 1/1;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #00b1dd;
}
@media only screen and (max-width: 767px) {
  .instructor .container_img .img {
    width: 85%;
  }
}
.instructor .container_img .img img {
  max-width: unset;
  width: 105%;
  transform: translate(-4.5%, -2%);
}
.instructor .container_img .name {
  width: 94%;
  height: 9.36rem;
  margin: -5.5rem auto 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .instructor .container_img .name {
    height: 14rem;
    width: 86%;
    margin: -7.5rem auto 0;
  }
}
.instructor .container_img .name::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/school/top/inst_deco_name.png) no-repeat center center/100%;
  position: absolute;
  top: -3.2rem;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .instructor .container_img .name::before {
    top: -4.6rem;
  }
}
.instructor .container_img .name p {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .instructor .container_img .name p {
    font-size: 3.6rem;
  }
}
.instructor .container_img .name .sub {
  font-size: 1.5rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .instructor .container_img .name .sub {
    font-size: 2.2rem;
  }
}
.instructor .container_info {
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .instructor .container_info {
    padding: 0 2rem;
  }
}
.instructor .container_info .detail .shop {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .instructor .container_info .detail .shop {
    font-size: 3rem;
  }
}
.instructor .container_info .detail p + p {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .instructor .container_info .detail p + p {
    margin-top: 1.5rem;
  }
}

.movie {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .movie {
    padding: 12rem 0;
  }
}
.movie__container {
  box-shadow: 7px 7px 11px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  position: relative;
  width: 73.3%;
  padding: 1rem;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .movie__container {
    width: 100%;
  }
}
.movie__container::before {
  content: "";
  display: block;
  width: 6.1rem;
  height: 4.2rem;
  background: url(../../images/school/top/icon_youtube.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .movie__container::before {
    width: 9.1rem;
    height: 6.4rem;
  }
}
.movie__container .container_movie {
  position: relative;
}
.movie__container .container_movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 740/418;
  display: block;
  margin: auto;
}

.footer {
  background-color: #f2f2f2;
  padding: 6rem 0;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container {
    position: relative;
    padding-bottom: 10rem;
  }
}
.footer .foot-left {
  position: relative;
}
.footer .foot-left .logo {
  width: 26.5rem;
  height: 7.5rem;
}
.footer .foot-right {
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .footer .foot-right {
    flex-direction: column;
  }
}
.footer .foot-right .home::before {
  background-image: url(../../images/school/top/home.svg);
}
.footer .foot-right .lesson::before {
  background-image: url(../../images/school/top/lesson.svg);
}
.footer .foot-right .foot-menu {
  font-weight: bold;
  display: flex;
  justify-content: end;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer .foot-right .foot-menu {
    margin-top: 3rem;
  }
}
.footer .foot-right .foot-menu li:before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 13px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer .foot-right .foot-cp {
  font-family: "Barlow";
  font-weight: 700;
  font-size: 1.2rem;
  margin: auto 0 0;
}
@media only screen and (max-width: 767px) {
  .footer .foot-right .foot-cp {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.flow_circle {
  z-index: 2;
}