@charset "UTF-8";
/* ============================================================
   sub_header.css - サブページ用ヘッダー
   --------------------------------------------------------------
   読み込み条件: トップ以外の全ページで読み込み
   役割: サブページの新ヘッダー・パンくずリスト・スマホメニュー

   構成:
     1. 共通スタイル(全デバイス共通)
     2. PC版スタイル(@media min-width: 769px)
     3. スマホ版スタイル(@media max-width: 768px)
     4. その他のメディアクエリ(画面サイズ別の微調整)
     5. アニメーション(@keyframes)

   ルール:
     - font-family / font-size はサイト共通CSS(common.css)で管理
     - 個別フォント指定はアイコン用(FontAwesome等)・装飾用(Roboto等)のみ
     - ブレークポイント: PC ≥ 769px / SP ≤ 768px
   ============================================================ */


/* ============================================================
   1. 共通スタイル
   ============================================================ */


/* --- 旧ヘッダー調整 --- */


.js-hover {
  display: block !important;
}

.-lock {
  overflow: hidden;
}

#commonHeader {
  position: unset;
}

#commonHeader a {
  display: flex;
}

#contentHeader .mod-title {
  display: none;
}

#contentHeader #breadCrumbs::before,
#contentHeader .mod-title {
  background-image: none;
}


/* --- 新ヘッダー(.header_global) --- */


header.header_global {
  position: -webkit-sticky;
  padding: 6px 0;
  background-color: #fff;
}

.wrap_single1440 {
  padding: .5px calc(50% - 720px);
}

header.header_global > .wrap_single1440 > .header_inner {
  display: flex;
  padding: 0 18px;
}

header.header_global > .wrap_single1440 > .header_inner > a.siteid {
  display: block;
  padding-top: 2px;
}

header.header_global > .wrap_single1440 > .header_inner > nav.navgroup {
  display: none;
}

header.header_global > .wrap_single1440 > .header_inner > nav.navgroup > .subgroup {
  display: flex;
  justify-content: flex-end;
}

header.header_global > .wrap_single1440 > .header_inner > nav.navgroup > .subgroup > .nav_submenu {
  overflow-x: auto;
}

header.header_global > .wrap_single1440 > .header_inner > nav.navgroupsp {
  display: block;
  margin-left: auto;
}

header.header_global > .wrap_single1440 > .header_inner > nav.navgroup > .subgroup > .nav_contact {
  overflow-x: auto;
  flex: 0 0 auto;
  margin-left: 12px;
}

header.header_global > .wrap_single1440 > .header_inner > nav.navgroup > .megamenugroup {
  display: flex;
  overflow-x: auto;
  justify-content: flex-end;
  margin-top: 40px;
}

.bread_crumbs > .wrap_single1440 > .list {
  display: flex;
  justify-content: flex-end;
  padding: 0 12px;
}

.bread_crumbs > .wrap_single1440 > .list > .item {
  position: relative;
  line-height: 1;
}

.bread_crumbs > .wrap_single1440 > .list > .item:first-child {
  padding-left: 1px;
}

.bread_crumbs > .wrap_single1440 > .list > .item:last-child {
  overflow: hidden;
  min-width: 0;
}

.bread_crumbs > .wrap_single1440 > .list > .item:first-child::before {
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  content: url(/img/svg/ic_home.svg);
}

.bread_crumbs > .wrap_single1440 > .list > .item:not(:first-child) {
  padding-left: 14px;
}

.bread_crumbs > .wrap_single1440 > .list > .item > .link {
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4px;
  padding-left: 4px;
  color: #212121;
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.3rem;
  text-overflow: ellipsis;
}

.bread_crumbs > .wrap_single1440 > .list > .item:first-child > .link {
  position: relative;
  z-index: 1;
  padding-left: 18px;
}

.bread_crumbs > .wrap_single1440 > .list > .item:not(:first-child)::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 4px;
  color: #e5e5e5;
  line-height: 1.8rem;
  content: "-";
  font-size: 1.6rem;
}


/* --- スマホ版メニューボタン(.openbtn) --- */


.openbtn {
  position: absolute;
  top: -1px;
  right: 10px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.openbtn span {
  display: inline-block;
  position: absolute;
  left: 14px;
  width: 45%;
  height: 3px;
  background-color: #00a0e9;
  border-radius: 2px;
  transition: all .4s;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  width: 30%;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  width: 30%;
  transform: translateY(-6px) rotate(45deg);
}

.nav_sp {
  display: none;
  z-index: 1;
}

.nav_sp.-open {
  display: block;
  padding-top: 38px;
}

.nav_sp > .header_inner {
  overflow-x: auto;
  position: fixed;
  top: var(--hvh);
  left: 0;
  z-index: 3;
  width: 100%;
  height: calc(120vh - 10em);
  background-color: #e0edff;
  -webkit-animation-delay: .01s;
  animation-delay: .01s;
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: showfade;
  animation-name: showfade;
}

.nav_sp > .header_inner > .list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 150px;
  padding: 30px 18px;
}

.nav_sp > .header_inner > .list > .button_icon {
  flex: 0 0 106px;
}

.nav_sp > .header_inner > .navgroup {
  margin: 0 20px;
  border-bottom: 1px solid #fff;
}

.nav_sp > .header_inner > .contactgroup {
  background-color: #fff4f4;
}

.nav_sp > .header_inner > .contactgroup > .nav_contact > .list {
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  padding: 15px 0 25px;
}

.nav_sp > .header_inner > .contactgroup > .nav_contact > .list > .item {
  padding: 15px 0;
}

.nav_sp > .header_inner > .contactgroup > .nav_contact > .list > .item > .button_simple {
  padding: 19px 30px 20px;
  font-size: 1.8rem;
}


/* --- ボタン(.button_menu, .button_icon, .button_simple) --- */


.button_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 56px;
  padding: 10px;
  border-radius: 4px;
}

.button_menu > .header_button {
  display: none;
}

.button_menu.-closs > .button.close,
.button_menu.-threebar > .header_button.open {
  display: block;
}

a.button_icon.-solid.-size_l {
  font-size: 1.2rem;
}

a.button_icon.-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a.button_icon.-flat {
  padding: 7px 18px 9px;
  font-size: 1.3rem;
  font-weight: 700;
}

a.button_icon.-solid {
  padding: 5px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,.06);
  font-size: 1.3rem;
  font-weight: 700;
}

a.button_icon {
  display: inline-block;
  color: #212121;
  white-space: nowrap;
  line-height: 1;
}

a.button_icon.-icon::before {
  display: inline-block;
  margin-bottom: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

a.button_icon.-icon.-outpatient_index::before {
  width: 20.5px;
  height: 30.5px;
  background-image: url(/img/svg/ic_beginer.svg);
}

a.button_icon.-icon.-size_l.-outpatient_index::before {
  width: 20.5px;
  height: 30.5px;
}

a.button_icon.-icon.-time::before {
  width: 20px;
  height: 20px;
  background-image: url(/img/svg/ic_time.svg);
}

a.button_icon.-icon.-size_l.-time::before {
  width: 25.5px;
  height: 25.5px;
  margin-top: 2.5px;
  margin-bottom: 11px;
}

a.button_icon.-icon.-about_access::before {
  width: 20px;
  height: 20px;
  background-image: url(/img/svg/ic_map.svg);
}

a.button_icon.-icon.-size_l.-about_access::before {
  width: 25.5px;
  height: 27.7px;
  margin-top: 1.4px;
  margin-bottom: 7.4px;
}

.button_simple.-solid.-colorlink {
  background: linear-gradient(107.75deg,#ff7e7e 33.85%,#f35f5f 75.29%);
  color: #fff;
  text-shadow: 0 1px 4px rgba(127,0,0,.16);
}

main.main_global.index > .recruit_information > .wrap_single1100 > .block > .buttonbox .button_simple:not(:first-child) {
  margin-top: 10px;
}

.button_simple.-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_simple.-solid {
  padding: 10px 18px 11px;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
}

.button_simple {
  display: inline-block;
  border: none;
  outline: none;
  white-space: nowrap;
  line-height: 1;
}

.button_simple.-icon.-contact::before {
  width: 17px;
  height: 17px;
  padding-top: 1px;
  background-image: url(/img/svg/ic_w_contact.svg);
}

.button_simple.-icon.-arrow::before {
  width: 22px;
  height: 22px;
  background-image: url(/img/svg/ic_w_arrow01.svg);
}

.button_simple.-icon::before {
  display: inline-block;
  margin-right: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.button_tel {
  display: flex;
  align-items: center;
  padding: 0 4px 1px;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  font-family: Roboto,sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.button_tel.-size_s {
  letter-spacing: -.02rem;
  font-size: 2.1rem;
}

.button_tel.-icon {
  display: flex;
  align-items: center;
}

.button_tel.-icon::before {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  content: "";
  content: url(/img/svg/ic_tel.svg);
  -o-object-fit: contain;
  object-fit: contain;
}

.button_tel.-colortextlink {
  background-color: transparent;
  color: #ff7f7f;
}


/* --- ナビゲーション(.nav_megamenu, .nav_footer, .nav_submenu) --- */


.nav_submenu > ul.list {
  display: flex;
  align-items: center;
  padding: 0 8px;
  background-color: #fff4f4;
  border-radius: 4px;
}

.nav_submenu > ul.list > li.item {
  flex: 0 0 auto;
  padding: 0 6px;
}

.nav_submenu > ul.list > li.item > a.link {
  display: flex;
  align-items: center;
  padding: 9px 3px;
  color: #212121;
  font-weight: 700;
}

.nav_submenu > ul.list > li.item > a.link.news::before {
  content: url(/img/svg/ic_news.svg);
}

.nav_submenu > ul.list > li.item > a.link.about_access::before {
  content: url(/img/svg/ic_access.svg);
}

.nav_submenu > ul.list > li.item > a.link.outpatient_medical::before {
  content: url(/img/svg/ic_relationship.svg);
}

.nav_contact > ul.list {
  display: flex;
  align-items: center;
}

.nav_contact > ul.list > li.item {
  flex: 0 0 auto;
}

.nav_contact > ul.list > li.item:not(:first-child) {
  padding-left: 6px;
}

.nav_megamenu {
  flex: 0 0 auto;
}

.nav_megamenu > .parentitem {
  border-bottom: 4px solid #fff;
}

.nav_megamenu > .parentitem > .link {
  display: block;
  padding: 2px 17px 17px;
  color: #212121;
  font-weight: 700;
}

.nav_megamenu > .parentitem > .link:hover {
  border-bottom: 4px solid #00a0e9;
}

.nav_megamenu > .parentitem > .childlist {
  display: none;
  position: absolute;
  top: calc(var(--hvh) - 1.5px);
  left: 0;
  z-index: 3;
  width: 100%;
  background: #e0edff;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 0;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > .head {
  flex: 0 0 150px;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > .head > a.headitem {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  color: #212121;
  letter-spacing: .02rem;
  font-size: 1rem;
  font-weight: 700;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > .head > a.headitem::before {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  content: url(/img/sub_header/ic_arrow01.png);
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > ul.list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  flex-wrap: wrap;
  height: 120px;
  list-style: none;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > ul.list > li.item {
  flex: 0 0 auto;
  padding: 1px 70px 0 0;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > ul.list > li.item > a.link {
  display: flex;
  align-items: center;
  padding: 5px 0;
  color: #212121;
  font-weight: 400;
}

.nav_megamenu > .parentitem > .childlist > .wrap_double1100 > ul.list > li.item > a.link::before {
  margin-right: 13px;
  content: url(/img/sub_header/ic_arrow02.png);
}

.nav_footer .navparent {
  position: relative;
  padding: 20px 10px;
  border-top: 1px solid #fff;
}

footer.footer_global > .wrap_single1100 > .inner > nav.navgroup > .block:first-child > .nav_footer > .navparent {
  border-top: 1px solid #fff;
}

.nav_footer .navparent > a.link {
  display: inline-block;
  color: #212121;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav_footer .navparent > .icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: 22px;
  border: none;
}

.nav_footer .navparent > .icon.-close {
  background-image: url(/img/sub_header/ic_plus.png);
}

.nav_footer .navparent > .icon.-open {
  background-image: url(/img/sub_header/ic_minus.png);
}

.nav_footer > ul.list {
  display: none;
  padding: 15px 0 30px;
  list-style: none;
}

.nav_footer > ul.list.-close {
  display: none;
}

.nav_footer > ul.list.-open {
  display: block;
}

.nav_footer > ul.list > li.item {
  padding: 0 6px;
}

.nav_footer > ul.list > li.item > a.link {
  display: block;
  position: relative;
  padding: 6px 6px 6px 16px;
  color: #212121;
  font-size: 1.2rem;
  font-weight: 400;
}

.nav_footer > ul.list > li.item > a.link::before {
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  content: url(/img/sub_header/ic_arrow02.png);
}

.nav_footer .navparent > .icon.arrow {
  background-image: url(/img/sub_header/ic_arrow01.png);
}


/* --- その他 --- */


.wrap_double1100 {
  padding: .5px calc(50% - 550px);
  padding-top: 0.5px;
  padding-bottom: 0.5px;
}


/* ============================================================
   2. PC版スタイル(画面幅 769px 以上)
   ============================================================ */


@media screen and (min-width: 769px) {
  #commonHeader::before {
    background: none;
  }

  #commonHeader .logo {
    width: 500px;
  }

  #contentHeader {
    min-height: 60px;
    padding-top: 0;
    background-image: none;
  }

  header.header_global {
    padding: 15px 0 0;
  }

  header.header_global > .wrap_single1440 > .header_inner {
    padding: 0 40px;
  }

  header.header_global > .wrap_single1440 > .header_inner > a.siteid {
    padding-top: 7px;
    padding-right: 10px;
  }

  header.header_global > .wrap_single1440 > .header_inner > nav.navgroup {
    display: block;
    overflow-x: auto;
    flex: 1 1 100%;
  }

  .wrap_double1100 {
    display: flex;
    justify-content: space-between;
  }

  header.header_global > .wrap_single1440 > .header_inner > nav.navgroupsp {
    display: none;
  }
}


/* ============================================================
   3. スマホ版スタイル(画面幅 768px 以下)
   ============================================================ */


@media screen and (max-width: 768px) {
  #contentHeader {
    min-height: 0;
    margin-top: -11em;
  }
}
