@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'BIZ UDゴシック', 'BIZ UDGothic','Noto Sans JP', 'Hiragino Kaku Gothic ProN','Yu Gothic', 'Meiryo', sans-serif;
  font-size: 100%;
  color: #000;
  background: #f5ede6;
  word-break: break-word;
  margin: 0;
  padding: 0;
  letter-spacing: 0.03em;
}

a {
  color: #125690;
  text-decoration: underline;
}

a:hover, button:hover {
  text-decoration: none;
  color: #2f1780;
}

button {
  cursor: pointer;
}
a:focus,
button:focus {
  outline: 2px solid #ef7c00;
  outline-offset: 4px;
  background-color: rgba(239, 124, 0, 0.2);
  border-radius: 4px;
}
/* * {
  transition: all 0.3s ease;
} */
a, button {
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  transition: transform .3s ease, opacity .3s ease;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
  line-height: 1.8;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .inner {
    padding: 0 1.25rem;
  }
}

h2, h3, h4, section {
  scroll-margin-top: 60px;
}

/* ヘッダー */
#header {
  background: #f5ede6;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  height: 94px;
  padding: 10px 1rem;
}

.logo-area {
  display: flex;
  align-self: flex-end;
  /* width: 252px; */
}
.logo-area h1 a {
  margin-bottom: .5rem;
}
.logo-area h1.logo > a img {
  width: 252px;
}

@media screen and (max-width: 1200px) {
  .header-inner {
    height: 70px;
  }
  .logo-area {
    height: 100%;
  }
  .logo-area h1 a {
    margin-bottom: 0;
  }
  .logo-area .logo {
    display: flex;
    align-items: center;
  }
  .logo-area h1.logo > a.group img {
    width: 37px;
    margin-right: .5rem;
  }
}

.logo img {
  display: block;
  height: auto;
}
.logo a:first-of-type {
  display: block;
}
.logo a {
  text-decoration: none;
}

.global-nav a, .global-nav button {
  display: inline-flex;
  align-items: center;
  color: #363636;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left center;
  height: 26px;
}

.global-nav a:hover, .global-nav button:hover {
  text-decoration: underline;
}

.global-nav {
  align-self: flex-start;
}
.global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0 1rem;
  font-size: 75%;
  font-weight: 700;
}

.global-nav li.contact a {
  background-image: url("/common/images/header_icon01.png");
  background-size: 21px 17px;
  padding-left: 27px;
}
.global-nav li.publications a {
  background-image: url("/common/images/header_icon02.png");
  background-size: 16px 20px;
  padding-left: 21px;
}
.global-nav li.museum a {
  background-image: url("/common/images/header_icon03.png");
  background-size: 11px 26px;
  padding-left: 16px;
}
.global-nav li.search button {
  background-image: url("/common/images/header_icon04.png");
  background-size: 17px 17px;
  padding-left: 22px;
}
.global-nav li.a11y button {
  background-image: url("/common/images/header_icon05.png");
  background-size: 15px 15px;
  padding-left: 20px;
}
.global-nav li.language a {
  background-image: url("/common/images/header_icon06.png");
  background-size: 16px 16px;
  padding-left: 21px;
}
.global-nav li.search {
  background: none;
}

@media screen and (max-width: 1200px) {
  .global-nav a, .global-nav button {
    display: inline-flex;
    align-items: center;
    padding-left: 0 !important;
    /* background: none !important; */
  }
  .global-nav li a::before,
  .global-nav li button::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
  }

  .global-nav li.contact a::before {
    background-image: url("/common/images/header_icon01.png");
    background-size: 21px 17px;
  }

  .global-nav li.publications a::before {
    background-image: url("/common/images/header_icon02.png");
    background-size: 16px 20px;
  }

  .global-nav li.museum a::before {
    background-image: url("/common/images/header_icon03.png");
    background-size: 11px 26px;
  }

  .global-nav li.search button::before {
    background-image: url("/common/images/header_icon04.png");
    background-size: 17px 17px;
  }

  .global-nav li.a11y button::before {
    background-image: url("/common/images/header_icon05.png");
    background-size: 15px 15px;
  }

  .global-nav li.language a::before {
    background-image: url("/common/images/header_icon06.png");
    background-size: 16px 16px;
  }
}

.setting_txt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.setting_txt.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.setting_txt > div {
  padding: 1.5rem 0;
  width: 100%;
  margin-bottom: 1.5rem;
}
.setting_close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff !important;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3100;
}
button.setting_close:hover {
  text-decoration: none !important;
}
.setting_txt .inner {
  display: flex;
  justify-content: center;
}
.setting_txt .search {
  display: flex;
  align-items: center;
  gap: initial;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: 2rem;
  border-bottom: none;
  background: none;
}
.setting_txt .search .search-label {
  color: #fff;
  position: relative;
  padding-left: 20px;
  margin-right: 1rem;
  font-size: 100%;
}

.setting_txt .color {
  display: flex;
  margin-right: 2rem;
}
.setting_txt .color dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  width: 46px;
}
.setting_txt .color dd:first-of-type a {
  background: #0c4ad3;
}
.setting_txt .color dd:nth-of-type(2) a {
  background: #d7d243;
}
.setting_txt .color dd:nth-of-type(3) a {
  background: #000;
}
.setting_txt .color dd:nth-of-type(4) a {
  background: #cfcfcf;
  color: #000 !important;
  width: 64px;
}

.setting_txt .font_size dl, .setting_txt .color dl {
  display: flex;
  align-items: center;
}
.setting_txt .font_size dt, .setting_txt .color dt {
  color: #fff !important;
  font-size: 16px;
  margin-right: 1rem;
  position: relative;
  padding-left: 22px;
}
.setting_txt .search .search-label::before, .setting_txt .font_size dt::before, .setting_txt .color dt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 18px;
  margin-right: 8px;
  background: url("/common/images/arw01.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.setting_txt .font_size dl a, .setting_txt .color dl a {
  height: 46px;
  border: 2px solid #fff;
  text-decoration: none;
}
.setting_txt .font_size dd, .setting_txt .color dd {
  margin-right: 5px;
  font-size: 16px;
}
.setting_txt .font_size dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cfcfcf;
  color: #000 !important;
  width: 66px;
}

@media screen and (max-width: 1200px) {
  .search.sp {
    display: flex;
    align-items: center;
    gap: initial;
    padding-bottom: 0;
    margin: 0 0 2rem;
    border-bottom: none;
  }  
  .setting_txt_sp .color {
    display: flex;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
  .setting_txt_sp .color dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    width: 35px;
    filter: none;
    margin-bottom: 1rem;
  }
  .setting_txt_sp .color dd:first-of-type a {
    background: #0c4ad3;
  }
  .setting_txt_sp .color dd:nth-of-type(2) a {
    background: #d7d243;
  }
  .setting_txt_sp .color dd:nth-of-type(3) a {
    background: #000;
  }
  .setting_txt_sp .color dd:nth-of-type(4) a {
    background: #cfcfcf;
    color: #000 !important;
    width: 48px;
  }

  .setting_txt_sp .font_size dl, .setting_txt_sp .color dl {
    display: flex;
    align-items: center;
  }
  .setting_txt_sp .font_size dt, .setting_txt_sp .color dt {
    color: #fff !important;
    font-size: 14px;
    margin-right: 1rem;
    position: relative;
    padding-left: 22px;
  }
  .setting_txt_sp .search .search-label::before, .setting_txt_sp .font_size dt::before, .setting_txt_sp .color dt::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 18px;
    margin-right: 8px;
    background: url("/common/images/arw01.png") no-repeat center;
    background-size: contain;
    vertical-align: middle;
  }
  #recruit .setting_txt_sp .search .search-label::before, #recruit .setting_txt_sp .font_size dt::before, #recruit .setting_txt_sp .color dt::before {
    background: url("/common/images/arw03.png") no-repeat center;
  }
  .setting_txt_sp .font_size dl a, .setting_txt_sp .color dl a {
    height: 35px;
    border: 2px solid #fff;
    text-decoration: none;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .setting_txt_sp .font_size dd, .setting_txt_sp .color dd {
    margin-right: 5px;
    font-size: 16px;
  }
  .setting_txt_sp .font_size dl a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfcfcf;
    color: #000 !important;
    width: 66px;
    filter: none;
    padding: 0;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle .menu_label {
  position: absolute;
  bottom: 2px;
  font-size: 11px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.05em;
  color: #2b9c6c;
  width: 100%;
  text-align: center;
  line-height: 1;
  background: none;
}

.global-nav-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  #header .global-nav {
    display: none;
  }

  .global-nav-sp {
    display: block;
    margin-top: 1rem;
    z-index: 10;
    position: relative;
  }

  .global-nav-sp .global-nav {
    color: #fff;
    margin-bottom: 4rem;
  }

  .global-nav-sp .global-nav ul {
    display: block;
    padding: 0;
    margin-bottom: 2rem;
  }

  .global-nav-sp .global-nav li {
    margin-bottom: .5rem;
  }

  .global-nav-sp .global-nav a,
  .global-nav-sp .global-nav button:not(.search-form button) {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    filter: brightness(0) invert(1);
  }

  .global-nav-sp .global-nav a:hover {
    text-decoration: underline;
  }

  .menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #009b6a;
    transition: all 0.3s ease;
  }
  #recruit .menu-toggle span {
    background: #00547f;
  }
  .menu-toggle.active span {
    background: #fff;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-inner {
    flex-wrap: wrap;
  }
}

/* グローバルメニュー */
.global-menu {
  position: relative;
  margin-top: -44px;
  z-index: 100;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.global-menu .logo{
  display: none;
}
.global-menu.is-fixed .logo{
  display: flex;
}
/* .logo a:last-of-type {
  display: none;
} */
.global-menu .inner {
  max-width: none;
  margin: 0;
}
.global-menu .logo a {outline:9999px solid transparent}

.global-menu .logo a.group {
  margin-right: .5rem;
}
.global-menu .logo a.group img {
  height: 36px;
}

@media screen and (max-width: 1200px) {
  .global-menu::after{
    display: none;
  }
  .global-menu {
    pointer-events: auto;
  }
}
.global-menu-list {
  display: flex;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  background: #f4ede6;
}

.global-menu-list li {
  margin-bottom: 0;
  padding-left: 0;
}

.global-menu-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.125rem 0;
  color: #009b6a;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.global-menu-list > li > a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .global-menu-list > li > a {
    display:flex;
    align-items:center
  }
  .global-menu-list > li > a::before {
    content:"";
    display:inline-block;
    width:24px;
    height:24px;
    flex:0 0 24px;
    margin-right:10px;
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
  }
}
.global-menu-list > li.submenu-open > a {
  background: #009b6a;
  color: #fff;
}
.global-menu-list > li.about_corp > a::before {
  width: 19px;
  height: 25px;
  background: url(/common/images/gnavi_icon01.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.facility_list > a::before {
  width: 26px;
  height: 25px;
  background: url(/common/images/gnavi_icon02.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.corp_action > a::before {
  width: 32px;
  height: 22px;
  background: url(/common/images/gnavi_icon03.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.guide > a::before {
  width: 24px;
  height: 23px;
  background: url(/common/images/gnavi_icon04.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.access > a::before {
  width: 16px;
  height: 24px;
  background: url(/common/images/gnavi_icon05.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.recruit > a::before {
  width: 18px;
  height: 22px;
  background: url(/common/images/gnavi_icon06.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.ryoikuen > a::before {
  width: 28px;
  height: 21px;
  background: url(/common/images/gnavi_icon07.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.service > a::before {
  width: 22px;
  height: 24px;
  background: url(/common/images/gnavi_icon08.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.department > a::before {
  width: 28px;
  height: 20px;
  background: url(/common/images/gnavi_icon09.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.contact_f > a::before {
  width: 26px;
  height: 21px;
  background: url(/common/images/gnavi_icon10.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.activities > a::before {
  width: 26px;
  height: 21px;
  background: url(/common/images/gnavi_icon12.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.tsutsuji > a::before {
  width: 25px;
  height: 25px;
  background: url(/common/images/gnavi_icon13.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.greeting > a::before {
  width: 26px;
  height: 22px;
  background: url(/common/images/gnavi_icon14.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.about_tsutsuji > a::before {
  width: 31px;
  height: 24px;
  background: url(/common/images/gnavi_icon15.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.overview > a::before {
  width: 22px;
  height: 24px;
  background: url(/common/images/gnavi_icon16.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.info > a::before {
  width: 24px;
  height: 24px;
  background: url(/common/images/gnavi_icon17.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.eligibility > a::before {
  width: 24px;
  height: 24px;
  background: url(/common/images/gnavi_icon18.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.pamphlet > a::before {
  width: 26px;
  height: 19px;
  background: url(/common/images/gnavi_icon19.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.hospital > a::before {
  width: 26px;
  height: 24px;
  background: url(/common/images/gnavi_icon20.png) no-repeat center/contain;
  margin-right: 10px;
}
.global-menu-list > li.facility > a::before {
  width: 23px;
  height: 24px;
  background: url(/common/images/gnavi_icon21.png) no-repeat center/contain;
  margin-right: 10px;
}

.global-menu-list > li.about_corp:hover > a::before,
.global-menu-list > li.about_corp.submenu-open > a::before {
  background: url(/common/images/gnavi_icon01_on.png) no-repeat center/contain;
}
.global-menu-list > li.facility_list:hover > a::before,
.global-menu-list > li.facility_list.submenu-open > a::before {
  background: url(/common/images/gnavi_icon02_on.png) no-repeat center/contain;
}
.global-menu-list > li.corp_action:hover > a::before,
.global-menu-list > li.corp_action.submenu-open > a::before {
  background: url(/common/images/gnavi_icon03_on.png) no-repeat center/contain;
}
.global-menu-list > li.guide:hover > a::before,
.global-menu-list > li.guide.submenu-open > a::before {
  background: url(/common/images/gnavi_icon04_on.png) no-repeat center/contain;
}
.global-menu-list > li.access:hover > a::before,
.global-menu-list > li.access.submenu-open > a::before {
  background: url(/common/images/gnavi_icon05_on.png) no-repeat center/contain;
}
.global-menu-list > li.recruit:hover > a::before,
.global-menu-list > li.recruit.submenu-open > a::before {
  background: url(/common/images/gnavi_icon06_on.png) no-repeat center/contain;
}
.global-menu-list > li.ryoikuen:hover > a::before,
.global-menu-list > li.ryoikuen.submenu-open > a::before {
  background: url(/common/images/gnavi_icon07_on.png) no-repeat center/contain;
}
.global-menu-list > li.service:hover > a::before,
.global-menu-list > li.service.submenu-open > a::before {
  background: url(/common/images/gnavi_icon08_on.png) no-repeat center/contain;
}
.global-menu-list > li.department:hover > a::before,
.global-menu-list > li.department.submenu-open > a::before {
  background: url(/common/images/gnavi_icon09_on.png) no-repeat center/contain;
}
.global-menu-list > li.contact_f:hover > a::before,
.global-menu-list > li.contact_f.submenu-open > a::before {
  background: url(/common/images/gnavi_icon10_on.png) no-repeat center/contain;
}
.global-menu-list > li.activities:hover > a::before,
.global-menu-list > li.activities.submenu-open > a::before {
  background: url(/common/images/gnavi_icon12_on.png) no-repeat center/contain;
}
.global-menu-list > li.tsutsuji:hover > a::before,
.global-menu-list > li.tsutsuji.submenu-open > a::before {
  background: url(/common/images/gnavi_icon13_on.png) no-repeat center/contain;
}
.global-menu-list > li.greeting:hover > a::before,
.global-menu-list > li.greeting.submenu-open > a::before {
  background: url(/common/images/gnavi_icon14_on.png) no-repeat center/contain;
}
.global-menu-list > li.about_tsutsuji:hover > a::before,
.global-menu-list > li.about_tsutsuji.submenu-open > a::before {
  background: url(/common/images/gnavi_icon15_on.png) no-repeat center/contain;
}
.global-menu-list > li.overview:hover > a::before,
.global-menu-list > li.overview.submenu-open > a::before {
  background: url(/common/images/gnavi_icon16_on.png) no-repeat center/contain;
}
.global-menu-list > li.info:hover > a::before,
.global-menu-list > li.info.submenu-open > a::before {
  background: url(/common/images/gnavi_icon17_on.png) no-repeat center/contain;
}
.global-menu-list > li.eligibility:hover > a::before,
.global-menu-list > li.eligibility.submenu-open > a::before {
  background: url(/common/images/gnavi_icon18_on.png) no-repeat center/contain;
}
.global-menu-list > li.pamphlet:hover > a::before,
.global-menu-list > li.pamphlet.submenu-open > a::before {
  background: url(/common/images/gnavi_icon19_on.png) no-repeat center/contain;
}
.global-menu-list > li.hospital:hover > a::before,
.global-menu-list > li.hospital.submenu-open > a::before {
  background: url(/common/images/gnavi_icon20_on.png) no-repeat center/contain;
}
.global-menu-list > li.facility:hover > a::before,
.global-menu-list > li.facility.submenu-open > a::before {
  background: url(/common/images/gnavi_icon21_on.png) no-repeat center/contain;
}

@media screen and (max-width: 1200px) {
  .global-menu-list > li.submenu-open > a {
    background: initial;
  }
  .global-menu.active .global-menu-list > li.about_corp > a::before {
    background: url(/common/images/gnavi_icon01_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.facility_list > a::before {
    background: url(/common/images/gnavi_icon02_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.corp_action > a::before {
    background: url(/common/images/gnavi_icon03_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.guide > a::before {
    background: url(/common/images/gnavi_icon04_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.access > a::before {
    background: url(/common/images/gnavi_icon05_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.recruit > a::before {
    background: url(/common/images/gnavi_icon06_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.ryoikuen > a::before {
    background: url(/common/images/gnavi_icon07_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.service > a::before {
    background: url(/common/images/gnavi_icon08_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.department > a::before {
    background: url(/common/images/gnavi_icon09_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.contact_f > a::before {
    background: url(/common/images/gnavi_icon10_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.activities > a::before {
    background: url(/common/images/gnavi_icon12_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.tsutsuji > a::before {
    background: url(/common/images/gnavi_icon13_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.greeting > a::before {
    background: url(/common/images/gnavi_icon14_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.about_tsutsuji > a::before {
    background: url(/common/images/gnavi_icon15_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.overview > a::before {
    background: url(/common/images/gnavi_icon16_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.info > a::before {
    background: url(/common/images/gnavi_icon17_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.eligibility > a::before {
    background: url(/common/images/gnavi_icon18_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.pamphlet > a::before {
    background: url(/common/images/gnavi_icon19_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.hospital > a::before {
    background: url(/common/images/gnavi_icon20_on.png) no-repeat center/contain;
  }
  .global-menu.active .global-menu-list > li.facility > a::before {
    background: url(/common/images/gnavi_icon21_on.png) no-repeat center/contain;
  }
}


.global-menu-list a:hover {
  background: #009b6a;
  color: #fff;
}

/* メガメニュー */
.has-submenu {
  position: static;
}

.has-submenu.open .submenu {
  display: block;
}

.submenu-container {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #009b6a;
  padding: 20px 0 40px;
  z-index: 1000;
}

.has-submenu.open .submenu-container,
.has-submenu:hover .submenu-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-menu .submenu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #009b6a;
  padding: 20px 0 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.global-menu .has-submenu.submenu-open .submenu-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* スマホ時 */
@media screen and (max-width: 1200px) {
  .global-menu .submenu-container {
    position: static;
    width: 100%;
    padding: 0;
    background: initial;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none;
    pointer-events: auto;
  }

  .global-menu .has-submenu.submenu-open .submenu-container {
    display: block;
  }
}

.has-submenu > a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
  padding: .594rem 1rem;
  font-size: 87.5%;
  font-weight: 700;
  color: #080808;
}
.has-submenu > a:focus {
  border-radius: 0;
}
.submenu {
  width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.submenu ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc((1200px - (280px * 4)) / 3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu li {
  width: 280px;
  height: auto;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submenu li a {
  position: relative;
  display: block;
  padding: 1rem 6px 1rem 2rem;
  background: rgba(255, 255, 255, 1);
  color: #080808;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.3s, color 0.3s;
}
.submenu li a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.submenu li a svg {
  width: 18px;
  margin-right: 10px;
  fill: currentColor;
  transition: fill 0.3s;
  flex-shrink: 0;
}

.submenu li a:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.submenu li a::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 22px;
  width: 7px;
  height: 8px;
  background-color: #009b6a;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: background-color 0.3s;
}
.submenu li a:hover::before {
  background-color: #fff;
}

/* スクロール時 */
#header.is-fixed {
  height: 55px;
}
#header.is-fixed .global-nav {
  display: none;
}
#header.is-fixed .logo img {
  height: 40px;
}
.global-menu.is-fixed {
  display: block;
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  background-color: #f5ede6;
  z-index: 1000;
  color: #009b6a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.global-menu.is-fixed .global-menu-list {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: auto;
}
.global-menu.is-fixed .global-menu-list > li {
  width: auto;
}
.global-menu.is-fixed .global-menu-list > li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.global-menu.is-fixed .global-menu-list > li > a {
  color: #080808;
  font-size: 81.3%;
  padding: .938rem 1rem;
  display: block;
  height: 55px;
}
.global-menu.is-fixed .global-menu-list > li > a:hover {
  color: #fff;
}
.global-menu.is-fixed .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 55px;
  width: 100%;
  max-width: none;
  padding: 0 1rem;
  position: relative;
}

.global-menu.is-fixed ul.global-menu-list>li:not(:last-child)>a::before {
  top: 50%;
  right: 0;
}
@media screen and (min-width: 1181px) {
  .menu-close {
    display: none !important;
  }
}


/* スマホ表示 */
@media screen and (max-width: 1200px) {
  .global-menu {
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    z-index: 1000;
    overflow-y: auto;
    display: none;
  }
  .global-menu .inner {
    flex-direction: column;
  }
  .menu-close {
    position: fixed;
    top: 5px;
    right: 14px;
    font-size: 2rem;
    color: #fff !important;
    background: none;
    border: none;
    z-index: 3000;
    cursor: pointer;
  }

  .global-menu.active {
    display: block;
    /* margin-top: -70px; */
  }

  .global-menu-list {
    position: static;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 50px 0 30px;
    z-index: auto;
  }

  .global-menu-list ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .global-menu-list li {
    width: 100%;
    border: none;
    margin: 0;
    border-bottom: 1px solid #fff;
  }

  .global-menu-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    width: 100%;
    text-decoration: none;
    color: white;
    background: none;
    height: auto;
  }

  .global-menu-list li a {
    justify-content: flex-start;
    padding: 15px 0;
  }

  .global-menu-list a:hover {
    background: initial;
  }

  .global-menu .global-nav-sp {
    display: none;
  }

  .global-menu.active .global-nav-sp {
    display: block;
    margin-top: 1rem;
    color: #fff;
  }

  .submenu-container {
    position: static;
    width: 100%;
    padding: 0;
    background: initial;
  }

  .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu ul {
    display: block;
    padding: 0;
    margin: 0 0 .5rem;
  }

  .submenu li {
    padding: 0 0 12px;
    border: none;
    min-height: auto;
  }

  .submenu li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    background: none;
    padding: 0 0 0 1.5rem;
    border-bottom: none;
    font-size: 87.5%;
  }

  .submenu li a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    background: url('/common/images/arw03.png') no-repeat center;
    background-size: contain;
    left: .5rem;
    top: 5px;
  }

  .global-menu-list .has-submenu > a {
    display: flex;
    position: relative;
    align-items: center;
    padding: 15px 0;
    width:100%
  }

  .global-menu-list .has-submenu > a::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: url('/common/images/arw03.png') no-repeat center;
    background-size: contain;
    margin-left: auto;
    left: initial;
    bottom: initial;
    transform: initial;
    transform-origin: center;
  }
  .submenu li a::after {
    content: none;
    transform: none;
    transition: none;
  }
  .submenu li a svg {
    display: none;
  }
  .submenu li a:hover::after {
    transform: none;
  }

  .submenu li a:hover {
    background: none;
    color: #fff;
  }
  .global-menu-list .has-submenu.open>a::after {
    transform: rotate(90deg);
  }
}


#header{position:sticky;top:0;z-index:100}
.global-menu{position:relative;z-index:200}
.global-menu .logo{position:relative;z-index:201}
.global-menu .logo a{display:inline-flex;align-items:center;pointer-events:auto}
.global-menu .logo img {
  height:40px;
  width:auto
}
.global-menu .logo span img {
  height:auto;
  width:auto
}

.global-menu .inner::before,
.global-menu .inner::after{pointer-events:none}

.submenu-container{pointer-events:none}
.has-submenu:hover .submenu-container,
.has-submenu.open .submenu-container{pointer-events:auto}
#header.is-fixed .logo {
  display: none;
}
@media screen and (max-width:1200px){
  /* .global-menu .logo {
    display:none
  } */
  .global-menu {
    position:fixed;
    inset:0;
    z-index:10000;
    transform:translateY(-100%);
    transition:transform .25s ease;
    height:100dvh;
  }
  .global-menu.active {
    transform:translateY(0)
  }
  .global-menu .inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling:touch
  }
  body.menu_open {
    overflow: hidden
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  width: 100%;
  height: 578px;
  overflow: hidden;
}
.main-visual .inner {
  position: relative;
  z-index: 1;
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.main-visual .inner > div:first-child {
  position: absolute;
  /* flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin: auto 0; */
  z-index: 100;
}
.main-visual .inner > div:first-child img {
  display: block;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .main-visual {
    height: auto;
    margin-top: 1rem;
    padding-bottom: 1rem;
    overflow: visible;
  }
  .main-visual .inner {
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .main-slide-wrapper {
    margin-top: -100px;
    z-index: 2;
    position: relative;
  }
  .slider {
    margin-top: -100px;
    position: relative;
    z-index: 2;
  }
  .main-slide {
    width: calc(100% - 26.4%);
    margin: 0 auto;
  }
  .main-visual .inner > p {
    width: 100%;
    height: 385px;
  }
   .main-visual-bg {
    height: 385px;
  }
  .main-visual-bg-sp {
    position: absolute;
    top: 385px;
    display: block;
    width: 100%;
    height: 400px;
    background: url(/common/images/sp_bg.png) no-repeat center/cover;
    background-size: cover;
  }
}
#slider {
  position: relative;
  width: 100%;
}
#slider img {
  display: block;
  width: 100%;
  height: auto;
}
#sliderSp {
  display: none;
}
@media (max-width: 1180px) {
  #slider {
    display: none;
  }
  #sliderSp {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
  }
  #sliderSp .slick-list,
  #sliderSp .slick-track,
  #sliderSp .slick-slide {
    height: 100%;
  }
  #sliderSp img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#pickup {
  padding: 0 !important;
  margin-bottom: 3rem;
}

#slide_pickup {
  width: 100%;
  margin: auto;
}

@media print, screen and (max-width: 1240px) {
  #slide_pickup {
    position: relative;
    bottom: initial;
    right: 0;
    left: 0;
    width: 90%;
    margin-top: 3rem;
  }
}

#slide_pickup .inner {
  position: relative;
  max-width: 100%;
}
#pickupSlider {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
#pickupSlider .slide_item {
  box-sizing: border-box;
  margin: 0 2rem;
  overflow: hidden;
}
#pickupSlider .slide_item a {
  display: block;
  width: 100%;
}
#pickupSlider .slide_item a {
  display: block;
  width: 100%;
}
#pickupSlider .slide_item img {
  width: 100%;
  height: auto;
}
#pickupSlider .slide_item a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
#pickupSlider .slide_arrow {
	z-index: 9;
	position: absolute;
	top: calc(50% - 15px);
	cursor: pointer;
	border: none;
	background-color: transparent;
}
#pickupSlider .next_arrow {
	right: 2%;
}
#pickupSlider .prev_arrow {
	left: 2%;
}

@media print, screen and (max-width: 1240px) {
  #pickupSlider .slide_item a {margin: auto;
    width: 65%;
  }
  #pickupSlider .next_arrow {
    right: -10%;
  }
  #pickupSlider .prev_arrow {
    left: -10%;
  }
}


.none {
  display: none;
}

.slick-dots li button:hover ,.slick-dots li button:focus ,.slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  display: flex;
  background-color: #fff !important;
  border: 2px solid #009b6a !important;
  display: inline-block;
  vertical-align: middle;
}

/* 緊急情報 */
#emg {
  min-height: 75px;
  margin: 1rem auto 3rem;
}
#emg dl {
  display: flex;
  align-items: flex-start;
  border-radius: 37.5px;
  background: #23a188;
  color: #fff;
  min-height: 75px;
  margin: 0 auto 1rem;
  width: 100%;
  line-height: 1.5;
}
#emg dl dt {
  position: relative;
  min-width: 20rem;
  padding: 26px 0 26px 80px;
  margin-right: 3rem;
}

#emg dl dt::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url('/common/images/emg_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px;
}
#emg dd {
  font-size: 125%;
  padding: 23px;
}
#emg a {
  color: #fff;
}
#emg dl dd span {
  background: #fff;
  border-radius: 50vw;
  color: #23a188;
  font-size: 12px;
  font-weight: 700;
  padding: .1rem .5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1200px) {
  #emg dl {
    display: block;
  }
  #emg dd {
    padding: 0 23px 23px;
  }
}

/* info */
.info-boxes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.info_box {
  width: 270px;
}
.info_box a {
  text-decoration: none;
}
.info_box a div {
  overflow: hidden;
  border-radius: 6px;
}
.info_box a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
.info_box h3 {
  color: #004963;
  font-size: 100%;
  margin: 1rem 0;
}
.info_box a:hover {
  color: #2f1780;
}
.info_box a:hover h3 {
  color: #2f1780;
}

.info_box p {
  font-size: 87.5%;
  color: #000;
}

@media screen and (max-width: 1200px) {

  .info_box,
  .info_box img {
    width: 100%;
  }
}

.important a[href$=".pdf"]::before {
  content: "PDF";
  background: #bb1d67;
}

.important a[href$=".doc"]::before,
.important a[href$=".docx"]::before {
  content: "WORD";
  background: #005d82;
}

.important a[href$=".xls"]::before,
.important a[href$=".xlsx"]::before {
  content: "EXCEL";
  background: #1f8614;
}
.important a[href$=".pdf"]::before,
.important a[href$=".doc"]::before,
.important a[href$=".docx"]::before,
.important a[href$=".xls"]::before,
.important a[href$=".xlsx"]::before {
  display: inline-block;
  vertical-align: top;
  margin: .1rem .5rem 0 0;
  padding: 0.1rem 0.4rem;
  color: #fff;
  font-size: 75%;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
}


/* キーワードから探す */
.search {
  background: #c7e9e2;
}
.search .inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 2rem 0;
}

@media screen and (max-width: 1200px) {
  .search .inner {
    display: block;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.search-label {
  position: relative;
  color: #000;
  font-size: 125%;
  padding-left: 0;
}

.search-label span {
  color: #23a188;
  font-size: 60%;
  margin-left: .5rem;
}

@media screen and (max-width: 1200px) {
  .search-label {
    display: block;
    margin-bottom: 1rem;
  }
}

.search-form {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid #23a188;
  background: #fff;
}

.search-form input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}
#pickup .search-form input, .search.sp .search-form input  {
  width: calc(100% - 50px);
}

.search-form input::placeholder {
  color: #777;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: #23a188;
  cursor: pointer;
}

.search-form button::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #fff;
  -webkit-mask-image: url('/common/images/search.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('/common/images/search.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.pickup-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pickup-card {
  flex: 0 1 calc((100% - 4.5rem) / 4);
  background: #f9f9f9;
  padding: 2.4rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
}
.pickup-card {
  position: relative;
  overflow: hidden;
  flex: 0 1 calc((100% - 4.5rem) / 4);
  background: #f9f9f9;
  padding: 2.4rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.pickup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #fdfee9, #d9fbe7, #d2ebf3);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}

.pickup-card:hover::before {
  transform: scaleX(1);
}

.pickup-card p {
  color: #009b6a;
  text-align: left;
  position: relative;
  padding-left: 54px;
  margin: 0;
  font-size: 112.5%;
  font-weight: 700;
}

.pickup-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
}

.pickup-card:nth-child(1) p::before {
  background-image: url("/common/images/pickup01.png");
  width: 31px;
  height: 33px;
}
.pickup-card:nth-child(2) p::before {
  background-image: url("/common/images/pickup02.png");
}
.pickup-card:nth-child(3) p::before {
  background-image: url("/common/images/pickup03.png");
  height: 26px;
}
.pickup-card:nth-child(4) p::before {
  background-image: url("/common/images/pickup04.png");
  width: 38px;
  height: 26px;
}
.pickup-card:nth-child(5) p::before {
  background-image: url("/common/images/pickup05.png");
  height: 26px;
}
.pickup-card:nth-child(6) p::before {
  background-image: url("/common/images/pickup06.png");
  width: 33px;
  height: 31px;
}
.pickup-card:nth-child(7) p::before {
  background-image: url("/common/images/pickup07.png");
  height: 27px;
}
.pickup-card:nth-child(8) p::before {
  background-image: url("/common/images/pickup08.png");
  width: 30px;
  height: 28px;
}

@media screen and (max-width: 1200px) {
  .pickup-card {
    flex: 0 1 calc((100% - 1.5rem) / 2);
    padding: 1.4rem 1rem;
  }
  .pickup-card p {
    padding-left: 38px;
    font-size: 100%;
    line-height: 1.3;
  }
  .pickup-card p::before {
    width: 27px;
    height: 27px;
  }
  .pickup-card:nth-child(1) p::before {
  width: 26px;
  height: 28px;
  }
  .pickup-card:nth-child(3) p::before {
    height: 21px;
  }
  .pickup-card:nth-child(4) p::before {
    width: 33px;
    height: 21px;
  }
  .pickup-card:nth-child(5) p::before {
    height: 21px;
  }
  .pickup-card:nth-child(6) p::before {
    width: 28px;
    height: 26px;
  }
  .pickup-card:nth-child(7) p::before {
    height: 22px;
  }
  .pickup-card:nth-child(8) p::before {
    width: 25px;
    height: 23px;
  }
}

.philosophy {
  background: url("/common/images/philosophy_bg.jpg") no-repeat center/cover;
  padding: 4rem 1rem;
  color: #333;
}

.philosophy .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.philosophy .inner > * {
  width: 46%;
  box-sizing: border-box;
}
.philosophy .inner > .philosophy-list {
  width: 54%;
}
.philosophy-heading .circle {
  background: #fff;
  border-radius: 50%;
  width: 135px;
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
}

.philosophy-heading .circle img {
  width: 41px;
  margin-bottom: 0.5rem;
}

.philosophy-heading .circle h2 {
  font-size: 112.5%;
  font-weight: 700;
  color: #009b6a;
  letter-spacing: 0.3rem;
}
.philosophy-heading .circle h2 span {
  color: #ef7c00;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.philosophy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 112.5%;
  font-weight: 700;
  line-height: 1.5;
  color: #009b6a;
}

.philosophy-list .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #009b6a;
  color: #fff;
  font-size: 125%;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .philosophy .inner {
    flex-direction: column;
    text-align: center;
  }
  .philosophy .inner > *, .philosophy .inner > .philosophy-list {
    width: 100%;
  }
  .philosophy-heading .circle {
    margin-bottom: 2rem;
  }
  .philosophy-list li {
    justify-content: left;
    text-align: left;
  }
}

/* タブ */
#tabsSection {
  margin-bottom: 3rem;
}
.tabs-bg {
  background-color: #009b6a;
  border-bottom: 4px solid #007a54;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 4px solid #007a54;
}
.tabs-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tabs-header {
  position: relative;
  background-image: none !important;
  padding-top: 50px;
}
.tabs-header::before,
.tabs-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc((100% - 1200px) / 2);
  height: 3px;
  background-color: rgba(133, 194, 174, 1);
}
@media (max-width: 1200px) {
  .tabs-header::before,
  .tabs-header::after {
    width: 1.25rem;
  }
}
.tabs-header::before {
  left: 0;
}
.tabs-header::after {
  right: 0;
}
.tabs-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.tabs li {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 1rem;
  margin-right: 5px;
  color: #a3decb;
  cursor: pointer;
  border: 3px solid #85c2ae;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media (max-width: 1200px) {
  .tabs li {
    font-size: 12px;
    padding: .5rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.tabs li:last-child {
  margin-right: 0;
}
.tabs li.active {
  border-bottom: 3px solid transparent;
  color: #fff;
}
.tabs li:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -8px;
  width: 5px;
  height: 3px;
  background-color: #85c2ae;
}
.tabs li:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -8px;
  width: 5px;
  height: 3px;
  background-color: #85c2ae;
}

.tabs-content {
  padding: 2rem 0;
  margin-bottom: 1rem;
  color: #fff;
  min-height: 390px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

.facility-list {
  padding: 0;
}

.facility-list .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-heading {
  font-size: 1.25rem;
  color: #fff;
  margin: 1rem 0 .2rem;
  letter-spacing: .4rem;
}

.facility-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.facility-list li {
  flex: 0 0 calc((100% - (13px * 4)) / 5);
  box-sizing: border-box;
}

.facility-list li span:first-child {
  display: block;
  font-size: 12px;
  line-height: 1;
}
.facility-list li span.f12 {
  display: inline;
  font-size: 12px;
}

.facility-list li a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}
.facility-list li a:hover {
  opacity: .8;
}

.facility_sub {
  display: flex;
  gap: 13px;
}

.facility-list .facility_02 {
  flex: 0 0 calc(((100% - (13px * 4)) / 5 * 3) + (13px * 2));
}

.facility-list .facility_03 {
  flex: 0 0 calc(((100% - (13px * 4)) / 5 * 2) + 13px);
}

.facility_02 ul,
.facility_03 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.facility_02 li {
  flex: 0 0 calc((100% - (13px * 2)) / 3);
}

.facility_03 li {
  flex: 0 0 calc((100% - 13px) / 2);
}

.facility-list .inline {
  display: inline;
}
.facility-list .ls-2 {
  letter-spacing: -.02rem;
}
@media (max-width: 1200px) {
  .facility-list li,
  .facility_02 li,
  .facility_03 li {
    flex: 0 0 calc((100% - 13px) / 2);
  }
  .facility-list .facility_02,
  .facility-list .facility_03 {
    flex: 0 0 calc((100% - 13px) / 2);
  }
  .facility_sub {
    flex-direction: column;
  }
  .facility-list .inner {
    padding: 0;
  }
  .facility-list ul {
    gap: 10px;
  }
}

.guide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2.5rem;
}
.guide-card {
  flex: 1 1 calc(50% - 10px);
  background: #fff;
  text-decoration: none;
  color: #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.guide_img {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.guide_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.guide-card:hover .guide_img img {
  transform: scale(1.1);
}

.guide-card p {
  text-align: center;
  margin: 0;
}
.guide-card p:last-child {
  padding-top: 1rem;
  font-weight: 700;
}
.guide-card:hover p:last-child {
  color: #000;
}

@media (max-width: 1200px) {
  .guide-card {
    flex: 1 1 100%;
  }
}
.recruit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 2.5rem;
}

.recruit-card {
  flex: 0 0 calc((100% - (13px * 4)) / 5);
  background: #fff;
  text-decoration: none;
  color: #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.recruit_img {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.recruit_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.recruit-card:hover .recruit_img img {
  transform: scale(1.1);
}

.recruit-card p {
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .recruit-card {
    flex: 0 0 calc((100% - 13px) / 2);
  }
}

#menu {
  padding: 2rem 0;
  background: #fbf8f5;
}

#menu .inner {
  display: flex;
  gap: 20px;
}

#menu .pickup_menu {
  width: 200px;
}
#menu .pickup_menu h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 112.5%;
  font-weight: 700;
  color: #009b6a;
  position: relative;
  margin-bottom: 2rem;
  padding-top: 42px;
}
#menu .pickup_menu h2 span::first-letter {
  color: #ef7c00 !important;
}
#menu .pickup_menu h2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/common/images/menu_icon.png");
}
#menu .pickup_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#menu .pickup_menu li {
  margin-bottom: 1.5rem;
}

#menu .pickup_menu a {
  position: relative;
  display: flex;
  align-items: center;
  color: #080808;
  text-decoration: none;
  font-weight: 700;
  padding-left: 42px;
}

#menu .pickup_menu a:hover {
  color: #ef7c00;
}

#menu .pickup_menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#menu .pickup_menu ul li:nth-child(1) a::before {
  left: 6px;
  width: 19px;
  height: 25px;
  background-image: url(/common/images/gnavi_icon01.png);
}
#menu .pickup_menu ul li:nth-child(2) a::before {
  left: 3px;
  width: 26px;
  height: 25px;
  background-image: url(/common/images/gnavi_icon02.png);
}
#menu .pickup_menu ul li:nth-child(3) a::before {
  left: 0;
  width: 32px;
  height: 22px;
  background-image: url(/common/images/gnavi_icon03.png);
}
#menu .pickup_menu ul li:nth-child(4) a::before {
  left: 4px;
  width: 24px;
  height: 23px;
  background-image: url(/common/images/gnavi_icon04.png);
}
#menu .pickup_menu ul li:nth-child(5) a::before {
  left: 8px;
  width: 16px;
  height: 24px;
  background-image: url(/common/images/gnavi_icon05.png);
}
#menu .pickup_menu ul li:nth-child(6) a::before {
  left: 7px;
  width: 18px;
  height: 22px;
  background-image: url(/common/images/gnavi_icon06.png);
}
#menu .pickup_menu ul li:nth-child(7) a::before {
  left: 5px;
  width: 21px;
  height: 17px;
  background-image: url(/common/images/header_icon01.png);
}
#menu .pickup_menu ul li:nth-child(8) a::before {
  left: 8px;
  width: 16px;
  height: 18px;
  background-image: url(/common/images/header_icon02.png);
}
#menu .pickup_menu ul li:nth-child(9) a::before {
  left: 10px;
  width: 12px;
  height: 26px;
  background-image: url(/common/images/header_icon03.png);
}

#menu .facility_area {
  width: 960px;
}

#menu .facility_area h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 112.5%;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-top: 42px;
  text-align: center;
  position: relative;
}
#menu .facility_area h2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 41px;
  height: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/common/images/facility_icon.png");
}

#menu .facility_area h2 span {
  color: #009b6a;
}
#menu .facility_area h2 {
  color: #ef7c00;
}

#menu .facility_block {
  margin-bottom: 2rem;
}

#menu .area {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
#menu .area_asahikawa,
#menu .area_biei,
#menu .area_takikawa {
  color: #009b6a;
}

#menu .facility_block ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu .facility_block li a:hover {
  opacity: .8;
}

@media (max-width: 1200px) {  
  #page-main #menu {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  #menu .inner {
    flex-direction: column;
  }
  #menu .pickup_menu,
  #menu .facility_area {
    width: 100%;
  }
  #menu .facility_block ul {
    grid-template-columns: repeat(2, 1fr);
  }
}


#banner {
  margin-bottom: 4rem;
  padding-top: 3rem;
}

#banner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
}

#banner ul li {
  width: calc((100% - 4rem) / 5);
  margin: 0;
}

#banner ul li img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1200px) {
  #banner {
    margin-bottom: 2rem;
  }
  #banner ul {
    gap: 1rem 0.5rem;
  }
  #banner ul li {
    width: calc((100% - 0.5rem) / 2);
  }
}

/* お知らせ */
#info {
  padding: 2rem 0;
}
#info h2 {
  position: relative;
  color: #009b6a;
  font-size: 112.5%;
  margin-bottom: 2.5rem;
  padding-left: 38px;
}
#info h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 28px;
  background-image: url('/common/images/news_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
#info .inner {
  display: flex;
  justify-content: space-between;
}

#info .info_main {
  width: 860px;
}

#info .info_nav {
  width: 290px;
}

#info .news_item {
  display: flex;
  gap: 30px;
  margin-bottom: 1.5rem;
}
#info .news_item_link {
  display: block;
  color: inherit;
  text-decoration: none;
}
#info .news_item_link:hover {
  opacity: 0.8;
}

#info .news_img {
  width: 200px;
  flex-shrink: 0;
  width: 165px;
  height: 106px;
  overflow: hidden;
  border-radius: 8px;
}

#info .news_img img {
  width:100%;
  height:100%!important;
  max-width:none;
  object-fit:cover;
  object-position:center;
  display:block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

#info .news_item_link:hover .news_img img {
  transform: scale(1.1);
}
#info .news_text h3 {
  font-size: 87.5%;
  font-weight: 700;
  margin: 0;
  color: #125690;
  text-decoration: underline;
}

#info .news_text p {
  font-size: 87.5%;
  color: #555;
  letter-spacing: 0;
}

#info .news_head {
  display: flex;
  align-items: center;
  gap: .5rem;
}

#info .news_date {
  font-size: 87.5%;
  color: #666;
  margin-right: 0.5rem;
}
#info .news_item .news_text .news_date {
  display: inline-block;
}

#info .info_main .info_newstext_green,
#info .info_main .info_newstext_gray,
#info .info_main .info_newstext_blue,
#info .info_main .info_newstext_red,
#info .info_main .info_newstext_black {
  display: inline-block;
  color: #fff;
  font-size: 75%;
  padding: 0 0.4rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}
#info .info_main .info_newstext_green {
  background: #009b6a;
}
#info .info_main .info_newstext_gray {
  background: #9e9e9e;
}
#info .info_main .info_newstext_blue {
  background: #115691;
}
#info .info_main .info_newstext_red {
  background: #ac234d;
}
#info .info_main .info_newstext_black {
  background: #000;
}

#info .news_cat {
  display: inline-block;
  background: #009b6a;
  color: #fff;
  font-size: 75%;
  padding: 0 0.4rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}

#info .news_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#info .news_list li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 20px;
}
#info .news_list li::before {
  content: '';
  position: absolute;
  left: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url('/common/images/arw01.png') no-repeat center/contain;
  background-size: cover;
}
#info .news_list a {
  color: #005d82;
  font-size: 87.5%;
  font-weight: 700;
}

#info .news_list a:hover {
  text-decoration: underline;
}

#info .info_nav ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
  background: #d3f0e9;
  border-radius: 12px;
}
#info .info_nav li {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 18px;
}
#info .info_nav li:last-child {
  padding-bottom: 0;
}
#info .info_nav li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image:
    repeating-linear-gradient(to right, #ef7c00 0 3px, transparent 3px 10px),
    repeating-linear-gradient(to right, #009b6a 0 3px, transparent 3px 10px);
  background-size: 36px 3px, 100% 3px;
  background-repeat: no-repeat, repeat;
}
#info .info_nav li:last-child:after {
  background-image: none;
}

#info .info_nav a {
  display: flex;
  align-items: center;
  font-size: 112.5%;
  font-weight: 700;
  color: #009b6a;
  text-decoration: none;
  position: relative;
  padding-left: 60px;
  min-height: 50px;
}
#info .info_nav a span::first-letter {
  color: #ef7c00 !important;
}
#info .info_nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#info .info_nav li:nth-child(1) a::before {
  background-image: url("/common/images/info_side_icon01.png");
}
#info .info_nav li:nth-child(2) a::before {
  background-image: url("/common/images/info_side_icon02.png");
}
#info .info_nav li:nth-child(3) a::before {
  background-image: url("/common/images/info_side_icon03.png");
}
#info .info_nav li:nth-child(4) a::before {
  background-image: url("/common/images/info_side_icon04.png");
}
#info .info_nav li:nth-child(5) a::before {
  background-image: url("/common/images/info_side_icon08.png");
}
#info .info_nav li:nth-child(6) a::before {
  background-image: url("/common/images/info_side_icon05.png");
}
#info .info_nav li:nth-child(7) a::before {
  background-image: url("/common/images/info_side_icon07.png");
}


@media (max-width: 1200px) {
  #info .info_main {
    margin-bottom: 1rem;
  }
  #info .inner {
    flex-direction: column;
  }
  #info .info_main,
  #info .info_nav {
    width: 100%;
  }
  #info .news_item {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  #info .news_item:last-child {
    margin-bottom: 1rem;
  }
  #info .news_img {
    width: auto;
    height: 200px;
  }
  #info .news_list a {
    display: block;
  }
  #info .news_list li::before {
    top: 10px;
    transform: initial;
  }
}



/* フッター */
#footer {
  background-color: #f6ede6;
  background-repeat: repeat-x;
  background-position: left 3px;
}

#footer .logo-area {
  margin: 0 auto 2rem;
  /* width: 152px; */
  justify-content: center;
}
#footer .logo-area h1.logo > a img {
  width: auto;
}
#footer .logo a:first-of-type {
  display: block;
  width: 152px;
  margin: 0 auto 1rem;
}
#footer .logo a:last-of-type {
  display: none;
}

@media screen and (max-width: 1200px) {
  #footer .logo-area .logo {
    display: block;
  }
}
.footer_links {
  margin-bottom: 3rem;
  font-size: 75%;
}

.footer_links ul:first-child {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0;
}
.footer_links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1rem 0 0;
  margin: 0;
}

.footer_links a {
  text-decoration: underline;
  margin-right: .5rem;
  color: #000;
}

.footer_links a:hover {
  text-decoration: none;
}

.footer_links li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: url("/common/images/arw01.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.footer_links .pdf {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding: 0.1rem 0.4rem;
  margin-right: .5rem;
  border-radius: 3px;
  background-color: #bb1d67;
  font-size: 75%;
}
.footer_links li.eme::before {
  content: none;
}
.footer_links .eme a {
  background: #fff;
  border-radius: 3px;
  color: #bb1d67;
  font-size: 125%;
  text-decoration: none;
  padding: 0 .4rem .2rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
}

.address,
.etc {
  font-size: 75%;
}

.address {
  margin-bottom: 2rem;
}

.etc {
  margin-bottom: 5rem;
}

.copyright {
  font-size: 68.8%;
}

#page-top {
  position: fixed;
  right: 60px;
  bottom: 60px;
  display: block;
  z-index: 10;
}

.pagetop_btn a {
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 6px;
  text-align: center;
}

.pagetop_btn a:hover,
.pagetop_btn a:focus {
  opacity: 0.8;
}

/* ▼ 矢印（CSS） */
.arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-top: 4px solid #009b6a;
  border-right: 4px solid #009b6a;
  transform: rotate(-45deg); /* ＞を上向きに */
  margin-top: 10px;
  transition: border-color 0.3s ease;
}

/* ▼ footer上では白く */
.pagetop_btn.white .arrow {
  border-color: #ffffff;
}

/* ▼ メディアクエリ（既存に合わせて） */
@media print,
screen and (max-width: 1200px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }

  .pagetop_btn a {
    width: 40px;
    height: 40px;
    padding-top: 5px;
  }

  .arrow {
    width: 16px;
    height: 16px;
    border-width: 3px;
    margin-top: 8px;
  }
}


/* 初期化 */
.sp, .pc {
  display: none;
}

/* スマホのみ表示 */
@media screen and (max-width: 1200px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

/* PCのみ表示 */
@media screen and (min-width: 1181px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}


p.voice_navi {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.skip {
  position: absolute;
  overflow: hidden;
  width: 0;
  margin: 0;
  padding: 0;
}

a.skip {
  text-align: center;
  padding: 2px 0;
  top: 0;
}

a.skip:active, a.skip:focus {
  display: block;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
  z-index: 3000;
  height: auto;
}

a.skip:active {
  width: 100%;
}

a.skip:focus {
  width: 99.99%;
}

@media screen and (max-width: 1200px) {
  .submenu-container {
    display: none;
  }

  .has-submenu.open .submenu-container {
    display: block;
  }
}

caption {
  display: none;
}

.col_width_01{width: 1% !important;}
.col_width_02{width: 2% !important;}
.col_width_03{width: 3% !important;}
.col_width_04{width: 4% !important;}
.col_width_05{width: 5% !important;}
.col_width_06{width: 6% !important;}
.col_width_07{width: 7% !important;}
.col_width_08{width: 8% !important;}
.col_width_09{width: 9% !important;}
.col_width_10{width: 10% !important;}
.col_width_11{width: 11% !important;}
.col_width_12{width: 12% !important;}
.col_width_13{width: 13% !important;}
.col_width_14{width: 14% !important;}
.col_width_15{width: 15% !important;}
.col_width_16{width: 16% !important;}
.col_width_17{width: 17% !important;}
.col_width_18{width: 18% !important;}
.col_width_19{width: 19% !important;}
.col_width_20{width: 20% !important;}
.col_width_21{width: 21% !important;}
.col_width_22{width: 22% !important;}
.col_width_23{width: 23% !important;}
.col_width_24{width: 24% !important;}
.col_width_25{width: 25% !important;}
.col_width_26{width: 26% !important;}
.col_width_27{width: 27% !important;}
.col_width_28{width: 28% !important;}
.col_width_29{width: 29% !important;}
.col_width_30{width: 30% !important;}
.col_width_31{width: 31% !important;}
.col_width_32{width: 32% !important;}
.col_width_33{width: 33% !important;}
.col_width_34{width: 34% !important;}
.col_width_35{width: 35% !important;}
.col_width_36{width: 36% !important;}
.col_width_37{width: 37% !important;}
.col_width_38{width: 38% !important;}
.col_width_39{width: 39% !important;}
.col_width_40{width: 40% !important;}
.col_width_41{width: 41% !important;}
.col_width_42{width: 42% !important;}
.col_width_43{width: 43% !important;}
.col_width_44{width: 44% !important;}
.col_width_45{width: 45% !important;}
.col_width_46{width: 46% !important;}
.col_width_47{width: 47% !important;}
.col_width_48{width: 48% !important;}
.col_width_49{width: 49% !important;}
.col_width_50{width: 50% !important;}
.col_width_51{width: 51% !important;}
.col_width_52{width: 52% !important;}
.col_width_53{width: 53% !important;}
.col_width_54{width: 54% !important;}
.col_width_55{width: 55% !important;}
.col_width_56{width: 56% !important;}
.col_width_57{width: 57% !important;}
.col_width_58{width: 58% !important;}
.col_width_59{width: 59% !important;}
.col_width_60{width: 60% !important;}
.col_width_61{width: 61% !important;}
.col_width_62{width: 62% !important;}
.col_width_63{width: 63% !important;}
.col_width_64{width: 64% !important;}
.col_width_65{width: 65% !important;}
.col_width_66{width: 66% !important;}
.col_width_67{width: 67% !important;}
.col_width_68{width: 68% !important;}
.col_width_69{width: 69% !important;}
.col_width_70{width: 70% !important;}
.col_width_71{width: 71% !important;}
.col_width_72{width: 72% !important;}
.col_width_73{width: 73% !important;}
.col_width_74{width: 74% !important;}
.col_width_75{width: 75% !important;}
.col_width_76{width: 76% !important;}
.col_width_77{width: 77% !important;}
.col_width_78{width: 78% !important;}
.col_width_79{width: 79% !important;}
.col_width_80{width: 80% !important;}
.col_width_81{width: 81% !important;}
.col_width_82{width: 82% !important;}
.col_width_83{width: 83% !important;}
.col_width_84{width: 84% !important;}
.col_width_85{width: 85% !important;}
.col_width_86{width: 86% !important;}
.col_width_87{width: 87% !important;}
.col_width_88{width: 88% !important;}
.col_width_89{width: 89% !important;}
.col_width_90{width: 90% !important;}
.col_width_91{width: 91% !important;}
.col_width_92{width: 92% !important;}
.col_width_93{width: 93% !important;}
.col_width_94{width: 94% !important;}
.col_width_95{width: 95% !important;}
.col_width_96{width: 96% !important;}
.col_width_97{width: 97% !important;}
.col_width_98{width: 98% !important;}
.col_width_99{width: 99% !important;}

@media screen and (max-width: 1200px) {
  .global-menu .search.sp {
    position: relative;
    z-index: 2001;
    pointer-events: auto;
  }
  .global-menu .search.sp input,
  .global-menu .search.sp button {
    position: relative;
    z-index: 2002;
  }
}


/* =============================================
採用情報
============================================= */

#recruit {

}
#recruit .main-visual {
  margin-bottom: 2rem;
}
#recruit .logo-area {
  align-items: center;
}
#recruit #header.is-fixed .logo-area > a {
  display: none;
}
#recruit .logo-area > a:last-of-type {
  margin-left: 1rem;
  margin-top: 8px;
  background: #00547f;
  padding: .2rem .5rem .2rem .75rem;
  border-radius: 5px;
  letter-spacing: .25rem;
  font-weight: 700;
  color: #fff;
  display: block;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  #recruit .logo-area > a:last-of-type {
  margin-top: 10px;
  }
}

#recruit .global-menu.is-fixed .logo {
  align-items: center;
}
#recruit .global-menu-list > a:hover,
#recruit .global-menu .submenu-container,
#recruit .global-menu-list .has-submenu a:hover,
#recruit .submenu li a::before,
#recruit .global-menu-list > li.submenu-open > a {
  background: #00547f;
}
#recruit .global-menu-list > li > a::before {
  content: none;
}
#recruit .global-menu.is-fixed .logo > a:last-of-type {
  display: block;
  margin-left: 1rem;
  margin-top: 13px;
  background: #00547f;
  padding: .2rem .5rem .2rem .75rem;
  border-radius: 5px;
  letter-spacing: .25rem;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

#recruit #info .info_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  display: grid;
  gap: 16px;
}

#recruit #info .info_nav li {
  margin: 0;
  padding: 0;
  position: relative;
}

#recruit #info .info_nav li::after {
  content: none;
}

#recruit #info .info_nav a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0;
  font-size: 100%;
}
#recruit #info .info_nav a span::first-letter {
  color: inherit !important;
}

#recruit #info .info_nav img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .3s ease;
  z-index: 0;
  margin: 0;
}

#recruit #info .info_nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  transition: opacity .3s ease;
}

#recruit #info .info_nav a:hover::before {
  opacity: 0;
}

#recruit #info .info_nav a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  font-weight: 700;
  text-align: center;
  padding: 0 .5em;
  line-height: 1.4;
  white-space: nowrap;
}
#recruit #info .info_nav a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0;
  padding-left: 0;
}

#recruit #info .info_nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  background-image: none;
  left: 0;
  top: 0;
  transform: none;
  width: auto;
  height: auto;
  transition: opacity .3s ease;
  z-index: 1;
  pointer-events: none;
}

#recruit #info .info_nav a:hover::before {
  opacity: 0;
}

#recruit #info .info_nav a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding: 0 .5em;
}
#recruit #info .info_nav a:hover img {
  transform: scale(1.06);
}

#recruit #menu {
  padding: 2rem 0;
  background: #266d92;
}
#recruit #menu .pickup_menu ul li a::before, #recruit #menu .facility_area h2::before, #recruit #menu .pickup_menu h2::before {
  filter: brightness(0) invert(1);
}
#recruit #menu .pickup_menu a,
#recruit #menu .area_asahikawa,
#recruit #menu .area_biei,
#recruit #menu .area_takikawa,
#recruit #menu .facility_area h2 span,
#recruit #menu .facility_area h2,
#recruit #menu .pickup_menu h2
 {
  color: #fff;
}
#recruit #menu .pickup_menu h2 span::first-letter {
  color: #fff !important;
}

/* フッター */
#recruit #footer {
  background-color: #00547f;
  color: #fff;
}
#recruit #banner {
  background-color: #00547f;
  padding-bottom: 4rem;
  margin-bottom: 0;
}
#recruit #footer .footer_links a {
  color: #fff;
}
#recruit .arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-top: 4px solid #00547f;
  border-right: 4px solid #00547f;
  transform: rotate(-45deg);
  margin-top: 10px;
  transition: border-color 0.3s ease;
}
#recruit #footer .footer_links li::before {
  background: url("/common/images/arw03.png") no-repeat center;
}
#recruit .pagetop_btn.white .arrow {
  border-color: #fff;
}
#recruit .menu-toggle .menu_label {
  color: #306d92;
  background: none;
}

@media screen and (max-width: 1200px) {
  #recruit .global-menu-list > li.submenu-open > a,
  #recruit .global-menu .submenu-container {
    background: initial !important;
  }
  #recruit .logo-area h1.logo > a img {
    width: 185px;
  }
  #recruit .submenu li a::before {
    background: #fff;
  }
#recruit #banner {
    padding-bottom: 2rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 0;
  }
}