@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* header_menu */
#index header {
  position: fixed;
  top: 0;
  left: 0;
  height: 110px;
  width: 100%;
  z-index: 100;
  background-color: white;
  box-shadow: 2px 2px 8px -5px rgba(0, 0, 0, 0.40);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 110px;
  width: 100%;
  z-index: 100;
  background-color: white;
  box-shadow: 2px 2px 8px -5px rgba(0, 0, 0, 0.40);
}
#wrapper.header_pt { /*ヘッダーの高さ分*/
  margin-top: 110px
}
#h_logo {
  position: fixed;
  z-index: 101;
  left: 40px;
  top: 18px;
}
#h_logo a {
  display: block;
  background-image: url("../images/logo.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 230px auto;
  width: 240px;
  height: 72px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.medical-subject {
  position: fixed;
  top: 50px;
  left: 300px;
  color: var(--main);
  font-size: 14px
}
/*headerLinks*/
#h-links {
  position: absolute;
  top: 10px;
  right: 20px;
  width: auto;
  display: flex;
  align-items: center;
  z-index: 3
}
#h-links a {
  display: block;
  padding: 4px 15px;
  font-size: 15px;
  color: var(--bk);
  border-radius: 50px;
  transition: .3s; /*変形の時間*/
  margin-right: 5px
}
#h-links a.btn_con {
  background-color: rgba(247, 221, 233, 1.00)
}
#h-links a.btn_acc {
  background-color: rgba(222, 247, 249, 1.00)
}
#h-links a.btn_rec {
  background-color: rgba(208, 226, 240, 1.00)
}
#h-links a.btn_tel {
  font-size: 26px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#h-links a i {
  font-size: 23px;
  padding-right: 7px
}
/*--- 1024以上pcのみ適応 --- */
@media screen and (min-width: 1025px) {
  /* メニュー */
  .global-nav {
    position: relative;
    top: 0px;
    width: 100%;
    z-index: 1
  }
  /* 親メニュー*/
  .global-nav .nav-list {
    position: relative;
    top: 63px;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: flex-end
  }
  .global-nav > .nav-list > .nav-item > a {
    position: relative;
    display: block;
    color: var(--bk);
    font-size: 18px;
    padding: 12px 15px 17px;
    line-height: 1;
    z-index: 3;
    cursor: pointer;
  }
  .global-nav > .nav-list > .nav-item > a:hover {
    color: var(--main);
	  opacity: 1
  }
  .global-nav > .nav-list > .nav-item > a.active{
	  color: var(--main);
	  background-color: rgba(241, 245, 251, 1);
	  border-radius: 5px 5px 0 0
	}

  .global-nav > .nav-list > .nav-item:last-child > a {
    margin-right: 20px;
    border-right: none;
  }
  /* 子メニュー（通常非表示クリックで表示) */
  .nav-item_sub {
    display: none;
    width: 100%;
    height: auto;
    background-color: rgba(241, 245, 251, 1);
    position: absolute;
    left: 0;
    top: 40px;
    padding: 20px 20px 40px 20px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  }
  .nav-item_sub .inner {
    margin: 0 auto;
    width: 1000px;
    display: flex
  }
  .nav-item_sub .inner .nav-photo {
    width: 30%;
    margin-right: 2em;
  }
  .nav-item_sub .inner .nav-photo img {
    border-radius: 5px
  }
  .nav-item_sub .inner ul {
    width: 70%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start /*liの高さ上揃え*/
  }
  .nav-item_sub .inner ul li {
    list-style: none;
    width: 50%
  }
  .nav-item_sub .inner ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding: .2em 1em .2em 1.3em;
  }
  .nav-item_sub .inner ul li a::before {
    position: absolute;
    top: 7px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f105';
    color: var(--main);
    font-size: 10px
  }
  .nav-item_sub .inner ul li a:hover {
    color: var(--main);
    border-radius: 10px;
    opacity: 1;
    margin-left: 2px
  }
}
/*SP&Tablet ----------------------*/
@media screen and (max-width: 1200px) {
  .medical-subject {
    width: 170px;
    top: 35px;
    left: 300px;
    font-size: 12px
  }
}
/*SP&Tablet ----------------------*/
@media screen and (max-width: 1024px) {
  #wrapper.header_pt { /*ヘッダーの高さ分*/
    margin-top: 60px
  }
  /* header_menu */
  #index header {
    position: fixed;
    display: block; /*トップのみ初めは非表示*/
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);
    border-radius: 0
  }
  header {
    position: fixed;
    display: block; /*トップのみ初めは非表示*/
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);
    border-radius: 0
  }
  #h_logo {
    position: fixed;
    left: 20px;
    top: 5px;
  }
  #h_logo a {
    display: block;
    background-image: url("../images/logo.svg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: 140px auto;
    width: 140px;
    height: 50px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .medical-subject {
    position: fixed;
    top: 15px;
    left: 180px;
    font-size: 10px;
    width: 14em
  }
  /** btn-trigger **/
  .btn-trigger {
    position: absolute;
    top: 8px;
    right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 100;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 35px;
    height: 1px;
    background-color: black;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 10px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 20px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 30px;
  }
  /** #btn01 **/
  #btn01.active span {
    background-color: black;
    padding-right: 10px
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  /* HM */
  .global-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    text-align: left;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; /*慣性スクロールを追加*/
    padding-bottom: 8em;
    background-color: white;
  }
  /* HM-open*/
  .open .global-nav {
    transform: translateX(0);
  }
  .open {
    overflow: hidden;
  }
  .open .global-nav {
    visibility: visible;
    opacity: 1;
  }
  .open .global-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
  /* 親メニュー*/
  .global-nav .nav-list {
    position: relative;
    top: 60px;
    width: 80%;
    height: auto; /*必須*/
    display: block;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    padding-right: 0;
    padding-top: 20px;
  }
  .global-nav > .nav-list > .nav-item > a { /*表示されているメニュー*/
    position: relative;
    width: 100%;
    display: block;
    vertical-align: middle;
    text-align: left;
    font-size: 18px;
    height: auto;
    padding: 1em;
    font-weight: 400;
    border-bottom: 1px solid var(--line);
  }
  /* Accordion_arrow_change */
  .global-nav > .nav-list > .nav-item > a.nav-item_a:before, .global-nav > .nav-list > .nav-item > a.nav-item_a:after {
    position: absolute;
    width: 15px;
    height: 2px;
    top: 50%;
    right: 15px;
    content: '';
    font-weight: 500;
    font-size: 15px;
    background-color: var(--bk);
    transition: .2s
  }
  .global-nav > .nav-list > .nav-item > a.nav-item_a:before {
    transform: translateY(-50%) rotate(90deg);
    top: 52%;
  }
  .global-nav > .nav-list > .nav-item > a.nav-item_a.active:before {
    transform: rotate(180deg);
    transition: .2s
  }
  .global-nav > .nav-list > .nav-item > a.nav-item_a.active:after {
    opacity: 0;
    transition: .1s
  }
  /*子メニュー*/
  .nav-item_sub {
    display: none;
    padding: 0;
    margin: 0;
  }
  .nav-list {
    height: 100%;
  }
  .inner {
    margin: 1em
  }
  .inner ul {
    padding: 0;
    margin: 0 0 0 1em
  }
  .inner ul li {
    margin: 0;
    list-style: none
  }
  .nav-item_sub .inner .nav-photo, .inner ul li.gn-photo, .inner ul li.title {
    display: none;
  }
  .inner ul li a {
    display: block;
    font-size: 14px;
    padding-bottom: .8em
  }
  .inner ul li a:hover {
    color: var(--main);
    opacity: 1
  }
  .inner ul li a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f105';
    color: var(--main);
    font-size: 10px;
    padding-right: 1em
  }
  /*headerLinks*/
  #h-links {
    position: relative;
    width: 80%;
    left: 0;
    top: 90px;
    right: 0;
    margin: 0 auto;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 3
  }
  #h-links a {
    display: block;
    width: 100%;
    padding: 1em;
    text-align: center;
    font-size: 15px;
    color: var(--bk);
    border-radius: 50px;
    transition: .3s; /*変形の時間*/
    margin: 10px 0
  }
}
@media (max-width: 576px) {
  .medical-subject {
    display: none
  }
}
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
footer {
  width: 100%;
  margin: 0px;
  padding: 0;
  position: relative;
  clear: both;
  float: none;
  z-index: 20;
  background-color: white;
}
footer .container-fluid {
  font-size: 18px;
  position: relative;
}
/*フッター看護部・栄養科*/
.f_kangobu a, .f_eiyouka a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FCF4F8;
  border-radius: 15px;
  padding: 1em;
  transition: all .3s;
  min-height: 165px
}
.f_kangobu a:hover, .f_eiyouka a:hover {
  transform: translateY(-5px);
  filter: drop-shadow(2px 2px 2px #E0E0E0)
}
.f_kangobu a div h4, .f_eiyouka a div h4 {
  font-size: 1.2em;
  margin-bottom: .3em
}
.f_kangobu a img, .f_eiyouka a img {
  width: 30%;
  height: 130px;
  border-radius: 15px;
  margin: 0 1em 1em 0;
  float: left;
  object-fit: cover
}
.f_eiyouka a {
  background-color: #FAF3ED;
}
/*f_bn*/
.f_bn {
  display: flex;
  flex-wrap: wrap;
}
.f_bn li {
  /*width: 33.3%;*/
  width: 25%;
  padding: 1%
}
.f_bn li a {
  display: block;
  transition: all .3s;
}
.f_bn li a:hover {
  transform: translateY(-5px);
  opacity: 1;
  filter: drop-shadow(2px 2px 2px #E0E0E0)
}
/*f_info*/
#f_info .tel {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6em;
  color: #33333A;
  line-height: 1.4;
}
#f_info p .tel_gairai {
  font-size: 80%;
}
#f_info .border-left {
  border-left: 1px solid #ccc;
  ;
  padding-left: 2em
}
#f_info p.col-pink {
  font-size: 16px;
  line-height: 1.6;
  font-weight: normal
}
#f_info .lr p {
  font-size: 14px
}
#f_info .lr .more-button a {
  font-size: 13px;
  text-decoration: none;
  font-weight: 600
}
#f_info .more-button a::after {
  position: absolute;
  top: 7px;
  right: 15px;
}
/*f_contact*/
#f_contact {
  /*padding-top: 0;*/
  letter-spacing: 1px
}
#f_contact ul {
  display: flex;
}
#f_contact ul li a {
  display: inline-block;
  border: 1px solid var(--bk);
  padding: .5em 1em;
  font-size: 16px;
  border-radius: 50px;
  transition: .3s; /*変形の時間*/
  margin-right: .5em
}
.f_hyoka {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5%;
  border-radius: 10px
}
.f_hyoka img {
  width: 60px;
  height: 60px;
  margin-bottom: .5em
}
.f_hyoka p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}
div .f_copy {
  width: 100%;
  background-color: white;
  font-size: 14px;
  text-align: center;
  padding: 2em;
}
.address {
  margin-bottom: 20px;
  line-height: 1.6
}
.address span {
  padding-right: 1em
}
/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  background: var(--main);
  border-radius: 50px;
  line-height: 65px;
}
.pagetop a i {
  font-size: 20px;
  color: #fff;
  line-height: 60px;
}
@media screen and (max-width: 1400px) {
  #f_info .lr {
    display: block
  }
}
@media screen and (max-width: 1200px) {
  #f_contact .col-lg-6 {
    width: 100%;
    text-align: center
  }
  #f_contact .col-lg-6 p {
    text-align: center
  }
  #f_contact ul {
    width: 100%;
    margin: 0 auto 20px auto;
    justify-content: center
  }
  #f_contact .col-lg-3 {
    width: 60%;
    margin: 3% auto
  }
}
/*Tablet以下*/
@media screen and (max-width: 1024px) {
  /*フッター看護部・栄養科*/
  .f_box2 {
    display: block;
  }
  #f_info .border-left {
    border-left: none;
    padding-left: 1em
  }
  /*フッター看護部・栄養科*/
  .f_kangobu a, .f_eiyouka a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em;
  }
  .f_kangobu a div, .f_eiyouka a div {
    height: 130px;
  }
  .f_kangobu a img, .f_eiyouka a img {
    width: 30%;
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .f_hyoka a img {
    margin-bottom: .5em
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {
  .f_logo {
    text-align: center;
    width: 200px;
    margin: 0 auto 1em auto;
  }
  .f_bn li {
    width: 50%;
  }
  #f_contact ul {
    display: block;
    width: 85%;
    margin: 0 auto 20px auto;
  }
  #f_contact ul li a {
    display: block;
    margin-bottom: .5em;
    margin-right: 0;
    text-align: center
  }
  #f_contact p {
    text-align: center
  }
  #f_contact .col-lg-3 {
    width: 90%;
    margin: 3% auto
  }
  .address span {
    display: block;
    text-align: center
  }
  .f_kangobu a div, .f_eiyouka a div {
    height: 130px;
  }
  .f_kangobu a img, .f_eiyouka a img {
    width: 100px;
    height: 100px;
  }
}