@charset 'utf-8';

/*********************************************************
*
* レイアウト
*
**********************************************************/
.pageRecruit {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* コンテンツ部分 */
.pageRecruit main {
  display: flex;
  flex-grow: 1;
}

/* メインコンテンツ */
.pageRecruit main .mainContentsWrap {
  flex-grow: 1;
  padding: 60px 2rem 20px;
  max-width: calc(810px + 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit main .mainContentsWrap {
    width: 100%;
    padding: 0 1rem 2rem;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit main .mainContentsWrap h1:first-child {
    font-size: 22px;
  }
}

/*********************************************************
*
* ヘッダー
*
**********************************************************/
/* ヘッダー */
.pageRecruit header {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  /* PC */
  #Resident .pageRecruit header:not(.open) {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit header:not(.open) {
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .pageRecruit header + * {
    margin-top: 65px;
  }
}

/* ヘッダーロゴ */
.pageRecruit header .logo_area {
  flex-grow: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ヘッダー病院サイトへのリンク */
.pageRecruit header .top_link {
  position: absolute;
  top: 0;
  left: 0;
}
.pageRecruit header .top_link a {
  display: block;
  width: 100%;
  height: 100%;

  font-size: 13px;
  color: #333;
  text-decoration: none;

  position: relative;
  padding: 15px 28px 15px 40px;
  background-color: #efefef;

  transition: background-color 0.3s;
}
.pageRecruit header .top_link a::after {
  position: absolute;
  top: 50%;
  left: 24px;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  content: "";
  border: 2px solid #00a6bf;
  border-width: 0 0 2px 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

  transition: left 0.3s;
}
.pageRecruit header .top_link a:hover {
  background-color: rgba(239, 239, 239, 0.8);
}
.pageRecruit header .top_link a:hover::after {
  left: 22px;
}

/* ヘッダーFacebookリンク */
.pageRecruit header .fb_link.pc-only {
  position: absolute;
  top: 0;
  right: 0;
}
.pageRecruit header .fb_link.pc-only a {
  background-color: #1877f2;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 70px;
  height: 70px;

  border-radius: 0 0 0 3px;

  transition: background-color 0.3s;
}
.pageRecruit header .fb_link.pc-only a:hover {
  background-color: rgba(23, 118, 241, 0.8);
}

@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit header {
    height: auto;
    display: block;
    align-items: left;
    position: relative;
    padding: 0;
  }
  .pageRecruit header .top_link,
  .pageRecruit header .fb_link,
  .pageRecruit header .global_navigation_area {
    display: none;
  }
  .pageRecruit header .logo_area {
    display: flex;
    justify-content: space-between;

    padding: 6px 0 6px 12px;
  }
  .pageRecruit header .logo_area a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
  }
  .pageRecruit header .logo_area img {
    height: auto;
    width: 62vw;
    margin: 0;
  }

  .menu_toggle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* メニュートグル */
  /*ハンバーガーのボタン*/
  .sp_menu_button {
    display: block;
    width: 50px;
    height: 45px;
    position: relative;
  }
  .pageRecruit header .logo_area .sp_menu_button .btn_hbg_menu {
    display: block;
    width: 50px;
    height: 45px;
    padding: 14px 15px;
  }
  .sp_menu_button .menu__line {
    background: #00a6bf;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform 0.3s;
    width: 20px;
    right: 50%;
    margin-right: -10px;
    margin-top: 0;
  }
  header.open .sp_menu_button .menu__line {
    background: #00a6bf;
  }

  .sp_menu_button .menu__line--center {
    margin-top: 9px;
  }
  .sp_menu_button .menu__line--bottom {
    margin-top: 18px;
  }
  header.open .sp_menu_button .menu__line--top {
    top: 22px;
    transform: rotate(45deg);
  }
  header.open .sp_menu_button .menu__line--center {
    transform: scaleX(0);
  }
  header.open .sp_menu_button .menu__line--bottom {
    top: 4px;
    transform: rotate(135deg);
  }

  /* メニューオープン時 */
  .pageRecruit header.open {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: 100%;
    height: auto;
    padding: 0;

    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
  }

  .pageRecruit header.open .logo_area {
    background-color: white;
    flex-grow: 0;
    width: 100%;
    position: relative;
  }
  .pageRecruit header.open .logo_area::before {
    display: block;
    content: "";
    width: 50%;
    height: 1px;
    background-color: #00a6bf;

    position: absolute;
    left: auto;
    right: 0;
    bottom: 2px;
  }
  .pageRecruit header.open .logo_area::after {
    display: block;
    content: "";
    width: 50%;
    height: 1px;
    background-color: #ddd;

    position: absolute;
    left: 0;
    right: auto;
    bottom: 2px;
  }

  .pageRecruit header.open .global_navigation_area {
    display: block;
    width: 100%;
    margin-top: -1px;
  }

  .pageRecruit header.open .top_link,
  .pageRecruit header.open .fb_link.sp-only {
    position: static;
    display: block;
    width: 100%;
    background-color: white;
    padding-bottom: 15px;
    margin-top: -1px;
  }

  .pageRecruit header.open .top_link a,
  .pageRecruit header.open .fb_link a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    width: 70%;
    height: auto;

    margin: 0 auto;
    padding: 0.5rem;

    font-size: 12px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;

    border-radius: 50px;
  }
  .pageRecruit header.open .top_link a {
    color: #00a6bf;
    background-color: white;
    border: 1px solid #00a6bf;
    padding-right: 2rem;
  }
  .pageRecruit header.open .top_link a::after {
    left: auto;
    right: 1rem;
    width: 0.5rem;
    height: 0.5rem;

    border-color: #00a6bf;
    border-width: 0 0 1px 1px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .pageRecruit header.open .fb_link a {
    color: #1877f2;
    background-color: white;
    border: 1px solid #1877f2;
  }
  .pageRecruit header.open .fb_link a img {
    height: 20px;
    margin: 0 0.5rem 0 0;
  }
  .pageRecruit header.open > *:last-child {
    padding-bottom: 30px !important;
  }
}

/******************************
*   
*   エレメントスタイル
*   サイト内検索
*   
*   /Elements/header_searchbox.php
*   
******************************/
.searchbox {
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.sp-only.searchbox {
  display: none;
}

.searchbox img {
  vertical-align: middle;
}
/* サイト内検索form */
.searchbox__form {
  background-color: #ffffff;
  padding: 9px;
  border: 1px solid #dedede;
  border-radius: 5px;
  width: 255px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 15px;
}
.searchbox__form input[type="text"],
.searchbox__form input[type="text"]:focus {
  outline: 0;
  border: none;
  background: none;

  font-size: 16px;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  width: 165px;
}

.searchbox__form input[type="text"]::placeholder {
  color: #aaa;
}
.searchbox__form input[type="text"]:-ms-input-placeholder {
  color: #aaa;
}
.searchbox__form input[type="text"]::-ms-input-placeholder {
  color: #aaa;
}

.searchbox__form input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
}

/* iPhoneでのデフォルトスタイルをリセット */
.searchbox__form input[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

.searchbox__form input[type="submit"].submit_button {
  appearance: none;
  outline: 0;
  border: none;
  background-color: #e4e4e4;
  border-radius: 3px;
  font-size: 14px;
  height: 27px;
  line-height: 27px;
  padding: 0 10px;
  cursor: pointer;
  overflow: visible;
}
@media all and (-ms-high-contrast: none) {
  .searchbox__form input[type="text"] {
    padding-top: 4px;
  }
  .searchbox__form .submit_button {
    padding: 2px 10px 0 10px;
  }
}

#SearchIndexQ {
  flex-grow: 2;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pageRecruit header .fb_link.pc-only a {
    flex-basis: 47px;
    flex-shrink: 0;
    width: 47px;
    height: 47px;
    margin-top: 1rem;
    border-radius: 3px 0 0 3px;
  }
  .searchbox {
    max-width: calc(45vw - 415px / 2);
    min-width: 260px;
  }
  .searchbox__form {
    width: auto;
  }
  #SearchIndexQ {
    width: 100%;
  }
}

/* SP版 サイト内検索ボックス */
@media screen and (max-width: 767px) {
  /* ハンバーガーメニュー内のサーチボックスは表示させる */
  .open .sp-only.searchbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: white;
    border-bottom: 1px solid #eee;
  }
  .open .sp-only.searchbox form {
    display: block;
    width: 90%;
  }
  .searchbox__form {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }

  .searchbox__form input[type="text"],
  .searchbox__form input[type="text"]:focus {
    outline: 0;
    border: none;
    background: none;

    font-size: 16px;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    width: auto;
  }
  #SearchIndexQ {
    margin-top: 5px;
    min-width: 0;
  }
}
@media screen and (max-width: 400px) {
  /* iPhone6 Plus 未満 */
  .hamburger_searchbox > .searchbox {
    width: auto;
  }
  .searchbox__form {
    width: auto;
  }
}

/*********************************************************
*
* フッター
*
**********************************************************/
/* フッター */
.pageRecruit footer {
  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 70px 60px;
}

.pageRecruit footer .footer_info_area {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.pageRecruit footer .footer_copy_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pageRecruit footer .footer_logo {
}
.pageRecruit footer .footer_saiyouka {
  border: 1px solid #d3d3d3;
  margin: 0 36px;
  padding: 12px 20px;
}
.pageRecruit footer .footer_contact {
}
.pageRecruit footer .footer_copyright {
  font-size: 12px;
}
.pageRecruit footer .footer_menu ul {
  display: flex;
  justify-content: flex-end;
}
.pageRecruit footer .footer_menu ul li {
  padding: 0 20px;
  border-left: 1px solid #d3d3d3;
}
.pageRecruit footer .footer_menu ul li:first-child {
  border-left: none;
}
.pageRecruit footer .footer_menu ul li a {
  text-decoration: none;
  color: #444;
}
@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit footer {
    font-size: 12px;
    padding: 0;
    background-color: #eee;
  }
  .pageRecruit footer .footer_info_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 40px 10px;
  }
  .pageRecruit footer .footer_info_area .footer_logo {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
  .pageRecruit footer .footer_info_area .footer_logo img {
    height: 35px;
  }
  .pageRecruit footer .footer_info_area .footer_saiyouka {
    margin: 0;
    background-color: white;
  }
  .pageRecruit footer .footer_info_area .footer_contact {
    flex-grow: 1;
    padding-left: 10px;
  }
  .pageRecruit footer .footer_copy_area {
    flex-direction: column;
  }
  .pageRecruit footer .footer_copy_area .footer_menu {
    order: 1;
    margin-bottom: 45px;
  }
  .pageRecruit footer .footer_copy_area .footer_menu ul {
    display: flex;
    flex-direction: column;
  }
  .pageRecruit footer .footer_copy_area .footer_menu ul li a {
    display: block;
    padding: 10px 40px;
    border-radius: 20px;
    background-color: white;
    margin-top: 15px;
    text-decoration: none;
    border: 1px solid #00a6bf;
    color: #00a6bf;
  }
  .pageRecruit footer .footer_copy_area .footer_copyright {
    order: 2;
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: white;
  }
}

/* ページトップヘ戻るボタン */
.js__jump-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 5.5rem;
  height: 5.5rem;
  padding: 0.4rem;

  border-radius: 100%;

  background-color: #00a6c5;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;

  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 100;

  transition: padding 0.3s;
}
.js__jump-top:hover {
  padding-bottom: 10px;
}
a.js__jump-top:link,
a.js__jump-top:visited {
  color: white;
}
.js__jump-top::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid white;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  /* SP */
  .js__jump-top {
    bottom: 25px;
    right: 10px;
  }
}

/*********************************************************
*
* キービジュアル
*
**********************************************************/
/* TOPメインビジュアル */
/*
.pageRecruit .recruit_top_eyecatch.pc-only {
  background-image: url(../img/recruit/top_mainvisual_bg.png);
  background-size: cover;
  background-position: center;
  height: 44.3vw;
  min-height: 443px;
  max-height: 620px;
  text-align: center;
}
.pageRecruit .recruit_top_eyecatch.pc-only img {
  width: 100%;
  max-width: 1400px;
}
*/

.pageRecruit .recruit_top_eyecatch.sp-only {
  margin-top: 65px;
}
.pageRecruit .recruit_top_eyecatch.sp-only [data-bgb] {
  margin-bottom: 0;
}

/* 下層アイキャッチ */
.pageRecruit .recruit_eyecatch {
  text-align: center;
  font-size: 0;
  background-color: #ddf2f6; /* [color_set_css] */
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit .recruit_eyecatch {
    width: 100%;
    height: 28vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  .pageRecruit .recruit_eyecatch img {
    height: 100%;
  }
}

/* デフォルトアイキャッチ */
.pageRecruit .recruit_eyecatch--default {
  background-color: #ddf2f6;
  width: 100%;
  height: 300px;

  display: flex;
  justify-content: center;
}
.pageRecruit .recruit_eyecatch__left,
.pageRecruit .recruit_eyecatch__right {
  flex-basis: 470px;
  flex-shrink: 2;
  background-size: cover;
  background-repeat: no-repeat;
}
.pageRecruit .recruit_eyecatch__left {
  background-position: center right;
  background-image: url(../img/recruit/kv_default_left.png);
}
.pageRecruit .recruit_eyecatch__right {
  background-position: center left;
  background-image: url(../img/recruit/kv_default_right.png);
}
.pageRecruit .recruit_eyecatch__center {
  width: 360px;
  flex-basis: 360px;
  flex-shrink: 0;

  background-color: #00a6bf;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;

  padding: 20px;
}
.pageRecruit .recruit_eyecatch__center::before {
  position: absolute;
  top: 0;
  left: 0;

  content: "";
  display: block;
  width: 40px;
  height: 40px;

  background-image: linear-gradient(-45deg, transparent, transparent 50%, #008baa 50%, #008baa 100%);
  background-size: 40px 40px;
}
.pageRecruit .recruit_eyecatch__center::after {
  position: absolute;
  bottom: 0;
  right: 0;

  content: "";
  display: block;
  width: 40px;
  height: 40px;

  background-image: linear-gradient(135deg, transparent, transparent 50%, #008baa 50%, #008baa 100%);
  background-size: 40px 40px;
}
.pageRecruit .recruit_eyecatch__center__en,
.pageRecruit .recruit_eyecatch__center__ja {
  display: block;
  text-align: center;
  line-height: 1.2;
}
.pageRecruit .recruit_eyecatch__center__en {
  font-size: 30px;
  font-family: Montserrat, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-transform: uppercase;
}
.pageRecruit .recruit_eyecatch__center__ja {
  font-size: 48px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit .recruit_eyecatch--default {
    height: 28vh;
    margin-bottom: 30px;
  }
  .pageRecruit .recruit_eyecatch__center {
    width: 33vh;
    flex-basis: 33vh;
    padding: 10px;
  }
  .pageRecruit .recruit_eyecatch__center__en {
    font-size: 2vh;
  }
  .pageRecruit .recruit_eyecatch__center__ja {
    font-size: 4.5vh;
    margin-top: 10px;
  }
  .pageRecruit .recruit_eyecatch__center::before {
    width: 3vh;
    height: 3vh;
    background-size: 3vh 3vh;
  }
  .pageRecruit .recruit_eyecatch__center::after {
    width: 3vh;
    height: 3vh;
    background-size: 3vh 3vh;
  }
}

/*********************************************************
*
* グロナビ
*
**********************************************************/
.ul-level-2,
.ul-level-3 {
  margin-left: 0;
  padding-left: 40px;
}
@media screen and (min-width: 768px) {
  /* PC */
  .pageRecruit header .global_navigation_area {
    height: 60px;
  }
  .pageRecruit header .global_navigation_area .ul-level-1 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 {
    position: relative;
  }
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 > a {
    display: block;
    padding: 20px 40px;
    font-size: 20px;
    line-height: 1;
    color: #333;
    text-decoration: none;
    position: relative;
  }
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 .toggle {
    display: none;
  }

  /* 矢印 */
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 > a::after {
    position: absolute;
    top: 50%;
    left: 16px;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    content: "";
    border-style: solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

    transition: left 0.3s;
  }

  /* 矢印ホバーアニメーション */
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 a:hover::after {
    left: 20px;
  }

  /* 矢印色指定 */
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 a::after {
    border-color: #00a6bf;
  }

  /* 第二階層メニュー */
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 {
    position: absolute;
    top: 60px;
    left: -140px;
    z-index: 10;

    display: none;
    min-width: 500px;
    padding: 0 100px 100px;
  }
  .pageRecruit header .global_navigation_area .li-level-1:hover .ul-level-2 {
    display: block;
  }
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 .li-level-2 {
    background-color: white;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 .li-level-2:first-child {
    border-top: 1px solid #ddd;
  }
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 .li-level-2 a {
    display: block;
    padding: 20px 40px;
    position: relative;

    text-decoration: none;
    color: #333;

    transition: background-color 0.3s;
  }
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 .li-level-2 a::after {
    position: absolute;
    top: 50%;
    right: 16px;
    display: block;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    content: "";
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #00a6bf;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

    transition: right 0.3s;
  }
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 .li-level-2 a:hover {
    background-color: #e8fcff;
  }
  .pageRecruit header .global_navigation_area .li-level-1 .ul-level-2 .li-level-2 a:hover::after {
    left: auto;
    right: 12px;
  }
}

@media screen and (max-width: 767px) {
  /* SP */

  .pageRecruit header .global_navigation_area {
  }

  .pageRecruit header .global_navigation_area .ul-level-1 {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: relative;
  }

  /* メニュー下部の下線 */
  .pageRecruit header .global_navigation_area > .menu::after {
    content: "";
    display: block;
    width: 25%;
    height: 1px;
    margin: 10px auto 20px;
    background-color: #17adc5;
  }

  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 a {
    color: #444;
    text-decoration: none;
    position: relative;

    display: flex;
    justify-content: space-between;
  }
  .pageRecruit header .global_navigation_area .ul-level-1 .li-level-1 a::after {
    content: "";
    display: none;
    width: 6px;
    height: 6px;
    border-top: 1px solid #17adc5;
    border-right: 1px solid #17adc5;
    transform: rotate(45deg);
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -3px;
  }
  /* リンクラベル */
  .pageRecruit header .global_navigation_area a {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: -1px;
  }
  .pageRecruit header .global_navigation_area a > p {
    flex-grow: 1;
    padding: 10px;
  }
  /* トグルボタンエリア */
  .pageRecruit header .global_navigation_area .parent-li > a > .accordion_icon {
    display: block;
    position: relative;
    width: 40px;
    height: auto;
  }
  /* トグルアイコン */
  .pageRecruit header .global_navigation_area .parent-li > a > .accordion_icon::before,
  .pageRecruit header .global_navigation_area .parent-li > a > .accordion_icon::after {
    content: "";
    display: block;
    width: 14px;
    height: 1px;
    background-color: #17adc5;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;

    transition: all 0.3s;
  }
  .pageRecruit header .global_navigation_area .parent-li > a > .accordion_icon::after {
    /* トグルボタン */
    transform: rotate(90deg);
  }
  .pageRecruit header .global_navigation_area .parent-li.active > a > .accordion_icon::before {
    transform: rotate(45deg);
  }
  .pageRecruit header .global_navigation_area .parent-li.active > a > .accordion_icon::after {
    transform: rotate(135deg);
  }
  .pageRecruit header .global_navigation_area .parent-li > ul {
    display: none;
  }
}
/*********************************************************
*
* サイドナビゲーション
*
**********************************************************/
.pageRecruit main .recruit_side {
  width: 230px;
  flex-basis: 230px;
  display: flex;
  flex-direction: column;
  background-color: #00a6bf; /* [color_set_css] */
}
.pageRecruit main .recruit_side .sideNavigation {
  background-color: transparent;
  margin-top: 20px;

  padding-bottom: 370px;
  background-image: url(../img/recruit/sideNavBgTop.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}
.pageRecruit main .recruit_side .sideNavigation ul li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 20px 30px 20px 30px;
  transition: background-color 0.3s;
}
.pageRecruit main .recruit_side .sideNavigation ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.pageRecruit main .recruit_side .sideNavigation ul li:first-child a {
  padding-left: 20px;
}
.pageRecruit main .recruit_side .sideNavigation ul li.current a {
  background-color: white;
  color: #00a6bf; /* [color_set_css] */
}

.pageRecruit main .recruit_side .sideNavigation ul li a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  content: "";
  border-style: solid;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

  transition: right 0.3s;
}
.pageRecruit main .recruit_side .sideNavigation ul li a:hover::after {
  right: 12px;
}

/* 矢印色指定 */
.pageRecruit main .recruit_side .sideNavigation ul li a::after {
  border-color: white;
}
.pageRecruit main .recruit_side .sideNavigation ul li.current a::after {
  border-color: #00a6bf; /* [color_set_css] */
}

/* サイドナビゲーション装飾 */
.pageRecruit main .recruit_side .sideNavBgRepeat {
  background-image: url(../img/recruit/sideNavBgRepeat.png);
  background-repeat: repeat-y;
  background-position: center top;
  width: 230px;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  /* SP */
  .pageRecruit main .recruit_side {
    display: none;
  }
}

/*********************************************************
*
* お知らせ一覧
*
**********************************************************/
/* TOPページ固有 */
.top_attentions {
  border-top: 2px solid #50c1d3;
}

.top_informations {
  background-color: #f7f6ed;
  margin-bottom: 40px;
}
.top_attentions .wrapper,
.top_informations .wrapper {
  width: 1000px;
  margin: 0 auto;
  padding: 36px 0;
  display: flex;
}
.info_title {
  padding-top: 24px;
  width: 250px;
  text-align: center;
}
.info_title h2 {
  line-height: 1;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;

  border: none !important;
}
.info_title h2:first-letter,
.info_title h2:first-letter {
  color: #444;
}
.info_title h2::before,
.info_title h2::after {
  display: none;
}

.top_attentions .info_title h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #17adc5;
  top: -62px;
}
.top_attentions .info_title a {
  background-color: #00a6bf;
  display: block;
  width: 180px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  color: white;
  line-height: 40px;
  text-decoration: none;
  margin: 0 auto;
}
.top_informations .info_title a {
  color: #00a6bf;
  background-color: white;
  display: block;
  width: 180px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin: 0 auto;
}

.info_posts {
  flex-grow: 1;
}

.top_attentions .info_posts .post-list__cat {
  display: none;
}
.post-list {
  list-style: none;
}
.post-list li {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding: 24px 0;
}
.post-list li::before {
  display: none;
}
/* 記事タイトル */
.post-list li a {
  text-decoration: none;
  color: #444;
}

.post-list li .post-list__cat,
.post-list li .post-list__date {
  flex-basis: 105px;
  flex-shrink: 0;
  text-align: left;
}

/* カテゴリーリンク */
.post-list li .post-list__cat {
  padding-top: 4px;
}
.post-list li .post-list__cat a {
  display: block;
  background-color: #fff;
  margin-right: 20px;
  text-decoration: none;
  color: #00a6bf;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
.post-list li .post-list__cat.post-list__cat-all a {
  background-color: #00a6bf;
  color: white;
}
.post-list li .post-list__cat.post-list__cat-doctor a {
  background-color: #388fbe;
  color: white;
}
.post-list li .post-list__cat.post-list__cat-nurse a {
  background-color: #e7397a;
  color: white;
}
.post-list li .post-list__cat.post-list__cat-tech a {
  background-color: #fd931b;
  color: white;
}
.post-list li .post-list__cat.post-list__cat-etc a {
  background-color: #38be4a;
  color: white;
}

.top_informations .post-list li .post-list__cat.post-list__cat-all a,
.top_attentions .post-list li .post-list__cat.post-list__cat-all a {
  color: #00a6bf;
  background-color: white;
}
.top_informations .post-list li .post-list__cat.post-list__cat-doctor a,
.top_attentions .post-list li .post-list__cat.post-list__cat-doctor a {
  color: #388fbe;
  background-color: white;
}
.top_informations .post-list li .post-list__cat.post-list__cat-nurse a,
.top_attentions .post-list li .post-list__cat.post-list__cat-nurse a {
  color: #e7397a;
  background-color: white;
}
.top_informations .post-list li .post-list__cat.post-list__cat-tech a,
.top_attentions .post-list li .post-list__cat.post-list__cat-tech a {
  color: #fd931b;
  background-color: white;
}
.top_informations .post-list li .post-list__cat.post-list__cat-etc a,
.top_attentions .post-list li .post-list__cat.post-list__cat-etc a {
  color: #38be4a;
  background-color: white;
}

.top_informations .post-list li .post-list__title,
.top_attentions .post-list li .post-list__title {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  /* SP */
  .top_attentions .wrapper,
  .top_informations .wrapper {
    width: 100%;
    margin: 0;
    padding: 20px 20px 105px;
    flex-direction: column;

    position: relative;
  }
  .post-list li .post-list__cat {
    padding-top: 2px;
  }

  .info_title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: static;
  }
  .info_title h2 {
    width: auto;
    text-align: center;
  }
  .top_attentions .info_title h2::before {
    top: -46px;
  }
  .top_attentions .info_title a,
  .top_informations .info_title a {
    margin: 0;
    position: absolute;
    bottom: 35px;
  }
  .top_attentions .info_title a::after,
  .top_informations .info_title a::after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border-top: solid white 2px;
    border-right: solid white 2px;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
  }
  .top_informations .info_title a::after {
    border-top-color: #00a6bf;
    border-right-color: #00a6bf;
  }
  .post-list li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding: 24px 0;
  }
  .post-list li .post-list__cat,
  .post-list li .post-list__date {
    flex-basis: 105px;
    text-align: left;
  }
  .post-list li .post-list__title {
    flex-basis: 100%;
    margin-top: 10px;
  }
}
/*********************************************************
*
* お知らせ一覧 / サイドナビゲーション
*
**********************************************************/
.pageRecruit .recruit_side .widget {
  margin-bottom: 0;
  margin-top: 20px;
}
.pageRecruit .recruit_side .widget h2 {
  color: white;
  font-size: 18px;
  padding-left: 25px;
}
.pageRecruit .recruit_side .widget > ul > li > a,
.pageRecruit main .recruit_side .sideNavigation .widget > ul > li:first-child > a,
.pageRecruit main .recruit_side .sideNavigation .widget > ul > li > a {
  padding: 15px 15px 15px 50px;
}

/* アコーディオン */
.pageRecruit .recruit_side .widget .accordion .accordion-click {
  color: white;
  padding: 10px 15px 10px 50px;
  position: relative;
}
.pageRecruit .recruit_side .widget .accordion .accordion-click::before,
.pageRecruit .recruit_side .widget .accordion .accordion-click::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;

  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
}
.pageRecruit .recruit_side .widget .accordion .accordion-click::before {
  border: 1px solid white;
}
.pageRecruit .recruit_side .widget .accordion .accordion-click::after {
  content: "+";
  font-size: 14px;
  color: white;
  line-height: 20px;
  text-align: center;
}
.pageRecruit .recruit_side .widget .accordion .accordion-content {
  margin: 0;
  border: none;
  padding-top: 0;
}
.pageRecruit .recruit_side .widget .accordion .accordion-content li a {
  padding: 10px 15px 10px 70px;
}
.pageRecruit .recruit_side .widget .accordion .accordion-content li a::after {
  display: none;
}
.pageRecruit .recruit_side .widget .accordion .accordion-content li a::before {
  content: "・";
}

/*********************************************************
*
* お知らせ詳細
* Blog/default/single
*
**********************************************************/
.post {
  border-bottom: none;
}
.post .meta {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 40px;
}
.post .meta .post_meta_cat a {
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 20px;
}
.post .meta .post_meta_cat.all a {
  background-color: #00a6bf;
}
.post .meta .post_meta_cat.doctor a {
  background-color: #388fbe;
}
.post .meta .post_meta_cat.nurse a {
  background-color: #e7397a;
}
.post .meta .post_meta_cat.tech a {
  background-color: #fd931b;
}
.post .meta .post_meta_cat.etc a {
  background-color: #38be4a;
}

.post .meta .post_meta_date {
  color: #00a6bf;
  font-family: Montserrat, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  /* SP */
  .post .meta {
    margin-top: 10px;
  }
}

/*********************************************************
*
* TOP ナビボタン
*
**********************************************************/
.recruit_top_navigation {
  margin: 40px 0;
}
.recruit_top_navigation [data-bgb] {
  margin: 0;
}
.recruit_top_navigation div.recruit_top_navigation__inner {
  display: flex;
}
.recruit_top_navigation div.recruit_top_navigation__inner > div {
  display: block;
  color: white;
}
.recruit_top_navigation div.recruit_top_navigation__inner > div:first-child {
  margin-left: 0;
}

/* クリック範囲 */
.recruit_top_navigation div.recruit_top_navigation__inner > div a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  position: relative;
}

/* 矢印 */
.recruit_top_navigation div.recruit_top_navigation__inner > div a::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 35px;
  width: 15px;
  height: 15px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);

  transition: right 0.3s;
}

.recruit_top_navigation div.recruit_top_navigation__inner > div a h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  /* PC */
  .recruit_top_navigation div.recruit_top_navigation__inner > div {
    flex-basis: 340px;
    flex-grow: 1;
    margin-left: 1px;
  }
  .recruit_top_navigation div.recruit_top_navigation__inner > div a {
    padding: 35px 10%;
  }
  .recruit_top_navigation div.recruit_top_navigation__inner > div a:hover::after {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  /* SP */
  .recruit_top_navigation div.recruit_top_navigation__inner {
    flex-direction: column;
  }
  .recruit_top_navigation div.recruit_top_navigation__inner > div a {
    padding: 25px 50px 25px 20px;
  }
  .recruit_top_navigation div.recruit_top_navigation__inner > div a h2 {
    font-size: 1.143rem; /* 16px */
    margin-bottom: 1rem;
  }
  .recruit_top_navigation div.recruit_top_navigation__inner > div a::after {
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;

    margin-top: -5px;
  }
}

#Home main [data-bgb] {
  padding: 60px 2rem 20px;
  max-width: calc(810px + 4rem);
  margin-left: auto;
  margin-right: auto;
}

/*********************************************************
*
* ボタン矢印スタイル
*
**********************************************************/
/* ベース */
.btn-arrow {
  padding-right: 2rem;
}
.btn-arrow::after {
  content: "";
  display: block;

  width: 0.75rem;
  height: 0.75rem;
  margin-top: -0.375rem;

  border-style: solid;
  border-color: inherit;
  border-width: 0 0 1px 1px;

  position: absolute;
  top: 50%;
  left: auto;
  right: 1rem;

  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* オプションプロパティ */
.btn-arrow--position-left {
  /* 位置を左に */
  padding-right: 1rem;
  padding-left: 2rem;
}
.btn-arrow--position-left::after {
  right: auto;
  left: 1rem;

  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-arrow--up::after {
  /* 上向き */
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 55%;
}
.btn-arrow--down::after {
  /* 下向き */
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn-arrow--small::after {
  /* 小さい */
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
}
.btn-arrow--big::after {
  /* 大きい */
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
}
.btn-arrow--blue::after {
  /* 青 */
  border-color: #1877f2;
}
.btn-arrow--white::after {
  /* 白 */
  border-color: white;
}
.btn-arrow--bold::after {
  /* 太い */
  border-width: 0 0 2px 2px;
}
@media screen and (min-width: 768px) {
  /* SPのみ矢印表示 */
  .btn-arrow--sp::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /* PCのみ矢印表示 */
  .btn-arrow--pc::after {
    display: none;
  }
}

/* ホバーアニメーション（PC版のみ） */
@media screen and (min-width: 768px) {
  .btn-arrow::after {
    transition: 0.3s;
  }
  .btn-arrow:hover::after {
    right: 0.5rem;
  }
}
