@charset "utf-8";
/* Generic Child-obitoku-nurse : front-page ONLY
    フロントページのみに適用されるスタイル
　　　-body
　　　-コンテナ div id="container" #container
　　　-共通要素 （ .btn.more-link ）
    　-メインビジュアルスライダーdiv id="main-vis" #main-vis （bxslider）
    　-各コンテンツ section
　　　-メディアクエリ（ブレイクポイントごと）
*/

/*トップページは背景画像無し*/
body {
  background-image: none;
}

/* コンテナ div id="container" #container
---------------------------------------------------- */
#container {
  background-color: transparent;
  margin: 0 auto;
  width: 100%;
}

/*メインコンテンツ - メインカラム*/
main.content {
  float: none;
  margin: 0;
  padding: 00;
  width: 100%;
}

/* 共通要素
---------------------------------------------------- */
#wrapper {
    padding: 0;
    /* min-height: 160px; */
}

/* .btn.more-link */
p.btn.more-link {}

p.btn.more-link a {
  align-items: center;
  background-image: linear-gradient(90deg, #67dfc3, #b2f08f);
  border: #fff solid 10px;
  border-radius: 50px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  line-height: normal;
  padding: 15px 45px;
  text-decoration: none;
}

p.btn.more-link a:hover {
  background-image: linear-gradient(90deg, #96fbc4 0%, #f9f586 100%);
  transition: .3s;
}

/* メインビジュアルスライダーdiv id="main-vis" #main-vis （bxslider）
---------------------------------------------------- */
#main-vis {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #f5f7f6;
}

/*bxslider スタイルリセット*/
#main-vis .bx-wrapper {
  background-color: transparent;
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

#main-vis .bx-wrapper .bx-viewport {
  overflow: visible !important;
  width: 100% !important;
  /* スライド画像の横幅 */
  margin: 0 auto;
}

/*各スライド設定*/
#main-vis .bx-wrapper .bx-viewport .slider>div {
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #f5f7f6;
}

#main-vis .bx-wrapper .bx-viewport .slider>div img {
  margin: 0 auto;
}

/*キャッチコピー*/
#main-vis .catch {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 1vmax;
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 100%;
}

#main-vis .catch h2 {
  color: #000;
  font-family: 'Zen Maru Gothic';
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  width: 100%;
  letter-spacing: 2px;
}

#main-vis .catch h2 span {
  display: block;
  font-family: 'Zen Maru Gothic';
  background-color: #fff;
  border-radius: 100px;
  margin: 10px auto;
  padding: 15px 30px;
  width: fit-content;
  letter-spacing: 5px;
  box-shadow: 5px 5px 0px #66cccc;
}

/* TOPページと下層ページのグローバルメニュー表示を切り替え
---------------------------------------------------- */
.under-only-gm #menu {
  display: none;
}

/* 各コンテンツ section
---------------------------------------------------- */
/* front-wrap --- */
.front-wrap {
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* common 共通 --- */
#container .content section {}

section .section-wrap {
  margin: 0 auto;
  width: 900px;
}

/* common 共通 - header h2見出し --- */
section .section-wrap header {
  align-items: center;
  text-align: center;
}

section .section-wrap header h2 {
  color: #66cccc;
  font-family: 'Zen Maru Gothic';
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  position: relative;
  padding: 30px 0px;
}

section .section-wrap header h2 span {
  color: #000;
  font-family: 'Noto Sans JP';
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding: 10px 0px;
  display: block;
}

/* common 共通 - .entry-list（お知らせ・ブログ新着表示 共通） --- */
.entry-list .section-wrap .article-list {
  margin: 0 auto;
}

.entry-list .section-wrap .article-list article {
  align-items: center;
  border-bottom: #000 dotted 1px;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 1rem 0;
  position: relative;
  transition: .3s;
  max-width: 960px;
  z-index: 10;
}

.entry-list .section-wrap .article-list article:first-child {
  border-top: #000 dotted 1px;
}

.entry-list .section-wrap .article-list article:hover {
  opacity: .6;
  cursor: pointer;
}

.entry-list .section-wrap .article-list article .entry-meta {
  color: #000;
  margin: 0;
}

.entry-list .section-wrap .article-list article .entry-meta .entry-time {
  display: inline-block;
  padding: 0 0 0 .5em;
  width: 10em;
}

.entry-list .section-wrap .article-list article .entry-meta .category {
  background-color: #ddd;
  border: #ddd solid 1px;
  border-radius: 5px;
  color: #000;
  display: inline-block;
  padding: .25em;
  text-align: center;
  width: 12em;
}

.entry-list .section-wrap .article-list article .entry-title {
  flex: 1;
  font-size: 1rem;
  font-weight: normal;
  padding: 0 0 0 1em;
}

.entry-list .section-wrap .article-list article .entry-title a {
  color: #000;
  text-decoration: none;
}

.entry-list .section-wrap p.btn.more-link {
  margin: 2rem auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* #vision --- */
#vision {
  margin: 0 0 150px;
  position: relative;
}

#vision::before {
  content: "";
  background-image: url(../images/front/bg_upper.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 206px;
}

#vision::after {
  content: "";
  background-image: url(../images/front/bg_lower_v.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -415px;
  width: 100%;
  height: 415px;
}

#vision .section-wrap {
  margin: 0 auto;
  width: 1260px;
  padding: 60px 0px 0px;
}

#vision .section-wrap header h2 {
  text-align: left;
}

#vision .section-wrap .contents {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

#vision .section-wrap .contents .left-area {
  width: 100%;
  text-align: center;
  padding-right: 5%;
}

#vision .section-wrap .contents .left-area img {
  border-radius: 20px;
}

#vision .section-wrap .contents .right-area {
  width: 50%;
  margin-top: 20px;
}

/* #edu-job --- */
#edu-job {
  margin: 0;
  position: relative;
}

#edu-job::before {
  content: "";
  background-image: url(../images/front/bg_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 389px;
  height: 322px;
  z-index: -1;
}

#edu-job .section-wrap {
  margin: 0 auto;
  width: 1260px;
  padding-bottom: 60px;
}

#edu-job .section-wrap .header-wrap h2 {}

#edu-job .section-wrap .header-wrap h2::before {}

#edu-job .section-wrap .contents {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#edu-job .section-wrap .contents .grad-border-block {
  background: linear-gradient(90deg, rgba(177, 239, 143, 1) 12%, rgba(102, 204, 204, 1) 80%);
  width: 420px;
  height: 420px;
  border-radius: 250px;
  padding: 10px;
  position: relative;
}

#edu-job .section-wrap .contents .grad-border-block .grad-border-content {
  background: #fff;
  border-radius: 250px;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
}

#edu-job .section-wrap .contents .education .grad-border-block .grad-border-content {
  background-image: url(../images/front/edu-job/img01.jpg);
  background-size: 100%;
}

#edu-job .section-wrap .contents .job .grad-border-block .grad-border-content {
  background-image: url(../images/front/edu-job/img02.jpg);
  background-size: 100%;

}


#edu-job .section-wrap .contents .grad-border-block p.btn.more-link {
  text-align: center;
  /* position: relative; */
  margin: 0 auto;
}

#edu-job .section-wrap .contents .grad-border-block p.btn.more-link a {
  background: #fff;
  color: #000;
  font-weight: 600;
}

#edu-job .section-wrap .contents .grad-border-block p.btn.more-link a::after {
background-color: rgba(0, 0, 0, 0);
    border: rgba(3, 164, 239, 0.00) solid 2px;
    border-radius: 10px;
    content: "";
    pointer-events: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: .3s;
    z-index: 1;
}

#edu-job .section-wrap .contents .grad-border-block:hover {
  /* background: #f5f7f6;
  border: solid 10px #f5f7f6; */
  /* color: #66cccc; */
  opacity: .8;
  transition: .3s;
}

#edu-job .section-wrap .contents .box {
  display: grid;
  border-radius: 250px;
  /* padding: 10px; */
}

#edu-job .section-wrap .contents .box img {
  border-radius: 250px;
}

#edu-job .section-wrap .contents .box {
  width: 50%;
  z-index: 10;
  justify-content: center;
}

#edu-job .section-wrap .contents .box.job .grad-border-block {
  order: 2;
}

/* #pickup-area --- */
#pickup-area {
  margin: 0 0 0px;
  position: relative;
  padding: 60px 0px;
  background-color: #f5f7f6;
}

#pickup-area::before {
  content: "";
  background-image: url(../images/front/bg_lower.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 207px;
}

#pickup-area .section-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 140px 0 60px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 10;
}

#pickup-area .section-wrap .contents {
  width: 48%;
}

#pickup-area .section-wrap .contents.greeting {
  background: #B1EF8F;
  background: linear-gradient(90deg, rgba(177, 239, 143, 1) 12%, rgba(102, 204, 204, 1) 80%);
  border-radius: 0 30px 30px 0;
}

#pickup-area .section-wrap .contents.pickup {
  background-color: #fff;
  border-radius: 30px 0 0 30px;
}

#pickup-area .section-wrap .header-wrap h2 {
  color: #66cccc;
  font-family: 'Zen Maru Gothic';
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  position: relative;
  padding: 50px 0px 0px;
}

#pickup-area .section-wrap .contents.greeting .header-wrap h2 {
  color: #fff;
  text-align: right;
  padding-right: 5%;
}

#pickup-area .section-wrap .contents.greeting p {
  width: 40%;
  float: right;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-right: 30px;
  position: relative;
  top: -80px;
}

#pickup-area .section-wrap .contents.greeting img {
  float: right;
  border-radius: 30px 0 0 30px;
}

#pickup-area .section-wrap .contents.pickup .header-wrap h2 {
  text-align: left;
  padding-left: 5%;
}

#pickup-area .section-wrap .contents.pickup ol {
  padding: 5%;
}

#pickup-area .section-wrap .contents.pickup ol li {
  padding: 7% 0% 3% 5%;
  margin-right: 5%;
  font-weight: 600;
  border-bottom: dotted 2px #66cccc;
  display: flex;
}

#pickup-area .section-wrap .contents.pickup ol li:last-child {
  border-bottom: 0;
}

#pickup-area .section-wrap .contents.pickup ol li::before {
  background-color: #66cccc;
  border-radius: 15%;
  content: "";
  display: flex;
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 5% 0 0;
  -webkit-transform: translateY(-13%);
  transform: translateY(-13%);
}

#pickup-area .section-wrap .contents.pickup ol li::after {
  color: #fff;
  font-family: 'Zen Maru Gothic';
  display: flex;
  width: 80px;
  height: 80px;
  position: absolute;
  font-size: 40px;
  justify-content: center;
}

#pickup-area .section-wrap .contents.pickup ol li:nth-child(1)::after {
  content: "1";
}

#pickup-area .section-wrap .contents.pickup ol li:nth-child(2)::after {
  content: "2";
}

#pickup-area .section-wrap .contents.pickup ol li:nth-child(3)::after {
  content: "3";
}


/* #voice --- */
#voice {
  margin: 0;
  position: relative;
  background-color: #fff;
}

#voice::before {
  content: "";
  background-image: url(../images/front/bg_voice_b.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 320px;
}

#voice .section-wrap {
  margin: 0 auto;
  width: 1260px;
  padding: 60px 0px !important;
  position: relative;
}

#voice .section-wrap .header-wrap h2 {}

#voice .section-wrap .header-wrap p {
  font-size: 18px;
  margin-bottom: 30px;
  z-index: 107;
  position: relative;
}

#voice .section-wrap ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 80px auto 50px;
}

#voice .section-wrap ul li {
  width: 20%;
  text-align: center;
  font-size: 1em;
  background: aqua;
  margin: 0 10px;
  padding: 60px 0px 20px;
  border-radius: 20px;
  position: relative;
}

#voice .section-wrap ul li:hover {
  opacity: .7;
  transition: .3s;
}

#voice .section-wrap ul li#l01 {
  background: #FFF0F5;
  background: linear-gradient(150deg, rgba(255, 240, 245, 1) 50%, rgba(249, 211, 203, 1) 100%);
}

#voice .section-wrap ul li#l02 {
  background: #EEFBE3;
  background: linear-gradient(150deg, rgba(238, 251, 227, 1) 50%, rgba(120, 240, 180, 1) 100%);
}

#voice .section-wrap ul li#l03 {
  background: #FBF5E3;
  background: linear-gradient(150deg, rgba(251, 245, 227, 1) 50%, rgba(234, 232, 133, 1) 100%);
}

#voice .section-wrap ul li#l04 {
  background: #E3F7FB;
  background: linear-gradient(150deg, rgba(227, 247, 251, 1) 50%, rgba(185, 208, 234, 1) 100%);
}

#voice .section-wrap ul li a::after {
  background-color: rgba(0, 0, 0, 0);
  border: rgba(3, 164, 239, 0.00) solid 2px;
  border-radius: 10px;
  content: "";
  pointer-events: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: .3s;
  z-index: 1;
}

#voice p.btn.more-link a {
  align-items: center;
  background: #fff;
  border: #66cccc solid 5px;
  border-radius: 50px;
  color: #000;
  display: inline-flex;
  justify-content: center;
  line-height: normal;
  padding: 15px 45px;
  text-decoration: none;
}

/* #welfare --- */
#welfare {
  /* background-image: url(../images/front/welfare/img01.jpg);
    background-size: 100%; */
  max-width: 1260px;
  /* padding: 10px; */
  margin: 0 auto 120px;
  background-color: #fff;
  position: relative;
  /* z-index: 1000; */
  /* height: 550px; */
  border-radius: 80px;
  display: flex;
}

#welfare .section-wrap {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 1200px !important;
  height: auto;
}

#welfare .section-wrap img {
  border-radius: 80px;
  margin: 0 auto;
  display: flex;
}

#welfare .section-wrap header h2 {
  padding: 20px 0 0px;
  text-align: center;
  color: #fff;
}

#welfare .section-wrap header h2 span {
  color: #fff;
}

#welfare .section-wrap .contents {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: block;
  justify-content: space-between;
  top: 5%;
  right: 5%;
  padding-right: 10% 0 0;
  width: 400px;
  position: absolute;
  float: right;
}

#welfare .section-wrap .contents p {
  text-align: center;
  color: #fff;
}

/* #recruit--- */
section#recruit {
  position: relative;
  background: #EBFBE3;
  background: linear-gradient(150deg, rgba(235, 251, 227, 1) 55%, rgba(102, 204, 204, 1) 100%);
  padding-bottom: 30px;
}

#recruit::before {
  content: "";
  background-image: url(../images/front/bg_voice_a.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 315px;
}

#recruit .section-wrap {
  max-width: 1920px;
  width: 100%;
  margin: 0px auto;
  padding-bottom: 60px;
}

#recruit .section-wrap .header-wrap h2 {}

#recruit .section-wrap .contents {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

#recruit .section-wrap .contents .box {
  margin: 0 auto;
}

#recruit .section-wrap .contents .box ul.type {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10vw auto 0 auto;
  max-width: 1200px;
}

#recruit .section-wrap .contents .box ul.type li {
  width: 30%;
  margin: 5px;
  text-align: center;
  background-color: #fff;
  border: solid 4px #6ed0c5;
}

#recruit .section-wrap .contents .box ul.type li::before {
  background-color: #6ed0c5;
  content: "";
  display: block;
  height: 4px;
  position: relative;
  top: 50%;
  width: 10%;
}

#recruit .section-wrap .contents .box ul.type li a {
  align-items: center;
  color: #000;
  display: inline-flex;
  height: 2.5em;
  justify-content: center;
  line-height: normal;
  padding: 2em;
  text-decoration: none;
  width: 100%;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
}

#recruit .section-wrap .contents .box ul.type li:hover {
  background-color: #f5f7f6;
  transition: .3s;
}

#recruit .section-wrap .contents ul.bnr {
  display: flex;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0;
}

#recruit .section-wrap .contents ul.bnr li {
  width: 49%;
  justify-content: space-between;
  background-color: #fff;
}

#recruit .section-wrap .contents ul.bnr li a {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

#recruit .section-wrap .contents ul.bnr li a:hover {
  opacity: .8;
}

#recruit .section-wrap .contents .box .recruit {
  margin: 0 auto;
  justify-content: center;
  display: flex;
  width: 60%;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(255, 153, 203, .6);
}

/* #news --- */
section#news {
  position: relative;
  background-color: #f5f7f6;
  padding: 30px 0;
}

section#news::after {
  content: "";
  background-image: url(../images/front/bg_right.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 389px;
  height: 322px;
  z-index: 5;
}

#news .section-wrap {
  width: 1260px;
  margin: 0 auto;
}

#news .section-wrap .header-wrap h2 {
  color: #66cccc;
  font-family: 'Zen Maru Gothic';
  font-weight: 800;
  z-index: 30;
  text-align: center;
  position: relative;
  padding: 30px 0px;
}

#news .section-wrap .header-wrap p.btn.more-link a {
  background-color: rgba(3, 164, 239, 1.00);
  color: rgba(255, 255, 255, 1.0);
  justify-content: space-between;
  padding: 0.5em 1em;
  width: 100%;
}

#news .section-wrap .header-wrap p.btn.more-link a:hover {
  background-color: rgba(255, 255, 255, 1.0);
  color: rgba(3, 164, 239, 1.00);
}

#news .section-wrap .article-list {
  margin: 1rem 0;
  padding: 0 1rem 0 0;
}

/* #access--- */
section#access {
  position: relative;
  background-image: url(../images/front/bg_access.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
}

#access .section-wrap {
  width: 1260px;
  margin: 0 auto;
  padding: 50px 0 10px;
}

#access .section-wrap .header-wrap h2 {
  color: #000;
}

#access .section-wrap .contents .map {
  display: block;
  justify-content: space-between;
  margin: 0 auto;
  text-align: center;
}

#access .section-wrap .contents .map iframe {
  border-radius: 80px;
}

#access p.btn.more-link {
  text-align: center;
}

/* perfect-scrollbar.js スクロールバー設定 */
.ps__rail-x,
.ps__rail-y {
  opacity: 0.6 !important;
}

.ps__thumb-y {
  background-color: #ddd !important;
}

.pc-up {
  display: block;
}

/* TOPのみheader高さ調節
---------------------------------------------------- */
#site-title #logo-container {
  /*max-height: 0px!important;*/
}

/* メディアクエリ（ブレイクポイントごと）
---------------------------------------------------- */

@media(min-width:1921px) {

  /*メインビジュアル画像幅（1920px）より広い画面サイズの時*/
  /* メインビジュアルスライダーdiv id="main-vis" #main-vis （bxslider）
    ---------------------------------------------------- */
  /*各スライド設定*/
  #main-vis .bx-wrapper .bx-viewport .slider>div img {
    width: 100%;
  }
}

@media(max-width:1366px) {}

@media(max-width:1260px) {

  /* 各コンテンツ section
---------------------------------------------------- */
  /* common 共通 --- */
  #container .content section {}

  section .section-wrap {
    width: 90% !important;
  }

  /* common 共通 - header h2見出し --- */
  section .section-wrap header h2 {
    font-size: 2.5em;
  }

  section .section-wrap header h2 span {
    font-size: 16px;
  }

  #news .section-wrap .article-list {}

  #main-vis .catch {
    bottom: 15%;
  }

  /* #vision --- */
  #vision .section-wrap header h2 {
    font-size: 2.5em;
    padding: 0;
  }

  /* #edu-job --- */
  #edu-job .section-wrap {}

  #edu-job .section-wrap .contents {
    justify-content: space-between;
    display: flex;
  }

  #edu-job .section-wrap .contents .box {
    width: 45%;
    margin: 0 auto;
  }

  #edu-job .section-wrap .contents .box.job .grad-border-block {
    order: 0;
  }

  /* #pickup-area --- */
  #pickup-area .section-wrap {
    width: 100% !important;
  }

  #pickup-area .section-wrap .contents.greeting .header-wrap h2 {
    font-size: 2.5em;
  }

  #pickup-area .section-wrap .contents.greeting p {
    width: 70%
  }

  #pickup-area .section-wrap .contents.pickup .header-wrap h2 {
    font-size: 2.5em;
  }


  /* #voice --- */
  #voice .section-wrap ul li {
    width: 45%;
    margin: 10px;
  }

  /* #welfare --- */
  #welfare .section-wrap {
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    width: 100% !important;
  }

  /* #recruit --- */
  #recruit::before {
    height: 210px;
  }

  #recruit .section-wrap .contents .box ul li a {
    font-size: 16px;
  }

  .pc-up {
    display: none;
  }
}

@media(max-width:1024px) {

  /*トップページの背景画像サイズ指定*/
  body {
    background-size: auto 60vmax;
  }

  /* 共通要素
---------------------------------------------------- */
  /* .btn.more-link */
  p.btn.more-link {}

  p.btn.more-link a {}

  /* TOPページと下層ページのグローバルメニュー表示を切り替え
    ---------------------------------------------------- */
  .under-only-gm #menu {
    display: block;
  }

  /* メインビジュアル div id="main-vis" #main-vis
---------------------------------------------------- */
  /*各スライド設定*/
  #main-vis .bx-wrapper .bx-viewport .slider>div {
    height: 60vmax;
    position: relative;
    margin: 0 auto;

  }

  #main-vis .bx-wrapper .bx-viewport .slider>div img {
    display: none;
  }

  #main-vis .bx-wrapper .bx-viewport .slider .slide01 {
    background: url("../images/front/main-vis/slide01.png") center center no-repeat;
    background-size: contain;
    background-color: #f5f7f6;
  }

  #main-vis .bx-wrapper .bx-viewport .slider .slide02 {
    background: url("../images/front/main-vis/slide02.png") center center no-repeat;
    background-size: contain;
    background-color: #f5f7f6;

  }

  #main-vis .catch {
    bottom: 5%;
  }

  #main-vis .catch h2 {
    font-size: 24px;
  }

  #main-vis .catch h2 span {
    padding: 12px 24px;
    letter-spacing: 4px;
  }

  /* 各コンテンツ section
---------------------------------------------------- */
  /* common 共通 --- */
  #container .content section {}

  /* common 共通 - .entry-list（お知らせ・ブログ新着表示 共通） --- */
  .entry-list .section-wrap .article-list article {
    flex-wrap: wrap;
    padding: .5rem 0;
  }

  .entry-list .section-wrap .article-list article::after {
    display: none;
  }

  .entry-list .section-wrap .article-list article .entry-meta,
  .entry-list .section-wrap .article-list article .entry-title {
    width: 100%;
  }

  .entry-list .section-wrap .article-list article .entry-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }

  .entry-list .section-wrap .article-list article .entry-meta .entry-time {
    padding: 0 .5em;
    width: auto;
  }

  .entry-list .section-wrap .article-list article .entry-meta .category {
    width: auto;
  }

  .entry-list .section-wrap .article-list article .entry-title {
    padding: .5em 0 0;
  }

  .entry-list .section-wrap .article-list article .entry-title::before {
    content: '\e5df';
    display: inline-block;
    font-family: 'Material Icons';
    padding: 0;
  }

  /* #vision --- */
  #vision .section-wrap .contents .right-area {
    margin-top: 0px;
  }

  #vision .section-wrap .contents .right-area {
    width: 40%;
  }

  #vision .section-wrap .contents .left-area {
    width: 60%;
  }

  /* #edu-job --- */

  #edu-job::before {
    bottom: 2%;
    right: 0%;
    background-size: 70%;
  }

  #edu-job .section-wrap {
    display: block;
    display: -webkit-block;
    display: -ms-blockbox;
  }

  #edu-job .section-wrap .contents {
    display: block;
  }

  #edu-job .section-wrap .box {
    width: 100%;
  }

  #edu-job .section-wrap .contents .grad-border-block {
    width: 420px;
    height: 420px;
  }

  /* #pickup-area --- */
  #pickup-area .section-wrap h2 {}

  /* #welfare --- */
  #welfare {
    margin: 0px auto 60px;
  }

  #welfare .section-wrap .contents {
    width: 90%;
    position: relative;
    top: 0;
    /* right: 0; */
    margin: 0 auto;
  }

  #welfare .section-wrap header h2 {
    text-align: center;
    color: #66cccc;
  }

  #welfare .section-wrap header h2 span {
    text-align: center;
    color: #000;
  }

  #welfare .section-wrap .contents p {
    text-align: left;
    color: #000;
  }

  #welfare .section-wrap .contents p.btn.more-link {
    text-align: center;
  }

  /* #recruit --- */
  #recruit .section-wrap {
    padding-bottom: 0px;
  }

  #pickup-area .section-wrap h2 {
    font-size: 16px;
  }

  #recruit .section-wrap .contents .box p {
    font-size: 18px;
  }

  #recruit .section-wrap .contents .box ul li {}

  #recruit .section-wrap .contents .box ul li a {}

  #recruit .section-wrap .contents .box img.recruit {
    padding-bottom: 30px;
  }

  /* #news --- */
  section#news::after {
    bottom: 2%;
    right: 0%;
    background-size: 70%;
  }

  #news .section-wrap .header-wrap h2 {}

  /* #access --- */
  #access::before {
    display: none;
  }
}

/* 各カテゴリタブ */
/* .tab-label {
    font-size: .875rem !important;
  } */

@media(max-width:930px) {
  #pickup-area .section-wrap {
    position: relative;
    display: grid;
  }

  #pickup-area .section-wrap .contents {
    width: 90%;
  }

  #pickup-area .section-wrap .contents.greeting {
    margin-right: 10%;
    margin-bottom: 10%;
  }

  #pickup-area .section-wrap .contents.greeting p {
    width: 40%
  }

  #pickup-area .section-wrap .contents.pickup {
    margin-left: 10%;
  }

  #recruit .section-wrap .contents .box ul li {
    margin-bottom: 10px;
  }

  #recruit .section-wrap .contents .box ul li a {
    font-size: 14px;
  }
}

@media(min-width:769px) {}

@media(max-width:768px) {

  /* メインビジュアルスライダーdiv id="main-vis" #main-vis （bxslider）
---------------------------------------------------- */
  #main-vis {
    margin: 0;
  }

  #main-vis .bx-wrapper .bx-viewport .slider {}

  #main-vis .bx-wrapper .bx-viewport .slider .slide01 {
    background-size: contain;
  }

  #main-vis .bx-wrapper .bx-viewport .slider .slide02 {
    background-size: contain;
  }

  /*メインビジュアル内告知エリア.catch*/
  #main-vis .catch h2 {}

  /* 各コンテンツ section
---------------------------------------------------- */
  /* common 共通 - header h2見出し --- */
  section .section-wrap header h2 {
    font-size: 2em;
    margin: 0 0 1.5rem;
  }

  .section-wrap h2 {
    line-height: 30px;
  }

  p.btn.more-link a {
    border: #fff solid 5px;
  }

  /* #vision --- */
  #vision .section-wrap header h2 {
    font-size: 2em;
  }

  #vision .section-wrap .contents {
    display: block;
    display: -ms-flexbox;
    display: -webkit-block;
  }

  #vision .section-wrap .contents .right-area {
    margin-top: 0px;
  }

  #vision .section-wrap .contents .right-area {
    width: 100%;
  }

  #vision .section-wrap .contents .left-area {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }

  /* #edu-job --- */
  #edu-job .section-wrap .contents .box {
    width: 48%;
  }

  #edu-job::before {
    display: none;
  }

  #edu-job .section-wrap {
    padding: 0;
  }

  /* #pickup-area --- */
  #pickup-area .section-wrap .contents.greeting .header-wrap h2 {
    font-size: 2em;
    margin: 0 0 1.5rem;
  }

  #pickup-area .section-wrap .contents.pickup .header-wrap h2 {
    font-size: 2em;
    margin: 0 0 1.5rem;
  }

  /* #voice --- */
  #voice .section-wrap ul {}

  #voice .section-wrap ul li span {
    display: block;
  }

  /* #recruit --- */
  #recruit::before {
    height: 125px;
  }

  #recruit .section-wrap .contents {
    display: -webkit-block;
    display: block;
    justify-content: space-between;
  }

  #recruit .section-wrap .contents .box {
    width: 100%;
  }

  #recruit .section-wrap .contents .box p {
    margin-top: 20px;
  }

  #recruit .section-wrap .contents .box ul.bnr {
    display: block;
  }

  #recruit .section-wrap .contents .box ul.bnr li {
    width: 80%;
    margin: 10px auto;
  }

  #recruit .section-wrap .contents .box ul.type li {
    text-align: center;
    width: 45%;
  }

  #recruit .section-wrap .contents .box ul.type li a {
    font-size: 14px;
  }

  #recruit .section-wrap .contents .box .recruit {
    width: 90%;
    box-shadow: inset 0px 0px 20px 0px rgba(255, 153, 203, 0.6);
    padding: 50px 0px;
  }

  /* #news --- */
  section#news {
    margin: 0px 0;
  }

  section#news::after {
    display: none;
  }

  #news .section-wrap {}

  #news .section-wrap .header-wrap {}

  #news .section-wrap .header-wrap header {}

  #news .section-wrap .header-wrap h2 {
    padding: 0;
  }

  #news .section-wrap .header-wrap header::after {
    display: none;
  }

  #news .section-wrap .header-wrap header h2 {
    font-size: 2em;
  }

  #news .section-wrap .header-wrap p.btn.more-link {
    margin: 0;
  }

  #news .section-wrap .article-list {
    padding: 0rem;
    width: 100%;
    margin-top: 0;
  }

  .tab-content {
    padding: 1rem 0rem 0rem 0rem;
  }

  /* #access --- */
  #access .section-wrap .header-wrap h2 {}

  #access .section-wrap .contents .map {
    display: -webkit-block;
    display: block;
  }

  #access .section-wrap .contents .map iframe {
    border-radius: 30px;
  }
}

@media(max-width:767px) {}

@media(max-width:576px) {

  /* TOPのみheader高さ調節
  ---------------------------------------------------- */
  #site-title #logo-container {}

  /* メインビジュアル div id="main-vis" #main-vis
  ---------------------------------------------------- */
  #main-vis .bx-wrapper .bx-viewport .slider>div {
    height: 50vmax;
  }

  #main-vis .bx-wrapper .bx-viewport .slider .slide01 {}

  /*キャッチコピー*/
  #main-vis .catch {
    text-align: center;
  }

  #main-vis .catch h2 {}

  #main-vis .catch h2 span {
    padding: 10px 20px;
    letter-spacing: 3px;
  }

  /* 各コンテンツ section
---------------------------------------------------- */
  /* common 共通 --- */
  #container .content section {}

  #container .content section .section-wrap {
    width: 94%;
  }

  /* common 共通 - .entry-list（お知らせ・ブログ新着表示 共通） --- */
  .entry-list .section-wrap .article-list article .entry-meta .category {
    line-height: 1;
  }

  .entry-list .section-wrap .article-list article .entry-title {
    font-size: .875rem;
    line-height: 1;
    padding: 0;
  }

  /* common 共通 - h2見出し --- */
  #container .content section .section-wrap>h2 {
    font-size: 1.75em;
  }

  /* #vision --- */
  #vision .section-wrap .contents .right-area h2 {
    /* font-size: 16px; */
  }

  #vision .btn.more-link {
    text-align: center;
  }

  #edu-job .section-wrap .header-wrap h2 {
    margin: 1rem 0 1.5rem;
    padding: 0px;
  }

  #edu-job .section-wrap .contents .box {
    width: 100%;
    padding: 15px;
  }

  #edu-job .section-wrap .contents .grad-border-block {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }

  #edu-job .section-wrap .contents .grad-border-block .grad-border-content {
    /* background: #fff;
    border-radius: 250px; */
    width: 300px;
    height: 300px;
    /* display: flex;
    align-items: center; */
}

  /* #pickup-area--- */
  #pickup-area {
    padding: 0px 0px 0px 0px;
  }

  #pickup-area .section-wrap {
    padding-bottom: 40px;
  }

  #pickup-area .section-wrap .contents.greeting p {
    width: 70%;
  }

  /* #voice --- */
  #voice {
    margin: 0 0 0 0px;
  }

  #voice .section-wrap {
    width: 100% !important;
    padding: 40px 0px !important;
  }

  #voice .section-wrap .header-wrap h2 {}

  #voice .section-wrap .header-wrap p {
    font-size: 1rem;
  }

  #voice .section-wrap ul {
    margin: 0 auto;
  }

  #voice .section-wrap ul li {
    width: 100%;
    margin: 5px;
    display: flex;
    padding: 1rem 2rem;
    justify-content: space-between;
  }

  #voice .section-wrap ul li img {
    width: 80px;
  }

  #voice p.btn.more-link a {
    align-items: center;
    background: transparent;
    border: 0;
    color: #333;
    font-family: 'Zen Maru Gothic';
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
  }

  /* #welfare--- */
  #welfare .section-wrap img {
    border-radius: 20px;
  }

  /* #recruit--- */
  #recruit::before {
    height: 95px;
  }

  #container .content #recruit .section-wrap {
    width: calc(100% - 4rem);
  }

  #recruit .section-wrap .header-wrap h2 {
    margin-bottom: 0px;
    padding: 0px;
  }

  #recruit .section-wrap {
    margin: 0 auto;
  }

  #recruit .section-wrap .contents .box ul.type li {
    width: 90%;
    margin: 5px;
  }

  #recruit .section-wrap .contents .box ul.bnr li {
    width: 90%;
  }

  /* #news--- */
  #news .section-wrap .header-wrap h2 {
    font-size: 20px;
    margin-bottom: 0px !important;
    padding: 0px 0px 0px 10px;
  }

  #news .section-wrap .article-list {
    margin-top: 25px;
  }

  #news p.btn.more-link {
    margin: 2rem auto 0rem;
  }

  /* #access--- */
  #access .section-wrap .header-wrap h2 {
    margin: 0px auto 10px auto;
    padding: 0px;
  }
}

@media(max-width:480px) {
  section#access {
    margin-bottom: 80px;
  }
}

@media(max-width:420px) {
  #main-vis .bx-wrapper .bx-viewport .slider {
    top: -10%;
  }

  #pickup-area .section-wrap .contents.pickup ol li {
    padding: 5% 0% 5% 5%;
    margin-right: 5%;
    font-weight: 600;
  }

  #pickup-area .section-wrap .contents.pickup ol li::before {
    width: 50px;
    height: 50px;
    margin: 0 5% 0 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  #pickup-area .section-wrap .contents.pickup ol li::after {
    width: 50px;
    height: 50px;
    transform: translateY(13%);
    font-size: 24px;
  }
}

@media(max-width:400px) {
  #main-vis .bx-wrapper .bx-viewport {}

  #main-vis .bx-wrapper .bx-viewport .slider>div {}

  #main-vis .catch {
    bottom: 5%;
  }

  #main-vis .catch h2 {
    font-size: 20px;
  }

  #main-vis .catch h2 span {}

  /* #voice--- */
  #voice .section-wrap ul li {
    width: 90%;
    margin: 5px;
  }

  #recruit .section-wrap .contents .box ul.type li {}
}

@media(max-width:350px) {}