@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  /*display: none;*/
}

.slick-arrow.slick-hidden:before {
  color: #cccccc;
  opacity: 1;
  cursor: default;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../images/fonts/slick.eot");
  src: url("../images/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../images/fonts/slick.woff") format("woff"), url("../images/fonts/slick.ttf") format("truetype"), url("../images/fonts/slick.svg#slick") format("svg");
}
/************************ Arrows ************************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 45px;
  height: 45px;
  margin-top: -23px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: #00529f;
}
.slick-prev.slick-hidden,
.slick-next.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.slick-prev:before {
  left: 50%;
  margin-left: -4px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.slick-next:before {
  right: 50%;
  margin-right: -4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.slick-prev {
  left: -30px;
}

[dir=rtl] .slick-prev {
  right: -30px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -30px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -30px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/************************ Dots ************************/
.slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  font-size: 0;
  display: block;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: #eeeeee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #00529f;
}

.slick-dots li.slick-active button {
  background: #00529f;
}

/* メインビジュアル */
.p-main-visual {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  max-height: 780px;
  max-width: 1920px;
  overflow: hidden;
  --imgWidth: 3840;
  --imgHeight: 750;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
}
@media only screen and (max-width: 990px) {
  .p-main-visual {
    --imgWidth: 1980;
    --imgHeight: 3150;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
  }
}
.p-main-visual .slick-prev {
  left: 60px;
}
.p-main-visual .slick-next {
  right: 60px;
}

.p-main-visual-link {
  position: relative;
}

.p-main-visual__img {
  position: relative;
  top: 10px;
}
.p-main-visual__img img {
  width: 100%;
}

.p-main-visual-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -50px;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: center;
    top: 45px;
  }
}

.p-main-visual-txt__ttl-main {
  display: block;
  padding-bottom: 30px;
  font-size: 2.5rem;
  color: #00529f;
  font-weight: normal;
  line-height: 1.5;
  text-shadow: 1px 0 5px #ffffff, 0 1px 5px #ffffff, -1px 0 5px #ffffff, 0 -1px 5px #ffffff;
}
@media only screen and (max-width: 1530px) {
  .p-main-visual-txt__ttl-main {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-main {
    padding-bottom: 15px;
    font-size: 1.375rem;
  }
}

.p-main-visual-txt__ttl-sub {
  display: block;
  font-size: 0.9375rem;
  color: #393939;
  font-weight: normal;
  text-shadow: 1px 0 10px #ffffff, 0 1px 10px #ffffff, -1px 0 10px #ffffff, 0 -1px 10px #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    font-size: 0.75rem;
  }
}

/***** メインビジュアル コントロール *****/
.p-main-visual-control__item {
  position: absolute;
  top: 50%;
}
.p-main-visual-control__item.is-prev {
  left: 15px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__item.is-prev {
    left: 10px;
  }
}
.p-main-visual-control__item.is-next {
  right: 15px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__item.is-next {
    right: 10px;
  }
}

.p-main-visual-control__btn {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  position: relative;
  width: 65px;
  height: 65px;
  border: 0;
  background: transparent;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__btn {
    width: 45px;
    height: 45px;
  }
}
.p-main-visual-control__btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -7px;
  width: 40px;
  height: 40px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__btn:before {
    margin-top: -13px;
    margin-left: -7px;
    width: 25px;
    height: 25px;
  }
}
.p-main-visual-control__btn.is-next:before {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -7px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-main-visual-bg {
  background: #f4f4f4;
  overflow: hidden;
  width: 100%;
  max-height: 780px;
  max-width: 1920px;
  --imgWidth: 3840;
  --imgHeight: 750;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
  height: var(--imgShowHeight);
}
@media only screen and (max-width: 990px) {
  .p-main-visual-bg {
    --imgWidth: 1980;
    --imgHeight: 3150;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
    height: var(--imgShowHeight);
  }
}

/***** 学園理念 *****/
.p-top-concept__ttl {
  font-size: 0.75rem;
  color: #ef8baa;
  text-align: left;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__ttl {
    font-size: 0.9375rem;
    text-align: center;
    margin-top: 15px;
  }
}

.p-top-concept {
  background: #00529f;
}

.p-top-concept__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 45px;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__wrap {
    display: block;
    padding-bottom: 0px;
  }
}

.p-top-concept__list {
  width: 50%;
  padding: 30px 15px 45px 15px;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__list {
    width: 100%;
    padding: 0;
  }
}

.p-top-concept__img {
  padding-right: 45px;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__img {
    padding: 15px;
  }
}

.p-top-concept__body {
  font-size: 1.375rem;
  line-height: 1.8;
  color: #ffffff;
  margin: 30px 0;
}
@media only screen and (max-width: 990px) {
  .p-top-concept__body {
    padding: 0 15px;
    margin-top: 15px;
  }
}

/***** 美筋形成 *****/
.p-top-about {
  position: relative;
  z-index: 10;
  margin-top: -150px;
  padding-bottom: 0;
}
@media only screen and (max-width: 990px) {
  .p-top-about {
    margin-top: 0;
    padding: 0;
  }
  .p-top-about .u-container {
    padding: 0;
  }
}
.p-top-about:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  background: #f4f4f4;
  z-index: -1;
}

.p-top-about-contents {
  padding: 30px;
  background-color: #ffffff;
}

.p-top-about-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-about-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-top-about__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.125rem;
  margin: auto;
}
.p-top-about__txt a {
  color: #393939;
}
.p-top-about__txt a:hover { /*マウスをのせたとき*/
  color: #393939;
}
.p-top-about__txt a:active { /*マウスを押したとき*/
  color: #393939;
}
@media only screen and (max-width: 990px) {
  .p-top-about__txt {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.p-top-about-txt__copy {
  font-size: 1.375rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media only screen and (max-width: 990px) {
  .p-top-about-txt__copy {
    font-size: 1.125rem;
    margin-bottom: 30px;
    font-weight: bold;
  }
}

.p-top-about-txt__box {
  padding-right: 30px;
  font-size: 0.9375rem;
  margin-bottom: 30px;
}
@media only screen and (max-width: 990px) {
  .p-top-about-txt__box {
    padding-right: 0px;
  }
}
.p-top-about-txt__box span {
  font-weight: bold;
}

.p-top-about__img {
  width: 50%;
  position: relative;
  padding-right: 30px;
}
@media only screen and (max-width: 990px) {
  .p-top-about__img {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    width: auto;
  }
}
.p-top-about__img:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -5px;
  background-image: url(../images/p-top-esthetic-label.svg);
  background-repeat: no-repeat;
  width: 160px;
  height: 60px;
  background-size: 160px;
  z-index: 30;
}

.is-top-left {
  font-size: 1.875rem;
  margin-bottom: 45px;
  position: relative;
  text-align: left;
  font-weight: normal;
  color: #00529f;
  text-align: left;
}
@media only screen and (max-width: 990px) {
  .is-top-left {
    font-size: 1.375rem;
    text-align: center;
  }
}
.is-top-left:after {
  content: "";
  position: relative;
  display: block;
  position: relative;
  top: 20px;
  background: url(../images/c-ttl-line.svg) no-repeat 0 0;
  left: 3px;
  width: 40px;
  height: 1px;
}
@media only screen and (max-width: 990px) {
  .is-top-left:after {
    margin: auto;
  }
}
.is-top-left span {
  display: block;
  margin-bottom: 15px;
  color: #ef8baa;
  font-size: 0.75rem;
}
@media only screen and (max-width: 990px) {
  .is-top-left span {
    margin-bottom: 10px;
  }
}
.is-top-left.c-ttl-main__ja {
  margin-top: 0;
  font-size: 1.125rem;
}
.is-top-left.c-lead {
  margin-bottom: 30px;
  text-align: left;
}
@media only screen and (max-width: 990px) {
  .is-top-left.c-lead {
    text-align: center;
  }
}

/***** 学び場 *****/
.p-top-manabiba {
  background-color: #f4f4f4;
}
@media only screen and (max-width: 990px) {
  .p-top-manabiba {
    background-color: #ffffff;
  }
}

.p-top-manabiba-contents {
  padding: 30px;
  background-color: #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-top-manabiba-contents {
    padding: 0;
  }
}

.p-top-manabiba-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-manabiba-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-top-manabiba__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.125rem;
  margin: auto;
}
@media only screen and (max-width: 990px) {
  .p-top-manabiba__txt {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.p-top-manabiba__img {
  width: 450px;
  height: auto;
  margin-right: 30px;
}
@media only screen and (max-width: 990px) {
  .p-top-manabiba__img {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
  }
}

.p-manabiba-ttl {
  position: relative;
  color: #00529f;
  font-size: 25px;
  line-height: 1.5em;
  text-align: left;
  font-weight: normal;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-ttl {
    width: 100%;
    text-align: center;
  }
}
.p-manabiba-ttl span {
  display: inline;
  width: 100%;
  color: #00529f;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fff700));
  background: linear-gradient(transparent 60%, #fff700 0%);
  font-weight: bold;
}
.p-manabiba-ttl br {
  display: none;
}
@media only screen and (min-width: 1531px) {
  .p-manabiba-ttl br {
    display: inline;
  }
}

.p-manabiba-thema {
  margin-top: 20px;
  font-size: 1.6rem;
  position: relative;
  font-weight: normal;
  color: #00529f;
  text-align: left;
  line-height: 1;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-thema {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.p-manabiba-thema span {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 5px;
  color: #ef8baa;
  line-height: 1rem;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-thema span {
    margin: 0 5px;
  }
}

.p-manabiba-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: number 0;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-list {
    margin-top: 20px;
  }
}

.p-manabiba-list-item {
  display: block;
  position: relative;
  padding-left: 20px;
  width: 49%;
  font-size: 0.75rem;
  color: #00529f;
  background-color: #ededed;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-list-item {
    width: 100%;
    font-size: 1.2rem;
    padding-left: 30px;
  }
}
.p-manabiba-list-item:nth-of-type(2) {
  margin-top: 0;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-list-item:nth-of-type(2) {
    margin-top: 10px;
  }
}
.p-manabiba-list-item:nth-of-type(n+3) {
  margin-top: 10px;
}
.p-manabiba-list-item::before {
  counter-increment: number 1;
  content: counter(number) " ";
  display: block;
  position: absolute;
  margin-left: 5px;
  top: -0.1em;
  left: 0;
  font-size: 0.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-list-item::before {
    margin-left: 10px;
    font-size: 1.2rem;
    top: 0;
  }
}

.p-manabiba-btn {
  margin-top: 20px;
}
@media only screen and (max-width: 990px) {
  .p-manabiba-btn {
    margin-top: 20px;
    text-align: center;
  }
}

.p-top-curriculum {
  padding-top: 30px;
}
@media only screen and (max-width: 990px) {
  .p-top-curriculum {
    padding: 60px 0;
  }
}

/***** 講習会スケジュール *****/
@media only screen and (max-width: 990px) {
  .p-top-event-index {
    margin-bottom: 45px;
  }
}

.p-top-event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-event-list {
    display: block;
    margin: 0;
  }
}

.p-top-event-list__item {
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  width: 25%;
}
@media only screen and (max-width: 990px) {
  .p-top-event-list__item {
    margin: 0 auto;
    margin-bottom: 45px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 390px;
  }
}

.p-top-event-list__link {
  color: #393939;
}
.p-top-event-list__link:hover {
  color: #007ae5;
  text-decoration: none;
}
.p-top-event-list__link:hover .p-top-event-list__img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.p-top-event-list__img {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.p-top-event-list__img img {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media only screen and (max-width: 990px) {
  .p-top-event-list__img {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-event-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #ef8baa;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}
.p-event-label.is-end {
  background-color: #666666;
}

.p-top-event-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.p-top-event-list__category {
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 15px;
  background: #ef8baa;
  color: #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-top-event-list__category {
    margin-left: 0px;
  }
}

.p-top-event-list__date {
  display: inline-block;
  margin-top: 15px;
  padding: 0 10px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.75rem;
}

.p-top-event-list__ttl {
  font-size: 0.9375rem;
  color: #ffffff;
  font-weight: normal;
}

.p-top-event-list-event {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #ffffff;
}

/***** 講師紹介 *****/
.p-top-instructor-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-instructor-wrap {
    padding-top: 60px;
  }
}

.p-top-instructor__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.875rem;
}
.p-top-instructor__txt a {
  color: #393939;
}
.p-top-instructor__txt a:hover { /*マウスをのせたとき*/
  color: #393939;
}
.p-top-instructor__txt a:active { /*マウスを押したとき*/
  color: #393939;
}

.p-top-instructor__img {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 990px) {
  .p-top-instructor__img {
    padding-left: 0;
    padding-right: 0;
    width: 0;
    margin-top: 15px;
  }
}

/***** 各コンテンツ *****/
.p-top-contents-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-contents-list__wrap {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
  }
}

.p-top-contents__list {
  width: 33.3333%;
  background: #ffffff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 15px #cccccc;
          box-shadow: 0px 0px 15px #cccccc;
  margin-right: 15px;
  margin-left: 15px;
}
.p-top-contents__list:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media only screen and (max-width: 990px) {
  .p-top-contents__list {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0px;
    margin-left: 0px;
  }
}

.p-top-contents__top {
  padding: 20px 45px;
  text-align: center;
}
.p-top-contents__top img {
  max-width: 160px;
}

.p-top-contents-bottom__box {
  background: #00529f;
  padding: 20px 30px 15px 30px;
  border-radius: 0 0 15px 15px;
}
@media only screen and (min-width: 991px) {
  .p-top-contents-bottom__box {
    padding: 15px;
  }
}

.p-top-contents__link {
  color: #ffffff;
}
.p-top-contents__link:hover {
  text-decoration: none;
  color: #ffffff;
}

.p-top-contents__txt {
  font-size: 0.9375rem;
  text-align: center;
}

.p-top-contents-access__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-top-contents-access__list {
  margin-bottom: 15px;
}
.p-top-contents-access__list li:nth-child(3) {
  margin-bottom: 0px;
}

.p-top-contents-access__link {
  font-size: 0.75rem;
}
.p-top-contents-access__link:hover {
  text-decoration: none;
}

.p-top-contents-access__item {
  width: 105px;
  padding: 5px 10px;
  margin-right: 10px;
  text-align: center;
  color: #393939;
  background: #f4f4f4;
}
.p-top-contents-access__item:hover {
  text-decoration: none;
  background: #cccccc;
  color: #333333;
}

/***** よくあるご質問 + 学園へのアクセス *****/
.p-top-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-contents-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-top-contents-main {
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .p-top-contents-main {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
  .p-top-contents-main:not(:last-of-type) {
    margin-bottom: 45px;
  }
}

.p-faq-list {
  border-top: 1px solid #dddddd;
}

.p-faq-list__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}

.p-faq-list__ttl {
  position: relative;
  margin-bottom: 30px;
  padding-left: 35px;
  font-size: 1.375rem;
  font-weight: normal;
  color: #00529f;
}
@media only screen and (max-width: 990px) {
  .p-faq-list__ttl {
    margin-bottom: 20px;
  }
}
.p-faq-list__ttl:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  color: #00529f;
  font-size: 1.875rem;
}

.p-faq-list-answer__ttl {
  position: relative;
  margin-bottom: 20px;
  padding-left: 35px;
  font-size: 1.375rem;
  color: #393939;
  font-weight: normal;
}
@media only screen and (max-width: 990px) {
  .p-faq-list-answer__ttl {
    margin-bottom: 20px;
  }
}
.p-faq-list-answer__ttl:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  color: #ef8baa;
  font-size: 1.875rem;
}

.p-faq-list-answer__body {
  line-height: 1.8;
  color: #696969;
}

/***** TOP お知らせ *****/
.p-top-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #dddddd;
}
.p-top-news-list__item:first-child {
  border-top: 1px dashed #dddddd;
  padding-top: 15px;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__item {
    display: block;
  }
}

.p-top-news-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-news-list__date {
  margin-right: 30px;
}

.p-top-news-list__category {
  min-width: 150px;
}
.p-top-news-list__category span {
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
}

.p-top-news-list__ttl a {
  color: #393939;
}
.p-top-news-list__ttl a:hover {
  color: #00529f;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__ttl {
    margin-top: 10px;
  }
}

/***** TOP トピックス *****/
.p-top-topics {
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  overflow: hidden;
}
@media only screen and (max-width: 990px) {
  .p-top-topics {
    position: relative;
    left: 0%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    overflow: hidden;
  }
}

.p-top-topics-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-topics-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px;
  background: #f4f4f4;
  margin: -1px;
}
@media only screen and (max-width: 990px) {
  .p-top-topics-list__item {
    display: block;
    margin: 0 -15px;
  }
}

.p-top-topics-list__category {
  min-width: 150px;
}
.p-top-topics-list__category span {
  padding: 2px 10px;
  color: #ffffff;
  font-size: 0.75rem;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 3px;
}
@media only screen and (max-width: 990px) {
  .p-top-topics-list__category span {
    font-size: 0.625rem;
  }
}

.p-top-topics-list__ttl a {
  color: #393939;
  font-size: 0.9375rem;
}
.p-top-topics-list__ttl a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 990px) {
  .p-top-topics-list__ttl {
    margin-top: 5px;
  }
}

.p-top-topics-list__date {
  font-size: 0.75rem;
  margin-top: 5px;
}