@charset "UTF-8";
/* -------------------------------------------------- */
/* file   :course_top.css                             */
/* update : 2025                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
#wrap {
  width: 100%;
  max-width: 1060px;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 0 auto;
}

.lead {
  text-align: center;
  margin-bottom: 120px;
}

article {
  margin-bottom: 100px;
}

/**年度選択**/
.btn_box {
  margin-bottom: 70px;
}
.btn_box a {
  position: relative;
  display: block;
  width: 50%;
  text-align: center;
  color: #ff45a3;
  padding: 15px 0;
  border-radius: 9px;
  border: 1px solid #ff45a3;
  box-sizing: border-box;
  margin: 0 auto;
  transition: all 0.5s ease;
}
.btn_box a:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff45a3;
  border-right: 2px solid #ff45a3;
  top: calc(50% - 0.3em);
  right: 20px;
  box-sizing: border-box;
  transform: rotate(45deg);
}
.btn_box a:hover {
  background: #ff45a3;
  border: 1px solid #ff45a3;
  box-sizing: border-box;
  color: #fff;
}
.btn_box a:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn_box .small {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
}

.btn_small_box {
  margin-top: 5px;
}
.btn_small_box a {
  text-align: center;
  font-size: 14px;
  color: #FF41A6;
  text-decoration: underline;
}

.department {
  font-size: 12px;
  margin-top: 10px;
}

.h3_style_about {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1px;
}

.h3_sub {
  font-size: 13px;
  margin-bottom: 8px;
}

.course_sec {
  position: relative;
  border-radius: 10px;
  padding: 50px 50px 0;
  margin-top: 100px;
}
.course_sec:first-of-type {
  margin-top: 0;
}
.course_sec .lead_text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}
.course_sec .lead_text::before, .course_sec .lead_text::after {
  border-radius: 3px;
  content: "";
  height: 3px;
  width: 60px;
}
.course_sec .lead_text::before {
  margin-right: 10px;
  transform: rotate(60deg);
}
.course_sec .lead_text::after {
  margin-left: 10px;
  transform: rotate(-60deg);
}
.course_sec.total {
  border: 3px solid #67cf63;
  background: #f6fff5;
}
.course_sec.total .lead_text {
  color: #67cf63;
}
.course_sec.total .lead_text::before, .course_sec.total .lead_text::after {
  background-color: #67cf63;
}
.course_sec.total section {
  border-color: #67cf63;
}
.course_sec.hair {
  border: 3px solid #f46a6a;
  background: #fcf0f0;
}
.course_sec.hair .lead_text {
  color: #f46a6a;
}
.course_sec.hair .lead_text::before, .course_sec.hair .lead_text::after {
  background-color: #f46a6a;
}
.course_sec.hair section {
  border-color: #f46a6a;
}
.course_sec.biyou {
  border: 3px solid #f6ad53;
  background: #fff5eb;
}
.course_sec.biyou .lead_text {
  color: #f6ad53;
}
.course_sec.biyou .lead_text::before, .course_sec.biyou .lead_text::after {
  background-color: #f6ad53;
}
.course_sec.biyou section {
  border-color: #f6ad53;
}
.course_sec.ba {
  border: 3px solid #cb72aa;
  background: #fdf0f8;
}
.course_sec.ba .lead_text {
  color: #cb72aa;
}
.course_sec.ba .lead_text::before, .course_sec.ba .lead_text::after {
  background-color: #cb72aa;
}
.course_sec.ba section {
  border-color: #cb72aa;
}
.course_sec.nail {
  border: 3px solid #ec7aac;
  background: #fff6fa;
}
.course_sec.nail .lead_text {
  color: #ec7aac;
}
.course_sec.nail .lead_text::before, .course_sec.nail .lead_text::after {
  background-color: #ec7aac;
}
.course_sec.nail section {
  border-color: #ec7aac;
}
.course_sec.basics {
  border: 3px solid #84BAE5;
  background: #F0F6FC;
}
.course_sec.basics .lead_text {
  color: #84BAE5;
}
.course_sec.basics .lead_text::before, .course_sec.basics .lead_text::after {
  background-color: #84BAE5;
}
.course_sec.basics section {
  border-color: #84BAE5;
}
.course_sec section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed;
}
.course_sec section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.course_lead_style {
  text-align: center;
  margin: -105px 0 50px;
}
.course_lead_style .lead_inner {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  line-height: 1.5;
  color: #ffffff;
}
.course_lead_style .lead_inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  translate: -50% 100%;
}
.course_lead_style .lead_inner.total {
  background: #67cf63;
}
.course_lead_style .lead_inner.total::after {
  border-color: #67cf63 transparent transparent;
}
.course_lead_style .lead_inner.hair {
  background: #f46a6a;
}
.course_lead_style .lead_inner.hair::after {
  border-color: #f46a6a transparent transparent;
}
.course_lead_style .lead_inner.biyou {
  background: #f6ad53;
}
.course_lead_style .lead_inner.biyou::after {
  border-color: #f6ad53 transparent transparent;
}
.course_lead_style .lead_inner.ba {
  background: #cb72aa;
}
.course_lead_style .lead_inner.ba::after {
  border-color: #cb72aa transparent transparent;
}
.course_lead_style .lead_inner.nail {
  background: #ec7aac;
}
.course_lead_style .lead_inner.nail::after {
  border-color: #ec7aac transparent transparent;
}
.course_lead_style .lead_inner.basics {
  background: #84BAE5;
}
.course_lead_style .lead_inner.basics::after {
  border-color: #84BAE5 transparent transparent;
}
.course_lead_style .bold {
  font-weight: bold;
}

.about_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.about_flex.reverse {
  flex-direction: row-reverse;
}
.about_flex.reverse .about_no {
  left: inherit;
  right: 0;
}
.about_flex > a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
}

.about_flex_l {
  width: 47%;
  position: relative;
}

.about_flex_r {
  width: 47%;
}
.about_flex_r img {
  width: auto;
  max-width: 100%;
}

.about_year {
  display: inline-block;
  padding: 5px 5px 3px;
  background: #333;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
}
.about_year .years {
  font-size: 25px;
}

.new_class span {
  display: inline-block;
  background: #FF41A6;
  padding: 2px 5.3px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 5px;
}

.job_li {
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
}
.job_li li {
  width: auto;
  margin-right: 5px;
  font-size: 13px;
}

.more_btn {
  margin-top: 30px;
}
.more_btn a {
  padding: 18px 0;
  box-sizing: border-box;
  width: 30%;
}

.basics .about_year {
  background: #84BAE5;
}
.basics .job {
  color: #84BAE5;
}
.basics .job_li li span {
  color: #84BAE5;
}

.total .about_year {
  background: #67cf63;
}
.total .job {
  color: #67cf63;
}
.total .job_li li span {
  color: #67cf63;
}

.hair-make .about_year {
  background: #f46a6a;
}
.hair-make .job {
  color: #f46a6a;
}
.hair-make .job_li li span {
  color: #f46a6a;
}

.biyou .about_year {
  background: #f6ad53;
}
.biyou .job {
  color: #f6ad53;
}
.biyou .job_li li span {
  color: #f6ad53;
}

.beauty .about_year {
  background: #cb72aa;
}
.beauty .job {
  color: #cb72aa;
}
.beauty .job_li li span {
  color: #cb72aa;
}

.nail .about_year {
  background: #ec7aac;
}
.nail .job {
  color: #ec7aac;
}
.nail .job_li li span {
  color: #ec7aac;
}

.bridal .about_year {
  background: #71cde1;
}
.bridal .job {
  color: #71cde1;
}
.bridal .job_li li span {
  color: #71cde1;
}

.spmake .about_year {
  background: #9e522d;
}
.spmake .job {
  color: #9e522d;
}
.spmake .job_li li span {
  color: #9e522d;
}

/* ---------------全デバイス共通(pc)-end--------------------- */
/*----------------------------------------------------------*/
/* pc：hover用のCSS */
/*----------------------------------------------------------*/
@media screen and (min-width: 560px) {
  /* pc：hover */
  .under_link_wrap .under_link a:hover .under_link_thumb img {
    transform: scale(1.2);
    transition: transform 0.5s;
  }
} /* ---------------pc：hover-end--------------------- */
/*----------------------------------------------------------*/
/* tablet用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 959px) {
  /* tablet */
  /* -------------------tablet END------------------------- */
}
/*----------------------------------------------------------*/
/* sp用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 559px) {
  #wrap {
    max-width: inherit;
    padding: 0 15px;
    margin: 0;
  }
  article {
    margin-bottom: 50px;
  }
  .lead {
    margin-bottom: 80px;
  }
  .btn_box {
    margin-bottom: 25px;
  }
  .btn_box a {
    width: 100%;
    margin: 0 auto;
  }
  .btn_box a:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ff45a3;
    border-right: 2px solid #ff45a3;
    top: calc(50% - 0.3em);
    right: 10px;
    box-sizing: border-box;
    transform: rotate(45deg);
  }
  .btn_small_box a {
    font-size: 12px;
  }
  .more_btn {
    margin-top: 20px;
  }
  .more_btn a {
    padding: 15px 0;
    box-sizing: border-box;
    width: 60%;
  }
  .about_flex {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
  }
  .about_flex.reverse .about_no {
    left: inherit;
    right: 5%;
    top: -20px;
  }
  .about_flex_l {
    width: 48%;
  }
  .about_flex_r {
    width: 48%;
  }
  .about_year {
    font-size: 14px;
    font-feature-settings: "palt";
  }
  .about_year .years {
    font-size: 16px;
  }
  .new_class span {
    padding: 1px 8px;
    font-size: 10px;
  }
  .department {
    font-size: 12px;
    margin-top: 5px;
  }
  .h3_style_about {
    font-size: 16px;
    line-height: 1.5;
  }
  .h3_sub {
    font-size: 10px;
    margin-bottom: 0px;
  }
  .course_sec {
    border-radius: 5px;
    padding: 25px 15px 0;
    margin-top: 100px;
    border-width: 2px;
  }
  .course_sec .lead_text {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .course_sec section {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .course_lead_style {
    margin: -75px 0 25px;
  }
  .course_lead_style .lead_inner {
    margin-bottom: 5px;
    padding: 8px 15px;
    font-size: 16px;
  }
  .course_lead_style .lead_inner::after {
    border-width: 5px 5px 0 5px;
  }
  .job {
    display: none;
  }
  .job_li {
    display: none;
  }
  /* ---------------------SP END----------------------------- */
}/*# sourceMappingURL=course_top_27.css.map */