@charset "UTF-8";
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

br {
  line-height: initial;
}

a {
  text-decoration: none;
}

section {
  padding: 50px 0;
}

.header {
  position: fixed;
  top: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 5px;
  transition: all 0.3s;
  background-color: #f6c215;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 5px 10px;
  }
}
.header__logo h1 {
  margin-left: 10px;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 120px;
  }
}
.header .logo__link {
  color: #fff;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
}
.header .global-nav ul {
  margin: 0px;
}
.header .global-nav__list {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  padding-left: 4vw;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .header .global-nav__list {
    /*                 display: flex;
                   display: -webkit-box;
                   display: -ms-flexbox;
                   align-items: center;
                   flex-direction: column;
                   justify-content: center;
    */
    width: 100%;
  }
}
.header .global-nav__item, .header .global-nav__item--another {
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.3333333333vw;
  font-size: 1.4285714286vw;
  /*             &:not(:last-child) {
                 padding-right: pxtovw(25);
             }
  */
}
@media screen and (max-width: 768px) {
  .header .global-nav__item, .header .global-nav__item--another {
    font-size: 2.5vw;
  }
}
.header .global-nav__item:hover, .header .global-nav__item--another:hover {
  background-color: #ff6868;
}
.header .global-nav__item--another {
  background-color: red;
}
.header .global-nav__link {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .header .global-nav__link::after {
    display: none;
  }
}
.header .global-nav__link:hover {
  text-decoration: none;
}
.header .global-nav__link:hover::after {
  width: 100%;
}

main {
  display: block;
}

.bg-course {
  width: 100%;
  padding: 30px 0px;
  background-image: url(../img/background-001.png);
}
.bg-course__picture {
  max-width: 50%;
}
.bg-course__content {
  position: relative;
}
.bg-course__inlineflex, .bg-course__inlineflex2 {
  display: block;
  margin-left: 5%;
  margin-top: 50px;
  padding: 10px;
}
.bg-course__inlineflex--pink {
  color: #ff68a5;
  font-weight: bold;
}
.bg-course__inlineflex--grade {
  font-size: 5vw;
  font-weight: bold;
  color: #ff68a5;
  background: linear-gradient(110deg, #f6c215, #ff68a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-course__inlineflex2 {
  margin-top: 50px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
}
.bg-course__inline-left--pink {
  color: #ff68a5;
  font-weight: bold;
}
.bg-course__inline-right {
  margin-left: 4vw;
}
.bg-course__inline-right--white {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.bg-course__inline-right .w-44 {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background-color: #ff68a5;
  border-radius: 50%;
  position: relative;
}
.bg-course__inline-right .w-44 > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bg-course__inline-right .manzoku {
  font-size: 1.4285714286vw;
}
.bg-course__inline-right .par {
  font-size: 3.3333333333vw;
}
.bg-course .part1 {
  font-size: 2vw;
}
.bg-course .part2, .bg-course .part3 {
  font-size: 1.8181818182vw;
  letter-spacing: 1px;
}
.bg-course .part3 > span {
  font-size: 1.8em;
}

.bg-rank {
  background-color: pink;
  background-image: url(../img/why01.png);
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 50px;
}
.bg-rank__inlineflex {
  position: relative;
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  background-image: url(../img/gold.png);
  background-size: contain;
}
.bg-rank__inlineflex p {
  text-align: center;
  font-weight: bold;
  font-size: 1.6666666667vw;
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: 1.3333333333vw;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bg-rank__inlineflex p .part5 {
  font-size: 2.5vw;
}
.bg-rank__inlineflex img {
  width: 240px;
  height: 240px;
}

.heading-primary {
  font-weight: bold;
  color: #ff6868;
  font-size: 2.5vw;
  text-align: center;
  margin: 30px auto;
}

.guide__swiper {
  display: block;
}
.guide .swiper-countainer {
  width: calc(100vw - 30px);
  margin: 0 auto;
}
.guide .swiper-slide {
  background-color: #fff0be;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
}
.guide__text {
  padding: 4vw;
  font-size: 1.25vw;
  max-width: 40vw;
}
.guide__text h3 {
  color: #ff68a5;
  font-size: 2.5vw;
}
.guide__text p {
  margin-top: 2.6666666667vw;
}
.guide__img img {
  margin-left: 1.3333333333vw;
  max-width: 50vw;
}

.member {
  margin-top: 100px;
}
.member__img img {
  width: calc(100vw - 30px);
  margin: 0 auto;
}
.member__text {
  padding: 1.3333333333vw;
  margin: 0 auto;
}

.recruit {
  margin-top: 100px;
}
.recruit__img img {
  width: calc(100vw - 30px);
  margin: 0 auto;
}
.recruit__text {
  padding: 1.3333333333vw;
  margin: 0 auto;
}

.btn {
  border-radius: 4vw;
  background: linear-gradient(110deg, #f6c215, #ff68a5);
  font-size: 1.6666666667vw;
  letter-spacing: 0.16vw;
  text-align: center;
  margin-top: 2.6666666667vw;
  padding: 0.6666666667vw;
}
.btn a {
  color: #fff;
  text-align: center;
  font-weight: bold;
}

/*--------------------------------
   ページトップ
  ---------------------------------*/
.page-top {
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #e2afaf;
}
.page-top .material-icons-outlined {
  vertical-align: bottom;
}

/*--------------------------------
   フッター
  ---------------------------------*/
.footer {
  padding: 30px;
  background-color: #ff6868;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer-nav__list {
    justify-content: flex-start;
    margin-bottom: -10px;
  }
}
.footer-nav__item {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9e1d1;
  font-size: 1.25vw;
}
@media screen and (max-width: 768px) {
  .footer-nav__item {
    margin-bottom: 10px;
  }
}
.footer-nav__item:not(:last-child) {
  margin-right: 10px;
}
.footer-nav__link {
  line-height: 1;
  padding: 5px;
  color: #fff;
}
.footer-nav__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.copyright {
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

/*1.フェードインアニメーションの指定*/
.scrollanime-1 {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*2.上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

/*media Queries 767over
----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .bg-course {
    height: 58.6666666667vw;
  }
  .bg-course__picture {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .bg-course__content {
    width: 50%;
  }
  .member__content {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
  }
  .member__img img {
    max-width: 50%;
    max-width: 50vw;
  }
  .member__text {
    width: 50%;
    max-width: 47.619047619vw;
  }
  .recruit__content {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
  }
  .recruit__img img {
    max-width: 50%;
    max-width: 50vw;
  }
  .recruit__text {
    width: 50%;
    max-width: 47.619047619vw;
  }
}
/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 2vw;
    line-height: 1.7;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .bg-course__picture {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .bg-course__content {
    width: 100%;
  }
  .bg-course__inlineflex, .bg-course__inlineflex2 {
    width: calc(100% - 100px);
    margin: 0 auto;
  }
  .w-44 {
    position: absolute;
    right: 0px;
    margin-top: 10px;
  }
  .guide__text {
    padding-left: 8vw;
  }
  .guide__img {
    margin: auto 0px;
  }
  .member__img img {
    width: 100%;
    margin: 0 auto;
  }
  .recruit__img img {
    width: 100%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */