@charset "UTF-8";
/* ================================================

- Base

================================================ */
[v-cloak] {
  display: none;
}

_:-ms-lang(x)::-ms-backdrop, [v-cloak] {
  display: block;
}

body {
  overflow-x: hidden;
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

body.-bodyScrollStop {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

:root {
  --cc-blue: #0385d9;
  --cc-lblue: #20a1f5;
  --cc-dblue: #222a74;
  --cc-hblue: #1a2447;
  --w1280: 1280px;
  --space: 30px;
}

/* ================================================

- 表示アニメーション

================================================ */
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ================================================

- フォント

================================================ */
/* ================================================

- フォントサイズ

================================================ */
/* ================================================

- RWD表示切り替え

================================================ */
@media all and (min-width: 569px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 568px) {
  .nosp {
    display: none !important;
  }
}
/* ================================================

- flex

================================================ */
/* ================================================

- margin

================================================ */
/* magrin-topを5px刻みで50pxまで */
.mTop0 {
  margin-top: 0px;
}

.mTop5 {
  margin-top: 5px;
}

.mTop10 {
  margin-top: 10px;
}

.mTop15 {
  margin-top: 15px;
}

.mTop20 {
  margin-top: 20px;
}

.mTop25 {
  margin-top: 25px;
}

.mTop30 {
  margin-top: 30px;
}

.mTop35 {
  margin-top: 35px;
}

.mTop40 {
  margin-top: 40px;
}

.mTop45 {
  margin-top: 45px;
}

.mTop50 {
  margin-top: 50px;
}

/* magrin-bottomを5px刻みで50pxまで */
.mBtm0 {
  margin-bottom: 0px;
}

.mBtm5 {
  margin-bottom: 5px;
}

.mBtm10 {
  margin-bottom: 10px;
}

.mBtm15 {
  margin-bottom: 15px;
}

.mBtm20 {
  margin-bottom: 20px;
}

.mBtm25 {
  margin-bottom: 25px;
}

.mBtm30 {
  margin-bottom: 30px;
}

.mBtm35 {
  margin-bottom: 35px;
}

.mBtm40 {
  margin-bottom: 40px;
}

.mBtm45 {
  margin-bottom: 45px;
}

.mBtm50 {
  margin-bottom: 50px;
}

/* ================================================

- z-index

================================================ */
/* ================================================

-

================================================ */
.lozad {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.lozad[data-loaded=true] {
  opacity: 1;
}

/* ================================================

- イージング

================================================ */
/* ================================================

- コーチ紹介

================================================ */
.coach-member {
  padding: 100px 0 125px;
}

.coach-member__lead {
  letter-spacing: 0.06em;
  color: #09122a;
  text-align: center;
}
.coach-member__lead dt {
  display: inline-block;
  padding-bottom: 5px;
  font-size: 3.8rem;
  line-height: 1.5;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%, transparent), color-stop(0%, #209beb));
  background: linear-gradient(transparent 99%, #209beb 0%);
}
.coach-member__lead dd {
  margin-top: 23px;
  font-size: 2rem;
  line-height: 1.455;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}

.coach-member__content {
  margin-top: 75px;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .coach-member {
    padding: 60px 0 90px;
  }
  .coach-member__inner {
    padding: 0 6.4vw;
  }
  .coach-member__lead dt {
    display: inline-block;
    padding-bottom: 5px;
    font-size: 6.9333333333vw;
    line-height: 1.425;
  }
  .coach-member__lead dd {
    margin-top: 20px;
    font-size: 4.5333333333vw;
  }
  .coach-member__content {
    margin-top: 50px;
  }
}