@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

p {
  color: #665952;
  line-height: 2;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
  color: #665952;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 80px 0 50px;
}
@media (max-width: 768px) {
  section {
    padding: 70px 0 40px;
  }
}

.ttl {
  font-size: 36px;
  text-align: center;
  letter-spacing: 5px;
  color: #665952;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .ttl {
    font-size: 24px;
  }
}

.common_btn {
  border-radius: 40px;
  width: 240px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
  transition: 0.3s;
  letter-spacing: 3px;
}
.common_btn::after {
  content: url(../images/btn_arrow.png);
  position: absolute;
  right: 15px;
  top: 53%;
  transform: translateY(-50%) scale(0.3);
  transition: 0.3s;
}
.common_btn:hover::after {
  right: 6px;
}

.common_btn_orange {
  background-color: #ff8600;
}

.top_common_bg {
  margin-top: 50px;
  padding-top: 50px;
  background: url(../images/bg_top.png) top/cover no-repeat;
  position: relative;
}
.top_common_bg .item_border {
  position: absolute;
  top: -22px;
  width: 100%;
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #ff8600;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 60px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.fix_btn {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 599px) {
  .fix_btn {
    display: block;
  }
}
.fix_btn a {
  width: 50%;
  padding: 10px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.fix_btn a img {
  width: auto;
  margin-bottom: 3px;
}
.fix_btn .fix_btn_tel {
  background-color: #ffffdb;
  color: #665952;
}
.fix_btn .fix_btn_tel img {
  height: 20px;
}
.fix_btn .fix_btn_contact {
  background-color: #7acdf3;
  color: #fff;
}
.fix_btn .fix_btn_contact img {
  height: 20px;
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
.common_mv {
  padding: 140px 0 80px;
  text-align: center;
  margin-top: 90px;
  position: relative;
}
@media (max-width: 768px) {
  .common_mv {
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .common_mv {
    padding-bottom: 70px;
    padding-top: 120px;
  }
}
.common_mv h2 {
  font-size: 43px;
  color: #665952;
}
@media (max-width: 599px) {
  .common_mv h2 {
    font-size: 28px;
  }
}
.common_mv h2 img {
  display: block;
  height: 36px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .common_mv h2 img {
    height: 26px;
  }
}
.common_mv .common_border {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.common_mv.common_mv_about {
  background: url(../images/common_mv_about.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv.common_mv_about {
    background: url(../images/common_mv_about.jpg) -140px/cover no-repeat;
  }
}
.common_mv.common_mv_support {
  background: url(../images/common_mv_support.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv.common_mv_support {
    background: url(../images/common_mv_support.jpg) -300px/cover no-repeat;
  }
}
.common_mv.common_mv_class {
  background: url(../images/common_mv_class.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv.common_mv_class {
    background: url(../images/common_mv_class.jpg) -190px/cover no-repeat;
  }
}
.common_mv.common_mv_news {
  background: url(../images/common_mv_news.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv.common_mv_news {
    background: url(../images/common_mv_news.jpg) -370px/cover no-repeat;
  }
}
.common_mv.common_mv_contact {
  background: url(../images/common_mv_contact.jpg) center/cover no-repeat;
}

.contact_hukidashi {
  width: 500px;
  position: inherit;
  margin: 0 auto 0px;
  z-index: 500;
}
@media (max-width: 599px) {
  .contact_hukidashi {
    width: 100%;
    margin-bottom: 0px;
  }
}

.contact_tel {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .contact_tel {
    margin-bottom: 10px;
  }
}
.contact_tel a {
  font-size: 66px;
  font-weight: bold;
  color: #665952;
}
@media (max-width: 599px) {
  .contact_tel a {
    font-size: 32px;
  }
}
.contact_tel a img {
  width: 50px;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .contact_tel a img {
    width: 25px;
  }
}
.contact_tel .contact_tel_open {
  font-size: 18px;
  color: #665952;
}
@media (max-width: 599px) {
  .contact_tel .contact_tel_open {
    font-size: 14px;
  }
}
.contact_tel .contact_tel_open span {
  background-color: #7acdf3;
  padding: 3px 30px;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .contact_tel .contact_tel_open span {
    display: inline-block;
    margin-right: 0;
  }
}

.contact_btn {
  font-size: 24px;
  background-color: #ffaab1;
  width: 400px;
  padding: 10px 0;
}
.contact_btn:after {
  right: 10px;
}
.contact_btn:hover::after {
  right: 4px;
}
@media (max-width: 599px) {
  .contact_btn {
    width: 100%;
    font-size: 16px;
  }
}
.contact_btn img {
  width: 28px;
  margin-right: 10px;
  margin-bottom: 4px;
}
@media (max-width: 599px) {
  .contact_btn img {
    margin-right: 3px;
    margin-bottom: 1px;
    width: 24px;
  }
}

.common_contact {
  padding-bottom: 150px;
  padding-top: 50px;
}
@media (max-width: 599px) {
  .common_contact {
    padding-bottom: 80px;
  }
}

.common_border {
  line-height: 0;
}

#course_youji,
#course_jidou,
#common_flow,
#about_feature,
#about_nursing {
  padding-top: 90px;
  margin-top: -90px;
}

header {
  background: url(../images/header_bg.png) top/cover no-repeat;
  color: #665952;
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
}
@media (max-width: 768px) {
  header {
    background: url(../images/header_bg_sp.png) right/cover no-repeat;
    height: 110px;
    overflow: inherit;
  }
}
@media (max-width: 599px) {
  header {
    height: 70px;
  }
}
header .inner {
  width: 1120px;
}
@media (max-width: 1200px) {
  header .inner {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  header .inner {
    width: 90%;
  }
}
header .header_row {
  flex-wrap: nowrap;
}
header .header_left {
  width: 280px;
}
@media (max-width: 1200px) {
  header .header_left {
    width: 240px;
  }
}
@media (max-width: 768px) {
  header .header_left {
    width: 210px;
    margin-left: -6%;
    position: inherit;
    z-index: 3000;
  }
}
@media (max-width: 599px) {
  header .header_left {
    width: 150px;
  }
}
@media (max-width: 768px) {
  header .header_left .header_left_pc {
    display: none;
  }
}
header .header_left .header_left_sp {
  background-color: #fff;
  border-radius: 0 0 10px 0;
  padding: 10px;
  display: none;
}
@media (max-width: 768px) {
  header .header_left .header_left_sp {
    display: block;
  }
}
header .header_center {
  padding-top: 30px;
}
@media (max-width: 768px) {
  header .header_center .header_nav_pc {
    display: none;
  }
}
header .header_center .header_nav_pc li {
  margin-right: 30px;
  text-align: center;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  header .header_center .header_nav_pc li {
    margin-right: 10px;
  }
}
header .header_center .header_nav_pc li:hover {
  transform: translateY(-5px);
}
header .header_center .header_nav_pc li img {
  height: 25px;
  width: auto;
  display: block;
  margin: 0 auto;
}
header .header_center .header_nav_pc li a {
  color: #665952;
  transition: 0.3s;
}
header .header_center .header_nav_pc li a:hover {
  transform: translateY(-5px);
}
header .header_right {
  padding-top: 30px;
}
@media (max-width: 768px) {
  header .header_right {
    padding-top: 0;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  header .header_right .header_right_contact {
    display: none;
  }
}
header .header_right .header_right_contact a {
  font-size: 24px;
  font-weight: bold;
  display: block;
  color: #665952;
}
header .header_right .header_right_contact img {
  height: 22px;
  width: auto;
  vertical-align: baseline;
}
header .header_right .header_right_contact .header_right_contact_btn {
  text-align: center;
}
header .header_right .header_right_contact .header_right_contact_btn img {
  width: 150px;
  height: auto;
}

.header_scroll {
  background-color: #ffffdb;
  height: 90px;
  position: fixed;
  top: -220px;
  width: 100%;
  z-index: 10000;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .header_scroll {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .header_scroll {
    height: 55px;
  }
}
.header_scroll .header_scroll_logo {
  width: 250px;
}
@media (max-width: 1024px) {
  .header_scroll .header_scroll_logo {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .header_scroll .header_scroll_logo {
    display: none;
  }
}
.header_scroll .header_scroll_logo_sp {
  display: none;
}
@media (max-width: 768px) {
  .header_scroll .header_scroll_logo_sp {
    display: block;
    width: 150px;
    margin-left: -2%;
    position: inherit;
    z-index: 3000;
    background-color: #fff;
    border-radius: 0 0 10px 0;
    padding: 10px;
  }
}
.header_scroll .header_nav_scroll {
  padding: 20px 0;
}
@media (max-width: 768px) {
  .header_scroll .header_nav_scroll {
    display: none;
  }
}
.header_scroll .header_nav_scroll li {
  margin-right: 30px;
  text-align: center;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header_scroll .header_nav_scroll li {
    margin-right: 10px;
  }
}
.header_scroll .header_nav_scroll li:hover {
  transform: translateY(-5px);
}
.header_scroll .header_nav_scroll li img {
  height: 25px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.header_scroll .header_nav_scroll li a {
  color: #665952;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .header_scroll .header_nav_scroll li a {
    font-size: 14px;
  }
}
.header_scroll .header_scroll_tel {
  display: flex;
}
@media (max-width: 768px) {
  .header_scroll .header_scroll_tel {
    display: none;
  }
}
.header_scroll .header_scroll_tel img {
  width: 90px;
  height: auto;
}
@media (max-width: 1024px) {
  .header_scroll .header_scroll_tel img {
    width: 80px;
  }
}
.header_scroll .header_scroll_contact img {
  width: 90px;
  height: auto;
}
@media (max-width: 1024px) {
  .header_scroll .header_scroll_contact img {
    width: 80px;
  }
}
.header_scroll .menu_btn {
  margin-top: 8px;
  margin-right: 20px;
}

.header_scroll.active {
  top: 0;
}

.menu_btn {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn {
    display: block;
    width: 60px;
    height: 30px;
    position: relative;
    z-index: 4000;
    cursor: pointer;
    margin-top: 10px;
  }
  .menu_btn span {
    display: inline-block;
    height: 4px;
    width: 35px;
    background-color: #7acdf3;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .menu_btn span:nth-child(1) {
    top: 10px;
  }
  .menu_btn span:nth-child(2) {
    top: 20px;
  }
  .menu_btn span:nth-child(3) {
    top: 30px;
  }
}

.header_nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 115px 0 0;
  text-align: center;
  background-color: #ffffdb;
}
.header_nav_sp li {
  margin-bottom: 20px;
}
.header_nav_sp li a {
  color: #665952;
  font-weight: bold;
  font-size: 18px;
}
.header_nav_sp li a img {
  height: 32px;
  width: auto;
}
@media (max-width: 599px) {
  .header_nav_sp li a img {
    height: 22px;
  }
}
.header_nav_sp .nav_sp-contact {
  background-color: #fff;
  display: block;
  border-radius: 30px;
  padding: 10px 30px;
  width: 60%;
  margin: 0 auto;
  font-size: 20px;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .header_nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

footer {
  padding-top: 50px;
  position: relative;
}
@media (max-width: 599px) {
  footer {
    margin-bottom: 49px;
    padding-top: 20px;
  }
}
footer .footer_logo {
  width: 200px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 100;
}
@media (max-width: 599px) {
  footer .footer_logo {
    width: 150px;
    margin-bottom: 30px;
  }
}
footer .footer_row {
  margin-bottom: 20px;
}
footer .footer_left {
  margin-right: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  footer .footer_left {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
footer .footer_left .footer_address {
  color: #665952;
  line-height: 1.6;
}
footer .footer_left .footer_tel {
  font-size: 32px;
  font-weight: bold;
  color: #665952;
}
footer .footer_left .footer_tel img {
  width: 26px;
  margin-bottom: 5px;
}
footer .footer_left .footer_mail {
  font-size: 18px;
  color: #665952;
  display: block;
}
footer .footer_left .footer_mail img {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 599px) {
  footer .footer_right .row {
    justify-content: space-between;
  }
}
footer .footer_right li {
  width: 45%;
}
@media (max-width: 599px) {
  footer .footer_right li {
    width: 49%;
  }
}
footer .footer_right li a {
  color: #665952;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 599px) {
  footer .footer_right li a {
    text-indent: -1.6em;
    padding-left: 1.6em;
  }
}
footer .footer_right li img {
  height: 25px;
  width: auto;
  margin-right: 5px;
}
@media (max-width: 599px) {
  footer .footer_right li img {
    height: 18px;
  }
}
footer .copyright {
  background-color: #ffbe58;
  padding: 5px 0;
  text-align: center;
}
footer .copyright p {
  font-size: 14px;
  color: #FFF;
}
footer .copyright p a {
  color: #FFF;
}
footer .footer_item_top {
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media (max-width: 1024px) {
  footer .footer_item_top {
    top: -95px;
  }
}
@media (max-width: 768px) {
  footer .footer_item_top {
    top: -40px;
  }
}

.footer_banner {
  text-align: center;
  width: 200px;
  margin: 0px auto 20px;
}
.footer_banner .footer_banner_img {
  margin-bottom: 10px;
  display: block;
}
.footer_banner a {
  color: #665952;
  font-size: 14px;
}

.mv {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  padding-bottom: 350px;
  margin-bottom: -350px;
  z-index: 10;
}
@media (max-width: 768px) {
  .mv {
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .mv {
    margin-top: 30px;
  }
}
@media (max-width: 1200px) {
  .mv .mv_img {
    width: 1200px;
  }
}
@media (max-width: 1024px) {
  .mv .mv_img {
    width: 1024px;
  }
}
@media (max-width: 599px) {
  .mv .mv_img {
    width: 100%;
  }
}
.mv .inner {
  position: relative;
}
.mv .inner .mv_text {
  position: absolute;
  left: 180px;
  bottom: -30px;
  width: 120px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .mv .inner .mv_text {
    left: 100px;
  }
}
@media (max-width: 1024px) {
  .mv .inner .mv_text {
    width: 90px;
  }
}
@media (max-width: 599px) {
  .mv .inner .mv_text {
    left: 0;
    width: 60px;
    bottom: -10px;
    transform: translateY(-50%);
  }
}
.mv .inner .mv_text img {
  border-radius: 10px;
}
.mv .mv_item_bottom {
  position: absolute;
  bottom: 150px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .mv .mv_item_bottom {
    width: 1200px;
  }
}
@media (max-width: 599px) {
  .mv .mv_item_bottom {
    bottom: 250px;
    width: 600px;
  }
}

.news {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 350px;
  margin-bottom: -350px;
}
.news .news_inner {
  position: relative;
  z-index: 100;
}
@media (max-width: 1200px) {
  .news .news_inner {
    width: 1024px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .news .news_inner {
    width: 100%;
  }
}
.news .inner {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  position: inherit;
  z-index: 1000;
  width: 768px;
}
@media (max-width: 768px) {
  .news .inner {
    width: 90%;
  }
}
.news .ttl {
  position: relative;
  padding-top: 40px;
}
.news .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
}
.news .news_list li {
  position: relative;
}
.news .news_list li::after {
  content: url(../images/news_arrow.png);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-30%) scale(0.4);
}
@media (max-width: 768px) {
  .news .news_list li::after {
    content: none;
  }
}
.news .news_list li a {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px dashed #665952;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .news .news_list li a {
    display: block;
  }
}
.news .news_list li a span {
  margin-right: 30px;
  color: #665952;
}
.news .news_list li a p {
  color: #665952;
}
.news .news_btn {
  background-color: #ffbe58;
}
.news .news_item_left {
  position: absolute;
  top: -50px;
  left: -70px;
  width: 650px;
  z-index: 1;
}
@media (max-width: 768px) {
  .news .news_item_left {
    top: -30px;
    left: -180px;
    width: 480px;
  }
}
@media (max-width: 599px) {
  .news .news_item_left {
    top: 100px;
    left: -270px;
    width: 450px;
  }
}
.news .news_item_right {
  position: absolute;
  top: -50px;
  right: -120px;
  width: 580px;
  z-index: 1;
}
@media (max-width: 768px) {
  .news .news_item_right {
    top: -40px;
    right: -230px;
    width: 500px;
  }
}

.read_text {
  overflow: hidden;
  padding: 250px 0;
  margin: -150px 0;
}
.read_text .read_text_inner {
  height: 400px;
  position: relative;
}
@media (max-width: 1200px) {
  .read_text .read_text_inner {
    width: 1200px;
  }
}
@media (max-width: 599px) {
  .read_text .read_text_inner {
    width: 100%;
  }
}
.read_text .read_text_left {
  position: absolute;
  left: 430px;
}
@media (max-width: 768px) {
  .read_text .read_text_left {
    left: 30px;
  }
}
@media (max-width: 599px) {
  .read_text .read_text_left {
    position: initial;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
.read_text .read_text_left .ttl {
  text-align: left;
}
@media (max-width: 599px) {
  .read_text .read_text_left .ttl {
    text-align: center;
  }
}
.read_text .read_text_left p {
  color: #665952;
  line-height: 2;
}
@media (max-width: 599px) {
  .read_text .read_text_left p {
    text-align: center;
    font-size: 15px;
  }
}
.read_text .read_text_right {
  width: 550px;
  position: absolute;
  right: -60px;
  top: -110px;
}
@media (max-width: 768px) {
  .read_text .read_text_right {
    right: 330px;
    top: -107px;
  }
}
@media (max-width: 599px) {
  .read_text .read_text_right {
    width: 100%;
    margin-right: -35px;
    margin-left: auto;
    position: initial;
  }
}

.growth_support {
  padding-top: 160px;
}
@media (max-width: 599px) {
  .growth_support {
    margin-bottom: 0;
  }
}
.growth_support .ttl {
  position: relative;
  padding-top: 90px;
}
@media (max-width: 599px) {
  .growth_support .ttl {
    padding-top: 60px;
  }
}
.growth_support .ttl::before {
  content: url(../images/ttl_logo.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
@media (max-width: 599px) {
  .growth_support .ttl::before {
    transform: translate(-50%, -50%) scale(0.3);
  }
}
.growth_support .growth_support_list li {
  width: 32%;
}
@media (max-width: 599px) {
  .growth_support .growth_support_list li {
    width: 90%;
    margin: 0 auto;
    margin-right: 5px;
  }
}

.growth_support_banner {
  width: 70%;
  margin: 60px auto 120px;
  position: relative;
  background-color: #bbe1ff;
}
@media (max-width: 1200px) {
  .growth_support_banner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .growth_support_banner {
    width: 90%;
  }
}

.about .ttl {
  position: relative;
  padding-top: 90px;
}
@media (max-width: 599px) {
  .about .ttl {
    padding-top: 60px;
  }
}
.about .ttl::before {
  content: url(../images/ttl_logo.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
@media (max-width: 599px) {
  .about .ttl::before {
    transform: translate(-50%, -50%) scale(0.3);
  }
}
.about .about_text {
  text-align: center;
  color: #665952;
  margin-bottom: 30px;
}
.about .about_btn {
  background-color: #ff8600;
  margin-bottom: 50px;
}
.about .about_list {
  position: relative;
}
.about .about_list .about_list_left {
  position: absolute;
  width: 250px;
  left: 0;
  top: 0;
}
@media (max-width: 1200px) {
  .about .about_list .about_list_left {
    left: -45px;
  }
}
@media (max-width: 599px) {
  .about .about_list .about_list_left {
    display: none;
  }
}
.about .about_list ul {
  align-items: stretch;
}
.about .about_list li {
  width: 276px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.about .about_list li:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .about .about_list li {
    margin-right: 0;
  }
}
.about .about_list li img {
  border-radius: 20px 20px 0 0;
  margin-bottom: 50px;
}
.about .about_list li h4 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #ff759b;
  padding: 3px 5px;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  top: 190px;
  left: 50%;
  width: 100%;
  width: 230px;
  transform: translateX(-50%);
}
.about .about_list li p {
  margin-bottom: 20px;
  padding: 0 10px;
  line-height: 1.6;
  font-size: 15px;
}
.about .about_list li .about_item_btn {
  background-color: #ffbe58;
  margin-top: auto;
}

.message {
  padding-top: 0;
  background-color: #eff9fe;
}
.message .message_sp {
  background-color: #bbe1ff;
  padding: 30px 15px;
  border-radius: 20px;
}
.message .message_sp .ttl {
  position: relative;
  margin-bottom: 60px;
}
.message .message_sp .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.message .message_sp .message_sp_icon {
  width: 80%;
  margin: 0 auto 20px;
}
.message .message_sp .message_sp_text {
  margin-bottom: 30px;
}
.message .message_sp .message_sp_text p {
  line-height: 2;
  color: #665952;
}
.message .message_sp .message_sp_pittari {
  width: 80%;
  margin: 0 auto 20px;
}
.class_banner {
  background: url(../images/class_banner_bg.png) center/cover no-repeat;
  padding: 50px 0;
}
@media (max-width: 599px) {
  .class_banner {
    margin-top: 150px;
  }
}
.class_banner .inner {
  width: 90%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px 0;
}
.class_banner .inner .class_banner_logo {
  width: 300px;
  margin: 0 auto 20px;
}
@media (max-width: 599px) {
  .class_banner .inner .class_banner_logo {
    width: 80%;
  }
}
.class_banner .inner .class_banner_btn {
  background-color: #ff8600;
}

.contact {
  background-color: #eff9fe;
  padding-bottom: 150px;
}
.contact.common_contact .contact_inner {
  padding-top: 150px;
}
.contact .contact_inner {
  margin-top: -150px;
}
.contact .inner {
  position: relative;
  width: 1024px;
}
@media (max-width: 768px) {
  .contact .inner {
    width: 90%;
  }
}
.contact .inner .cta_item_right {
  position: absolute;
  top: -120px;
  right: -50px;
  width: 350px;
}
@media (max-width: 768px) {
  .contact .inner .cta_item_right {
    top: -105px;
    left: -100px;
    width: 200px;
  }
}
@media (max-width: 599px) {
  .contact .inner .cta_item_right {
    display: none;
  }
}
.contact .ttl {
  position: relative;
  margin-bottom: 30px;
  padding-top: 40px;
}
.contact .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.contact .contact_hukidashi {
  width: 500px;
  position: inherit;
  margin: 0 auto 0px;
  z-index: 500;
}
@media (max-width: 599px) {
  .contact .contact_hukidashi {
    width: 100%;
    margin-bottom: 0px;
  }
}
.contact .contact_tel {
  text-align: center;
  margin-bottom: 30px;
}
.contact .contact_tel a {
  font-size: 66px;
  font-weight: bold;
  color: #665952;
}
@media (max-width: 599px) {
  .contact .contact_tel a {
    font-size: 32px;
  }
}
.contact .contact_tel a img {
  width: 50px;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .contact .contact_tel a img {
    width: 25px;
  }
}
.contact .contact_tel .contact_tel_open {
  font-size: 18px;
  color: #665952;
}
@media (max-width: 599px) {
  .contact .contact_tel .contact_tel_open {
    font-size: 14px;
  }
}
.contact .contact_tel .contact_tel_open span {
  background-color: #7acdf3;
  padding: 3px 30px;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .contact .contact_tel .contact_tel_open span {
    display: inline-block;
    margin-right: 0;
  }
}
.contact .contact_btn {
  font-size: 24px;
  background-color: #ffaab1;
  width: 400px;
  padding: 10px 0;
}
.contact .contact_btn:after {
  right: 10px;
}
.contact .contact_btn:hover::after {
  right: 4px;
}
@media (max-width: 599px) {
  .contact .contact_btn {
    width: 100%;
    font-size: 16px;
  }
}
.contact .contact_btn img {
  width: 28px;
  margin-right: 10px;
  margin-bottom: 4px;
}
@media (max-width: 599px) {
  .contact .contact_btn img {
    margin-right: 3px;
    margin-bottom: 1px;
    width: 24px;
  }
}

.class {
  background-color: #eff9fe;
  padding-top: 30px;
}
.class .class_inner {
  overflow-x: hidden;
  overflow-y: visible;
}
.class .inner {
  width: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .class .inner {
    width: 1200px;
  }
}
@media (max-width: 768px) {
  .class .inner {
    width: 100%;
  }
}
.class .ttl {
  position: relative;
  margin-bottom: 30px;
  padding-top: 40px;
}
.class .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.class .iframe {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .class .iframe {
    width: 90%;
  }
}
.class .class_item_bottom {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .class .class_item_bottom {
    bottom: -150px;
  }
}

.class_item_left {
  position: absolute;
  bottom: -310px;
  left: 0;
  width: 400px;
  z-index: 100;
}
@media (max-width: 1024px) {
  .class_item_left {
    bottom: -240px;
    width: 340px;
  }
}
@media (max-width: 768px) {
  .class_item_left {
    bottom: -240px;
    width: 260px;
  }
}
@media (max-width: 599px) {
  .class_item_left {
    width: 210px;
    bottom: -160px;
    left: -75px;
  }
}

/* fadein */
/* fadeUp */
.fade {
  animation-name: fadeAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.fadeUp1 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.fadeUp2 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

.fadeUp3 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.7s;
}

.fadeUp-delay {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.fadeUp-delay2 {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadein,
.fadein-delay,
.fadein-delay2,
.fadein-fade,
.fadein-up,
.fadein-up1,
.fadein-up2,
.fadein-up3 {
  opacity: 0;
}

.page_news {
  padding: 50px 0;
  padding-bottom: 0;
}

.page_news_list {
  width: 75%;
}
@media (max-width: 599px) {
  .page_news_list {
    width: 100%;
  }
}
.page_news_list ul li {
  flex-wrap: nowrap;
  border-bottom: 1px dashed #665952;
  padding-bottom: 25px;
  margin-bottom: 50px;
}
.page_news_list ul li:last-child {
  border-bottom: none;
}
@media (max-width: 599px) {
  .page_news_list ul li {
    flex-wrap: wrap;
  }
}
.page_news_list ul li img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 599px) {
  .page_news_list ul li img {
    margin-right: 0;
    width: 100%;
    height: 250px;
  }
}
.page_news_list ul li .news_date {
  font-size: 14px;
}
.page_news_list ul li h3 {
  color: #665952;
  margin-bottom: 10px;
}
.page_news_list ul li .news_btn {
  background-color: #ff8600;
  margin-left: 0;
}
.page_news_list ul li .news_text {
  margin-bottom: 30px;
  line-height: 1.6;
}

.sidebar {
  width: 20%;
}
@media (max-width: 599px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar .ttl {
  font-size: 24px;
}
.sidebar p {
  cursor: pointer;
  background-color: #7acdf3;
  padding: 1px 15px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
  position: relative;
  margin-bottom: 10px;
}
.sidebar p::after {
  content: url(../images/btn_arrow.png);
  position: absolute;
  right: 15px;
  top: 53%;
  transform: translateY(-50%) scale(0.3);
  transition: 0.3s;
}
.sidebar p:hover::after {
  right: 6px;
}
.sidebar ul {
  list-style: inside;
}
.sidebar ul li {
  margin-bottom: 10px;
}
.sidebar ul li a {
  font-size: 18px;
  color: #665952;
  margin-bottom: 10px;
}

.single_news {
  padding: 50px 0;
}
.single_news .single_news_date {
  font-size: 14px;
}
.single_news .single_news_ttl {
  color: #665952;
  margin-bottom: 10px;
  border-bottom: 1px dashed #665952;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 32px;
}
.single_news .single_news_btn {
  background-color: #ff8600;
}
.single_news p a {
  color: #0080ff;
  text-decoration: underline;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pagination nav.post-navigation {
  display: block;
}

.pagination .nav-links {
  display: flex;
  justify-content: space-between;
}

.pagination nav.post-navigation a {
  border-radius: 40px;
  width: 120px;
  padding: 5px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 16px;
  transition: 0.3s;
  background-color: #ffbe58;
}

.single_news img {
  width: auto;
}

.page_contact {
  padding: 50px 0;
}
.page_contact form {
  width: 768px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #7acdf3;
  box-shadow: 10px 10px 10px -10px #777777;
}
@media (max-width: 768px) {
  .page_contact form {
    width: 100%;
    padding: 20px 15px;
  }
}
.page_contact form .row {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #665952;
}
.page_contact form .row label .requre {
  color: red;
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.page_contact form label {
  font-weight: bold;
  color: #665952;
  width: 30%;
}
@media (max-width: 599px) {
  .page_contact form label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.page_contact form .contact_right {
  width: 65%;
}
@media (max-width: 599px) {
  .page_contact form .contact_right {
    width: 100%;
  }
}
.page_contact form .contact_right input {
  padding: 10px 5px;
  border: none;
  border-radius: 3px;
  width: 100%;
  background-color: #eee;
  font-size: 16px;
}
.page_contact form .contact_right input[type=radio] {
  width: auto;
}
.page_contact form .contact_right select {
  padding: 10px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #665952;
}
@media (max-width: 599px) {
  .page_contact form .contact_right select {
    padding: 10px 12px;
  }
}
.page_contact form .contact_right textarea {
  font-size: 16px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #665952;
}
.page_contact form .your-birth_row .contact_right {
  display: flex;
}
.page_contact form .your-birth_row .contact_right .your-birth_row_text {
  margin-right: 20px;
  margin-left: 5px;
  font-weight: bold;
  padding-top: 3px;
}
.page_contact form .your-pref_row p {
  width: 30%;
  color: #665952;
  font-weight: bold;
}
.page_contact form input[type=submit] {
  border-radius: 40px;
  width: 240px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
  transition: 0.3s;
  background-color: #ff8600;
  border: none;
  cursor: pointer;
}
.page_contact form input[type=submit]::after {
  content: url(../images/btn_arrow.png);
  position: absolute;
  right: 15px;
  top: 53%;
  transform: translateY(-50%) scale(0.3);
  transition: 0.3s;
}
.page_contact form input[type=submit]:hover::after {
  right: 6px;
}
.page_contact .privacy_text {
  text-align: center;
  color: #665952;
  margin-bottom: 20px;
}
.page_contact .privacy_text a {
  text-decoration: underline;
  color: #665952;
}

.page_privacy {
  padding-top: 50px;
}
.page_privacy .page_privacy_item {
  margin-bottom: 50px;
  border-bottom: 2px dashed #665952;
  padding-bottom: 20px;
}
.page_privacy .page_privacy_item h3 {
  font-size: 24px;
  color: #665952;
  font-weight: bold;
  margin-bottom: 20px;
}

.page_thanks {
  text-align: center;
  padding: 150px 0;
}
.page_thanks h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.wpcf7 p {
  display: inline;
  width: 30%;
}
@media (max-width: 599px) {
  .wpcf7 p {
    width: 100%;
  }
}

.page_growth_support_bg {
  background: url(../images/bg_top.png) center/cover no-repeat;
}

.page_growth_support-about {
  padding: 50px 0;
  overflow: hidden;
}
.page_growth_support-about .inner {
  background-color: #ffec83;
  border-radius: 20px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
@media (max-width: 1200px) {
  .page_growth_support-about .inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .page_growth_support-about .inner {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .page_growth_support-about .inner {
    padding: 20px;
    text-align: left;
  }
}
.page_growth_support-about .inner .growth_about_item_left {
  position: absolute;
  top: -20px;
  left: -50px;
  width: 200px;
}
@media (max-width: 1024px) {
  .page_growth_support-about .inner .growth_about_item_left {
    top: -10px;
    right: -90px;
    width: 180px;
  }
}
@media (max-width: 768px) {
  .page_growth_support-about .inner .growth_about_item_left {
    top: -20px;
    left: -20px;
    width: 70px;
    right: none;
  }
}
.page_growth_support-about .inner .growth_about_item_right {
  position: absolute;
  top: 0;
  right: -120px;
  width: 280px;
}
@media (max-width: 1024px) {
  .page_growth_support-about .inner .growth_about_item_right {
    top: -10px;
    right: -90px;
    width: 180px;
  }
}
@media (max-width: 768px) {
  .page_growth_support-about .inner .growth_about_item_right {
    top: auto;
    bottom: -50px;
    right: -20px;
    width: 120px;
  }
}
.page_growth_support-about .page_growth_support-about_ttl {
  font-size: 32px;
  color: #665952;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .page_growth_support-about .page_growth_support-about_ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.page_growth_support-course {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .page_growth_support-course {
    padding-bottom: 0;
  }
}
.page_growth_support-course .growth_support-course_item {
  display: flex;
}
@media (max-width: 599px) {
  .page_growth_support-course .growth_support-course_item {
    display: block;
    margin-bottom: 50px;
  }
}
.page_growth_support-course .growth_support-course_item .left {
  width: 40%;
}
@media (max-width: 599px) {
  .page_growth_support-course .growth_support-course_item .left {
    width: 80%;
    margin: 0 auto 20px;
  }
}
.page_growth_support-course .growth_support-course_item .right {
  width: 55%;
}
@media (max-width: 599px) {
  .page_growth_support-course .growth_support-course_item .right {
    width: 100%;
  }
}
.page_growth_support-course .growth_support-course_item .right h4 {
  color: #665952;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .page_growth_support-course .growth_support-course_item .right h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.page_growth_support-nursing {
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 599px) {
  .page_growth_support-nursing {
    padding-bottom: 0;
  }
}
.page_growth_support-nursing .ttl {
  position: relative;
  margin-bottom: 60px;
}
.page_growth_support-nursing .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.page_growth_support-nursing .ttl span {
  display: block;
  letter-spacing: 1px;
  font-size: 14px;
}
.page_growth_support-nursing .nursing_item {
  margin-bottom: 50px;
}
.page_growth_support-nursing .nursing_item .row {
  margin-bottom: 20px;
}
.page_growth_support-nursing .nursing_item .left {
  width: 59.9%;
}
.page_growth_support-nursing .nursing_item .right {
  width: 36.8%;
}
.page_growth_support-nursing .nursing_item img {
  border-radius: 20px;
}
.page_growth_support-nursing .nursing_item h4 {
  font-size: 28px;
  color: #665952;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .page_growth_support-nursing .nursing_item h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.page_growth_support-nursing .nursing_item .nursing_item_text {
  display: flex;
}
@media (max-width: 768px) {
  .page_growth_support-nursing .nursing_item .nursing_item_text {
    display: block;
  }
}
.page_growth_support-nursing .nursing_item .nursing_item_text p {
  font-size: 14px;
  line-height: 1.5;
}
.page_growth_support-nursing .nursing_item1 .right {
  position: relative;
}
.page_growth_support-nursing .nursing_item1 .right_item {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 50px;
}
@media (max-width: 768px) {
  .page_growth_support-nursing .nursing_item1 .right_item {
    top: -20px;
    right: 10px;
    width: 20px;
  }
}
.page_growth_support-nursing .nursing_item3 .left {
  position: relative;
}
.page_growth_support-nursing .nursing_item3 .left_item {
  position: absolute;
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
}
@media (max-width: 768px) {
  .page_growth_support-nursing .nursing_item3 .left_item {
    top: -30px;
    left: 10px;
    width: 20px;
  }
}
.page_growth_support-nursing .nursing_item4 .left {
  position: relative;
}
.page_growth_support-nursing .nursing_item4 .left_item {
  position: absolute;
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 200px;
}
@media (max-width: 768px) {
  .page_growth_support-nursing .nursing_item4 .left_item {
    bottom: -10px;
    right: -10px;
    width: 50px;
  }
}

.common_flow {
  background-color: #ffffdb;
  padding: 100px 0 150px;
}
@media (max-width: 599px) {
  .common_flow {
    padding-bottom: 70px;
  }
}
.common_flow .inner {
  width: 768px;
}
@media (max-width: 768px) {
  .common_flow .inner {
    width: 90%;
  }
}

.common_flow_ttl {
  position: relative;
}
.common_flow_ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
}
.common_flow_ttl img {
  position: absolute;
  top: -60px;
  left: 20%;
  width: 90px;
}
@media (max-width: 599px) {
  .common_flow_ttl img {
    top: -30px;
    left: 0%;
    width: 70px;
  }
}

.common_flow_item:first-child .right {
  width: auto;
}
.common_flow_item:first-child .row {
  margin-left: 0;
}
@media (max-width: 599px) {
  .common_flow_item {
    text-align: center;
  }
}
.common_flow_item .row {
  margin-left: 150px;
}
@media (max-width: 768px) {
  .common_flow_item .row {
    margin-left: 0;
  }
}
@media (max-width: 599px) {
  .common_flow_item .row {
    display: block;
  }
}
.common_flow_item .left {
  width: 150px;
  height: 150px;
  margin-right: 30px;
  background-color: #fff;
  border: 3px solid #7acdf3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .common_flow_item .left {
    margin: 0 auto 20px;
  }
}
.common_flow_item .left img {
  width: 80px;
}
.common_flow_item .right h4 {
  font-size: 24px;
  color: #665952;
  margin-bottom: 20px;
}
.common_flow_item .arrow_blue_bottom {
  width: 30px;
  margin-bottom: 30px;
  margin-top: 50px;
  margin-left: 60px;
}
@media (max-width: 599px) {
  .common_flow_item .arrow_blue_bottom {
    margin: 30px auto 20px;
  }
}
.common_flow_item .arrow_blue_bottom_center {
  text-align: center;
}

.page_about_bg {
  background: url(../images/bg_top.png) top/cover no-repeat;
}

.page_about {
  padding: 50px 0;
}
.page_about .page_about_left,
.page_about .page_about_right {
  width: 48%;
}
@media (max-width: 599px) {
  .page_about .page_about_left,
  .page_about .page_about_right {
    width: 100%;
  }
}
.page_about .page_about_left {
  position: relative;
}
@media (max-width: 599px) {
  .page_about .page_about_left {
    margin-bottom: 30px;
  }
}
.page_about .page_about_left .page_about_left_img {
  border-radius: 20px;
}
.page_about .page_about_left .page_about_left_item {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
}
@media (max-width: 768px) {
  .page_about .page_about_left .page_about_left_item {
    width: 120px;
  }
}
@media (max-width: 599px) {
  .page_about .page_about_left .page_about_left_item {
    width: 80px;
    bottom: -20px;
    left: -10px;
  }
}
.page_about .page_about_right .ttl {
  text-align: left;
  font-size: 24px;
}
@media (max-width: 768px) {
  .page_about .page_about_right .ttl {
    font-size: 18px;
  }
}

.page_about_listbox {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 150px;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1200px) {
  .page_about_listbox {
    padding: 20px;
  }
}
@media (max-width: 599px) {
  .page_about_listbox {
    margin-top: 60px;
    padding: 20px 10px;
  }
}
.page_about_listbox h3 img {
  width: 40px;
  display: block;
  margin: 0 auto 10px;
}
.page_about_listbox .page_about_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page_about_listbox .page_about_list li {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #665952;
  letter-spacing: 3px;
  margin-bottom: 20px;
  width: 50%;
  padding-left: 50px;
}
.page_about_listbox .page_about_list li::after {
  content: url(../images/icon_check_blue.png);
  position: absolute;
  left: 0px;
  top: -10px;
  transform: scale(0.5);
}
@media (max-width: 599px) {
  .page_about_listbox .page_about_list li::after {
    transform: scale(0.4);
    top: -12px;
  }
}
@media (max-width: 599px) {
  .page_about_listbox .page_about_list li {
    width: 100%;
    font-size: 18px;
  }
}
.page_about_listbox .about_list_item_left {
  width: 120px;
  position: absolute;
  bottom: -20px;
  left: 20px;
}
@media (max-width: 599px) {
  .page_about_listbox .about_list_item_left {
    width: 80px;
  }
}
.page_about_listbox .about_list_item_right {
  width: 120px;
  position: absolute;
  right: 20px;
  top: 60px;
}
@media (max-width: 1024px) {
  .page_about_listbox .about_list_item_right {
    width: 60px;
    right: -10px;
    top: -10px;
  }
}

.about_nursing {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .about_nursing {
    padding-top: 0;
  }
}
.about_nursing .ttl {
  position: relative;
  padding-top: 50px;
}
.about_nursing .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.about_nursing .ttl span {
  font-size: 16px;
  display: block;
  font-weight: normal;
  letter-spacing: 1px;
}
@media (max-width: 599px) {
  .about_nursing .ttl span {
    font-size: 12px;
    margin-top: 10px;
  }
}
.about_nursing .left,
.about_nursing .right {
  width: 48%;
}
@media (max-width: 599px) {
  .about_nursing .left,
  .about_nursing .right {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .about_nursing .left {
    margin-bottom: 30px;
  }
}

.about_feature {
  padding: 50px 0 100px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .about_feature {
    padding-bottom: 50px;
    padding-top: 0;
  }
}
.about_feature .ttl {
  position: relative;
  padding-top: 50px;
}
.about_feature .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.about_feature .ttl span {
  font-size: 16px;
  display: block;
  font-weight: normal;
  letter-spacing: 1px;
}
@media (max-width: 599px) {
  .about_feature .ttl span {
    font-size: 12px;
    margin-top: 10px;
  }
}
.about_feature .about_feature_row {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .about_feature .about_feature_row {
    margin-bottom: 0;
  }
}
.about_feature .about_feature_row .left {
  width: 60%;
  position: relative;
}
@media (max-width: 599px) {
  .about_feature .about_feature_row .left {
    width: 100%;
    padding-top: 30px;
  }
}
.about_feature .about_feature_row .left .feature1 {
  width: 150px;
  position: absolute;
  top: -20px;
  left: 0;
}
@media (max-width: 768px) {
  .about_feature .about_feature_row .left .feature1 {
    width: 120px;
  }
}
.about_feature .about_feature_row .left .feature2 {
  position: absolute;
  width: 160px;
  top: -20px;
  right: 0;
}
@media (max-width: 768px) {
  .about_feature .about_feature_row .left .feature2 {
    width: 130px;
  }
}
.about_feature .about_feature_row .left .feature2_item {
  position: absolute;
  width: 300px;
  bottom: -100px;
  right: -150px;
}
@media (max-width: 599px) {
  .about_feature .about_feature_row .left .feature2_item {
    display: none;
  }
}
.about_feature .about_feature_row .right {
  width: 35%;
}
@media (max-width: 599px) {
  .about_feature .about_feature_row .right {
    width: 100%;
  }
}
.about_feature .about_feature_row .right h4 {
  font-size: 24px;
  color: #665952;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .about_feature .about_feature_row .right h4 {
    margin-top: 20px;
    font-size: 18px;
  }
}
.about_feature .about_feature_row .right p {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .about_feature .about_feature_row .right p {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .about_feature .about_feature_row_1 {
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .about_feature .about_feature_row_2 .left {
    padding-top: 0;
  }
}

.page_class {
  background-color: #ffffdb;
  padding-bottom: 50px;
  background: url(../images/bg_top.png) top/cover no-repeat;
}
.page_class .ttl {
  position: relative;
  padding-top: 50px;
}
.page_class .ttl::before {
  content: url(../images/section_border.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
}
.page_class .ttl span {
  font-size: 16px;
  display: block;
  font-weight: normal;
  letter-spacing: 1px;
}
@media (max-width: 599px) {
  .page_class .ttl span {
    font-size: 12px;
    margin-top: 10px;
  }
}
.page_class .bread {
  margin-bottom: 50px;
}
.page_class .class_about .class_about p {
  margin-bottom: 20px;
}
.page_class .class_aceess .left,
.page_class .class_aceess .right {
  width: 48%;
}
@media (max-width: 599px) {
  .page_class .class_aceess .left,
  .page_class .class_aceess .right {
    width: 100%;
  }
}
.page_class .class_aceess .left .class_left_img {
  border-radius: 20px;
}
.page_class .class_aceess .right {
  position: relative;
}
.page_class .class_aceess .right h3 {
  font-size: 24px;
  color: #665952;
}
.page_class .class_aceess .right .class_ring_item {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
}
@media (max-width: 1024px) {
  .page_class .class_aceess .right .class_ring_item {
    display: none;
  }
}
.page_class .class_aceess .right .class_aceess_txt {
  margin-bottom: 20px;
}
.page_class .class_aceess .right .class_aceess_txt .class_aceess_txt_left {
  width: 15%;
}
@media (max-width: 599px) {
  .page_class .class_aceess .right .class_aceess_txt .class_aceess_txt_left {
    width: 100%;
  }
}
.page_class .class_aceess .right .class_aceess_txt .class_aceess_txt_left p {
  font-weight: bold;
}
.page_class .class_aceess .right .class_aceess_txt .class_aceess_txt_right {
  width: 83%;
}
@media (max-width: 599px) {
  .page_class .class_aceess .right .class_aceess_txt .class_aceess_txt_right {
    width: 100%;
  }
}
.page_class .class_school {
  padding: 50px 0 0;
}
.page_class .class_school .school_name {
  font-size: 24px;
  color: #665952;
  margin-bottom: 10px;
}
.page_class .class_school .school_name.school_name_blue {
  color: #7acdf3;
}
.page_class .class_school .school_name.school_name_pink {
  color: #ff759b;
}
.page_class .class_school .school_name.school_name_orange {
  color: #ff8600;
}
.page_class .class_school .school_list {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 50px;
}
.page_class .class_school .school_list.school_list_blue {
  border: 3px solid #7acdf3;
}
.page_class .class_school .school_list.school_list_blue .school_item_name h5 {
  background-color: #7acdf3;
}
.page_class .class_school .school_list.school_list_pink {
  border: 3px solid #ff759b;
}
.page_class .class_school .school_list.school_list_pink .school_item_name h5 {
  background-color: #ff759b;
}
.page_class .class_school .school_list.school_list_yellow {
  border: 3px solid #fed400;
}
.page_class .class_school .school_list.school_list_yellow .school_item_name h5 {
  background-color: #fed400;
  color: #665952 !important;
}
.page_class .class_school .school_list .school_item {
  margin-bottom: 30px;
}
.page_class .class_school .school_list .school_item:last-child {
  margin-bottom: 0;
}
.page_class .class_school .school_list .school_item .school_item_name h5 {
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 18px;
  color: #fff;
  display: inline-block;
}
.page_class .class_state {
  padding: 50px 0;
}
.page_class .class_state .state_box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.page_class .class_state .state_box p {
  margin-bottom: 20px;
}
.page_class .class_voice {
  padding: 50px 0;
}
.page_class .class_voice .voice_item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 50px;
  border: 3px solid #7acdf3;
}
.page_class .class_voice .voice_item h4 {
  background-color: #7acdf3;
  color: #fff;
  font-size: 18px;
  border-radius: 5px 5px 0 0;
  padding: 10px;
  padding-left: 20px;
}
.page_class .class_voice .voice_item p {
  padding: 10px 20px;
}
.page_class .class_comment {
  padding: 50px 0;
}
.page_class .class_comment .comment_box {
  background-color: #bbe1ff;
  padding: 20px;
  border-radius: 10px;
}
.page_class .class_comment .comment_box p {
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}
.page_class .class_comment .comment_box p::before {
  content: "◯";
  position: absolute;
  top: 0;
  left: 0;
  color: #665952;
  font-size: 16px;
  font-weight: bold;
}
.page_class .iframe {
  margin-bottom: 30px;
}/*# sourceMappingURL=style.css.map */