@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#242424;
  --pageColor:#3fb8a2;
  --main-color3:#d0f3ed;
  --main-color4:#7fddcd;
  --main-color5:#30bda5;
  --main-color6:#098a74;
  --main-color7:#f7f6e8;
  --main-color9:#1f4889;
  --main-color10:#eaecf5;
  --kiyoshikiColor:#3db6a1;
  --syoseienColor:#8ac88d;
  --hakuaienColor:#f29e78;
  --dayColor:#f09eba;
  --kyotakuColor:#61c3d2;
  --glovalNaviBg:#5cb13d;
  --lightGray1:#bdbdbd;
  --lightGray2:#eeeeee;
  --footerBottom:#323232;
  --accentColor:#e07441;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*左ナビの横幅*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*ストライプ*/
/*--その他--*/
/*文字のデフォルト*/
div.ccm-page p {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
  div.ccm-page p {
    font-size: 0.9em;
    margin-bottom: 0.75em;
  }
}
@media screen and (max-width: 576px) {
  div.ccm-page li {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 576px) {
  div.ccm-page th, div.ccm-page td {
    font-size: 0.9em;
  }
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 576px) {
  .sp-only {
    display: block;
  }
}

/*タブレット2以下のみ表示するクラス*/
.tb2-only {
  display: none;
}
@media screen and (max-width: 800px) {
  .tb2-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 576px) {
  .pc-only {
    display: none;
  }
}

/*編集中のテキストブロックに余白を設ける*/
div.ccm-block-content-edit-inline textarea + div {
  padding: 5px;
}
div.ccm-block-content-edit-inline textarea + div table th, div.ccm-block-content-edit-inline textarea + div table td {
  min-width: 20px;
}

/*--カスタムクラス--*/
/*画像ブロック中央寄せ*/
.text-img-center {
  text-align: center;
}

/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 3%;
}
@media screen and (max-width: 576px) {
  .container-width {
    padding: 0 0;
  }
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 3%;
}
@media screen and (max-width: 576px) {
  .container-width-s {
    padding: 0 0;
  }
}

/*スマートフォンで上下反転*/
@media screen and (max-width: 576px) {
  .sp-column-reverse .row {
    flex-direction: column-reverse;
  }
}

/*PC中央寄せ、スマートフォン左寄せ*/
.pc-center-sp-left p {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .pc-center-sp-left p {
    text-align: left;
  }
}
.pc-center-sp-left div {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .pc-center-sp-left div {
    text-align: left;
  }
}

/*背景色*/
.bg-color {
  background-color: var(--main-color10);
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  .bg-color {
    padding: 10px 5px;
  }
}

.bg-color-gray {
  background-color: #f9f9f9;
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  .bg-color-gray {
    padding: 10px 5px;
  }
}

.bg-color-white {
  background-color: var(--main-color1);
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  .bg-color-white {
    padding: 10px 5px;
  }
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
.scroll-x {
  overflow-x: scroll;
}

table.table_normal {
  white-space: nowrap;
}
table.table_normal th, table.table_normal td {
  border: 1px solid var(--lightGray1);
  padding: 0.5em 0.25em;
  min-width: 5.5em;
}
table.table_normal th {
  background-color: var(--lightGray2);
  font-weight: 600;
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-color1);
  background-color: var(--lightGray2);
  padding: 1em;
}
@media screen and (max-width: 800px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
  }
}
table.table_design01 th {
  background-color: var(--main-color5);
  color: #fff;
  font-weight: 500;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 800px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-color1);
  }
}

/*表デザイン02*/
table.table_design02 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design02 tr th, table.table_design02 tr td {
  background-color: var(--main-color3);
  padding: 0.5em 0.5em;
  border-bottom: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  table.table_design02 tr th, table.table_design02 tr td {
    display: block;
    border: none;
  }
}
table.table_design02 tr th {
  color: var(--main-color6);
  font-weight: 600;
  width: 25%;
  min-width: 150px;
}
@media screen and (max-width: 576px) {
  table.table_design02 tr th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0em;
  }
}
table.table_design02 tr:first-child th, table.table_design02 tr:first-child td {
  border-top: 1px solid var(--lightGray1);
}
@media screen and (max-width: 576px) {
  table.table_design02 tr:first-child th, table.table_design02 tr:first-child td {
    border-top: none;
  }
}
table.table_design02 tr:nth-child(even) th, table.table_design02 tr:nth-child(even) td {
  background-color: var(--main-color1);
}

/*色丸ul*/
ul.color_maru_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.color_maru_ul li {
  position: relative;
  padding-left: 1.1em;
}
ul.color_maru_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--pageColor);
  border-radius: 4px;
}

/*数字ol*/
ol.color_num_ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
}
ol.color_num_ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (max-width: 576px) {
  ol.color_num_ol li {
    font-size: 0.9em;
  }
}
ol.color_num_ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--pageColor);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

/*色の囲み*/
span.color-border-block {
  display: inline-block;
  padding: 0 0.2em 0.05em 0.3em;
  margin-right: 0.3em;
  color: var(--main-color5);
  border: 1px solid var(--main-color5);
  background-color: var(--main-color1);
}

span.color-block {
  display: inline-block;
  padding: 0.5em 0.75em;
  background-color: var(--main-color4);
  color: var(--main-color1);
  font-weight: 500;
  margin-right: 0.5em;
  border-radius: 5px;
}

.yellow_marker {
  background: linear-gradient(transparent 60%, #fae6a0 60%);
}

.margin-pc100-sp50 {
  height: 100px;
}
@media screen and (max-width: 576px) {
  .margin-pc100-sp50 {
    height: 50px;
  }
}

/*--◇グローバルエリア--*/
body {
  overflow-x: hidden;
}

main.main-wrap {
  min-height: 100vh;
}
@media screen and (max-width: 576px) {
  main.main-wrap {
    overflow-x: hidden;
  }
}

main.left-main-wrap { /*各事業所ページ*/
  position: relative;
  width: 100%;
  max-width: calc(100% - 250px);
  margin-left: 250px;
  min-height: 100vh;
  overflow-x: hidden;
}
@media screen and (max-width: 1025px) {
  main.left-main-wrap {
    max-width: 100%;
    margin-left: 0;
  }
}

main.left-main-wrap + footer {
  max-width: calc(100% - 250px);
  margin-left: 250px;
}
@media screen and (max-width: 1025px) {
  main.left-main-wrap + footer {
    max-width: 100%;
    margin-left: 0;
  }
}

.ccm-edit-mode header#org {
  margin-top: 50px;
}

header#org {
  overflow-x: hidden;
}
header#org #header-wrap { /*ここにjsでviewを付与*/
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 100;
  transition: all 0.2s;
  pointer-events: none;
}
header#org #header-wrap.left-header-wrap { /*左のナビがある時のみ*/
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap.left-header-wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    overflow-y: scroll;
  }
}
header#org #header-wrap #header-navi { /*この子要素に.gloval-nav*/
  position: relative;
  width: 100%;
  height: auto;
  pointer-events: all;
  z-index: 1;
}
header#org #header-wrap #header-navi::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color3);
  opacity: 0.35;
  z-index: -1;
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap #header-navi::before {
    display: none;
  }
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap #header-navi {
    pointer-events: none;
  }
}
header#org #header-wrap #header-left-nav { /*この子要素に.subpage-nav*/
  width: 100%;
  height: 100%;
  max-width: 250px;
  pointer-events: all;
  background-color: var(--pageColor);
  border-right: 1px solid var(--lightGray2);
  scrollbar-width: thin;
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap #header-left-nav {
    border-right: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    pointer-events: none;
  }
}
header#org #header-wrap.view {
  background-color: var(--kiyoshikiColor);
  pointer-events: all;
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap.view {
    opacity: 1;
  }
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap.view #header-navi {
    pointer-events: all;
  }
}
@media screen and (max-width: 1025px) {
  header#org #header-wrap.view #header-left-nav {
    pointer-events: all;
  }
}

.gloval-nav { /*グローバルナビ*/
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  .gloval-nav {
    display: block;
    margin: 0 10%;
  }
}
.gloval-nav .main-box {
  display: grid;
  align-items: center;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 80px;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .main-box {
    display: block;
  }
}
.gloval-nav .main-box .logo-box {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 0.5em;
  background-color: var(--main-color1);
}
@media screen and (max-width: 1025px) {
  .gloval-nav .main-box .logo-box {
    padding-left: 0;
  }
}
.gloval-nav .main-box .logo-box img {
  max-height: 80px;
}
.gloval-nav .main-box .facilities-box ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .main-box .facilities-box ul {
    display: block;
    padding-left: 0;
  }
}
.gloval-nav .main-box .facilities-box ul li {
  margin-right: 0.5em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .main-box .facilities-box ul li {
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--main-color1);
  }
}
.gloval-nav .main-box .facilities-box ul li a {
  display: inline-block;
  padding: 0.25em 1em;
  border-radius: 1em;
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color1);
  background-color: var(--syoseienColor);
  white-space: nowrap;
  transition: all 0.2s;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .main-box .facilities-box ul li a {
    display: block;
    padding: 0.75em 1em 0.75em 1.25em;
    border-radius: 0;
  }
}
.gloval-nav .main-box .facilities-box ul li a.hakuai {
  background-color: var(--hakuaienColor);
}
.gloval-nav .main-box .facilities-box ul li a.day {
  background-color: var(--dayColor);
}
.gloval-nav .main-box .facilities-box ul li a.kyotaku {
  background-color: var(--kyotakuColor);
}
.gloval-nav .main-box .facilities-box ul li a:hover {
  background-color: var(--kiyoshikiColor);
}
.gloval-nav .other-box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .other-box {
    display: block;
  }
}
.gloval-nav .other-box ul {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .other-box ul {
    display: block;
  }
}
.gloval-nav .other-box ul li {
  margin-right: 0.6em;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .other-box ul li {
    border-bottom: 1px solid var(--main-color1);
    margin-right: 0;
  }
}
.gloval-nav .other-box ul li a {
  white-space: nowrap;
  color: var(--main-color6);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .other-box ul li a {
    display: block;
    color: var(--main-color1);
    padding: 0.75em 1em 0.75em 1.25em;
  }
}
.gloval-nav .other-box ul li a:hover {
  color: var(--accentColor);
}
.gloval-nav .other-box a.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--main-color6);
  width: 10em;
  height: 80px;
  background-color: var(--main-color1);
  transform: 0.3s color;
}
.gloval-nav .other-box a.contact:hover {
  color: var(--accentColor);
}
@media screen and (max-width: 1025px) {
  .gloval-nav .other-box a.contact {
    font-size: 0.9em;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 0.75em 1em 0.75em 1.25em;
    color: var(--main-color1);
    background-color: transparent;
    border-bottom: 1px solid var(--main-color1);
  }
}
.gloval-nav .other-box a.contact i {
  font-size: 1.5em;
}
@media screen and (max-width: 1025px) {
  .gloval-nav .other-box a.contact i {
    display: none;
  }
}

#subpage-nav { /*サブページのナビ*/
  height: auto;
  background-color: var(--pageColor);
}
@media screen and (max-width: 1025px) {
  #subpage-nav {
    margin: 0 10%;
  }
}
#subpage-nav .facility-img-box {
  padding-top: 10px;
  background-color: var(--pageColor);
}
@media screen and (max-width: 1025px) {
  #subpage-nav .facility-img-box {
    background-color: var(--main-color1);
    padding-top: 0px;
  }
}
#subpage-nav > ul {
  font-size: 1.05em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 1025px) {
  #subpage-nav > ul {
    margin-bottom: 0;
  }
}
#subpage-nav > ul > li {
  border-bottom: 1px solid var(--main-color1);
}
#subpage-nav > ul > li a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--main-color1);
  font-weight: 450;
  padding: 0.75em 1em 0.75em 1.25em;
  transition: all 0.3s;
}
@media screen and (max-width: 1025px) {
  #subpage-nav > ul > li a {
    padding: 0.55em 1em;
  }
}
#subpage-nav > ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color5);
}
#subpage-nav > ul > li a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 50%;
  right: 0.8em;
  color: var(--main-color1);
  font-size: 0.85rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1025px) {
  #subpage-nav > ul > li a::after {
    display: none;
  }
}

/*ハンバーガーメニュー（jsにて切り替え）*/
.hamburger-wrap {
  display: none;
  position: static;
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.09)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.12));
}
@media screen and (max-width: 1025px) {
  .hamburger-wrap {
    position: fixed;
    display: block;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-color: transparent;
    caret-color: transparent;
    cursor: pointer;
    background-color: var(--pageColor);
    z-index: 100;
  }
  .hamburger-wrap span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: var(--main-color1);
    width: 45%;
  }
  .hamburger-wrap span:nth-child(1) {
    top: 15px;
  }
  .hamburger-wrap span:nth-child(2) {
    top: 23px;
  }
  .hamburger-wrap span:nth-child(3) {
    top: 31px;
  }
  .hamburger-wrap.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .hamburger-wrap.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-wrap.active span:nth-child(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

/*フッター*/
.footer-wrap {
  background-color: #f5f3ef;
}
@media screen and (max-width: 1025px) {
  .footer-wrap {
    padding-left: 0;
  }
}
.footer-wrap .footer-grid-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  padding: 50px 5%;
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .footer-wrap .footer-grid-area {
    grid-template-columns: 1fr;
    padding: 50px 3%;
  }
}
.footer-wrap .footer-bottom {
  text-align: center;
  font-size: 0.8em;
  padding: 1em 0.5em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: var(--main-color1);
  background-color: var(--footerBottom);
}
@media screen and (max-width: 576px) {
  .footer-wrap .footer-bottom {
    padding-bottom: 3.5em;
  }
}

.sitemap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.sitemap ul {
  list-style: none;
  padding-left: 0;
}
.sitemap ul li {
  margin-bottom: 0.25em;
}
.sitemap ul li a {
  font-size: 0.95em;
  color: var(--main-color9);
  transition: color 0.2s;
}
.sitemap ul li a:hover {
  color: var(--main-color5);
}
.sitemap ul li a img {
  max-height: 70px;
}

#back-to-top .hw-back-to-top {
  bottom: 10px;
  right: 10px;
}
#back-to-top .hw-back-to-top i {
  left: 6px;
}

/*見出し*/
.ccm-page .page-h {
  padding-top: 150px;
}
@media screen and (max-width: 1025px) {
  .ccm-page .page-h {
    padding-top: 50px;
  }
}
.ccm-page .page-h h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
  .ccm-page .page-h h1 {
    font-size: 2.5rem;
  }
}
.ccm-page .page-h h1.facility {
  font-size: 2.5rem;
}
@media screen and (max-width: 576px) {
  .ccm-page .page-h h1.facility {
    font-size: 2rem;
  }
}
.ccm-page .page-h span {
  display: block;
  font-size: 1rem;
  font-family: "Outfit", "Roboto";
  font-weight: 600;
  color: var(--main-color5);
  margin-bottom: 0.5em;
}

.ccm-page h2 {
  position: relative;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 3px solid var(--lightGray1);
  margin-bottom: 0.6em;
}
@media screen and (max-width: 576px) {
  .ccm-page h2 {
    font-size: 1.45em;
  }
}
.ccm-page h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 35%;
  height: 3px;
  background-color: var(--main-color5);
}

.ccm-page h3 {
  position: relative;
  color: var(--accentColor);
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: "Outfit", "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .ccm-page h3 {
    font-size: 1.15em;
  }
}

.ccm-page h4 {
  border-left: 8px solid var(--pageColor);
  padding-left: 0.4em;
  margin-bottom: 0.6em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .ccm-page h4 {
    font-size: 1.1em;
  }
}

.ccm-page h5 {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color5);
  margin-bottom: 0.2em;
}
@media screen and (max-width: 576px) {
  .ccm-page h5 {
    font-size: 1.1em;
  }
}

.ccm-page h6 {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 576px) {
  .ccm-page h6 {
    font-size: 1em;
  }
}

.center-h {
  margin-bottom: 2.5em;
}
.center-h .jp {
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 576px) {
  .center-h .jp {
    font-size: 1.2em;
  }
}
.center-h .bar {
  position: relative;
  width: 80px;
  height: 5px;
  background-color: var(--main-color4);
  margin: 0 auto;
}
.center-h .bar::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  background-color: var(--main-color5);
  top: 0;
  left: 0;
}

/*webボタン*/
div.ccm-page a.web-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  min-width: 200px;
  border: solid 2px var(--accentColor);
  padding: 0.35em 1.5em 0.4em 1.5em;
  color: var(--main-color1);
  background-color: var(--accentColor);
  font-weight: 600;
  border-radius: 1.5em;
  transition: all 0.2s;
}
div.ccm-page a.web-btn:hover {
  color: var(--main-color2);
  background-color: var(--lightGray2);
  border-color: var(--lightGray1);
}

div.ccm-page a.web-btn2 {
  position: relative;
  display: inline-block;
  text-align: left;
  min-width: 150px;
  padding: 0.55em 1.9em 0.55em 0.85em;
  background-color: var(--main-color1);
  color: var(--main-color2);
  border: 2px solid var(--main-color6);
  transition: all 0.2s;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  div.ccm-page a.web-btn2 {
    font-size: 0.9em;
  }
}
div.ccm-page a.web-btn2::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 55%;
  right: 0.55em;
  color: var(--main-color2);
  font-size: 0.85rem;
  transform: translateY(-50%);
}
div.ccm-page a.web-btn2:hover {
  background-color: var(--main-color6);
  color: var(--main-color1);
}
div.ccm-page a.web-btn2:hover::after {
  color: var(--main-color1);
}

/*トップページ*/
.top-h {
  margin-bottom: 2em;
}
@media screen and (max-width: 576px) {
  .top-h {
    margin-bottom: 1.5em;
  }
}
.top-h h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.2em;
  border-bottom: none;
}
@media screen and (max-width: 576px) {
  .top-h h2 {
    font-size: 1.7em;
  }
}
.top-h h2::after {
  display: none;
}
.top-h .eng {
  text-align: center;
  font-family: "Outfit", "FRoboto";
  color: var(--pageColor);
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

section#mv {
  position: relative;
  width: 100%;
  border-bottom: 2px solid var(--main-color5);
  background-color: #bcf1f3;
  aspect-ratio: 16/9;
  max-height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  section#mv {
    max-height: none;
    overflow: visible;
  }
}
@media screen and (max-width: 800px) {
  section#mv {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 576px) {
  section#mv {
    margin-bottom: 20px;
  }
}
section#mv .catch-copy {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 900px;
  max-width: 45%;
}
@media screen and (max-width: 1025px) {
  section#mv .catch-copy {
    max-width: 50%;
  }
}
@media screen and (max-width: 800px) {
  section#mv .catch-copy {
    left: 2%;
    bottom: 10%;
    max-width: 75%;
  }
}
section#mv .catch-copy .mask {
  position: relative;
  opacity: 0;
}
section#mv .catch-copy .mask.fade_start {
  animation: 5000ms linear fadeAnimeText;
}
section#mv .catch-copy .mask.fade_start2 {
  animation: 5000ms linear fadeAnimeText2;
}
section#mv .catch-copy .mask img {
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.09)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.12));
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.15)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.25));
}
section#mv {
  /* ズーム & スライド調整 */
}
section#mv .splide__slide img {
  height: auto;
  width: 100%;
  transition: 8s ease-out;
}
section#mv .splide__slide.is-active img {
  transform: scale(1.15);
  transition-delay: 0s;
}
section#mv {
  /*リンクボタン*/
}
section#mv .aboutus-box {
  display: inline-block;
  position: absolute;
  bottom: 1.5em;
  right: 2%;
}
@media screen and (max-width: 576px) {
  section#mv .aboutus-box {
    bottom: -0.9em;
  }
}
section#mv .aboutus-box a {
  border: 2px solid var(--main-color5);
  background-color: var(--main-color1);
  border-radius: 10px;
  padding: 0.5em 1em;
  color: var(--main-color5);
  font-size: 1.1em;
  font-weight: 550;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  section#mv .aboutus-box a {
    font-size: 0.9em;
  }
}
section#mv .aboutus-box a:hover {
  background-color: var(--main-color5);
  color: var(--main-color1);
}

@keyframes fadeAnimeText {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeAnimeText2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.sticky-container .main-header {
  position: sticky;
  top: 15%;
}
@media screen and (max-width: 800px) {
  .sticky-container .main-header {
    top: 50px;
  }
}
.sticky-container .main-content {
  padding-left: 5%;
}
@media screen and (max-width: 800px) {
  .sticky-container .main-content {
    padding-left: 0;
  }
}

#aboutus-area {
  width: 100%;
  margin-bottom: 1.5em;
}
#aboutus-area .text-box {
  width: 100%;
}
#aboutus-area .text-box .message {
  font-size: 1.7em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  #aboutus-area .text-box .message {
    font-size: 1.6em;
  }
}

#aboutus-text p {
  font-size: 1.1em;
  font-weight: 450;
  letter-spacing: 0.06em;
  line-height: 2.2;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 800px) {
  #aboutus-text p {
    font-size: 0.95em;
    margin-bottom: 0.4em;
  }
}

/*施設紹介*/
.facility-area {
  padding: 20px 3% 40px 3%;
}
.facility-area .grid-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3%;
}
.facility-area .grid-box a.item {
  display: block;
  width: 100%;
}
.facility-area .grid-box a.item:hover .mask .img {
  transform: scale(1.15);
  opacity: 0.75;
}
.facility-area .grid-box a.item .mask {
  background-color: var(--main-color9);
  aspect-ratio: 16/9;
  overflow: hidden;
}
.facility-area .grid-box a.item .mask .img {
  width: 100%;
  height: 100%;
  background-image: url();
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.facility-area .grid-box a.item .name {
  background-color: var(--main-color5);
  text-align: center;
}

/*トップページのお知らせ*/
ul.top-page-handle-name {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
ul.top-page-handle-name li {
  border-bottom: 1px solid var(--lightGray1);
}
ul.top-page-handle-name li:last-child {
  border-bottom: none;
}
ul.top-page-handle-name li a {
  display: flex;
  padding: 1em 0.2em;
  color: var(--main-color2);
}
@media screen and (max-width: 800px) {
  ul.top-page-handle-name li a {
    flex-wrap: wrap;
  }
}
ul.top-page-handle-name li a:hover {
  background-color: var(--main-color3);
  color: var(--main-color6);
}
ul.top-page-handle-name li a .date {
  white-space: nowrap;
}
ul.top-page-handle-name li a .handle {
  width: 11.5em;
  text-align: center;
  padding: 0 0.5em;
}
ul.top-page-handle-name li a .handle > div {
  display: inline-block;
  color: var(--main-color1);
  background-color: var(--kiyoshikiColor);
  padding: 0.15em 1em 0.2em 1em;
  border-radius: 1.5em;
  font-size: 0.95em;
}
ul.top-page-handle-name li a .handle > div.syoseien {
  background-color: var(--syoseienColor);
}
ul.top-page-handle-name li a .handle > div.hakuaien {
  background-color: var(--hakuaienColor);
}
ul.top-page-handle-name li a .handle > div.day {
  background-color: var(--dayColor);
}
ul.top-page-handle-name li a .handle > div.kyotaku {
  background-color: var(--kyotakuColor);
}
ul.top-page-handle-name li a .handle.topic > div.oshirase {
  background-color: var(--main-color5);
}
ul.top-page-handle-name li a .handle.topic > div.staffblog {
  background-color: var(--main-color9);
}
ul.top-page-handle-name li a .handle.topic > div.sonota {
  background-color: var(--lightGray1);
}
@media screen and (max-width: 800px) {
  ul.top-page-handle-name li a .name {
    width: 100%;
  }
}

/*topの採用情報*/
.recruit-top > div.ccm-layout-column-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .recruit-top > div.ccm-layout-column-wrapper {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 800px) {
  .recruit-top > div.ccm-layout-column-wrapper > div.ccm-layout-column {
    float: none;
    width: 100% !important;
  }
}

.recruit-slider-box {
  width: 100%;
  height: auto;
  overflow-y: hidden;
  aspect-ratio: 16/11;
}
@media screen and (max-width: 1600px) {
  .recruit-slider-box {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1025px) {
  .recruit-slider-box {
    aspect-ratio: 1/1.2;
  }
}
@media screen and (max-width: 800px) {
  .recruit-slider-box {
    aspect-ratio: 16/9;
  }
}

.recruit-message {
  padding: 10px 5% 5px 5%;
}
@media screen and (max-width: 800px) {
  .recruit-message {
    padding: 50px 5% 40px 5%;
  }
}
.recruit-message .catch-message {
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .recruit-message .catch-message {
    padding: 1em 0;
  }
}
.recruit-message p {
  max-width: 450px;
  margin: 0 auto;
}

/*--ページリストブロック、ページテンプレート（Dates）--*/
.date_topic_name_list {
  padding: 0 1em 20px 1em;
  margin-bottom: 20px;
  display: block;
  border-bottom: 1px dotted var(--lightGray2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.date_topic_name_list .item {
  width: 100%;
}
.date_topic_name_list a {
  display: block;
  width: 100%;
  padding: 0 5px;
}
@media screen and (max-width: 576px) {
  .date_topic_name_list a {
    display: block;
    padding: 0 0px;
  }
}
.date_topic_name_list a .date {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}
.date_topic_name_list a .name {
  color: var(--main-color2);
  transition: all 0.2s;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .date_topic_name_list a .name {
    margin-top: 5px;
    font-size: 0.9em;
  }
}
.date_topic_name_list a:hover {
  background-color: var(--main-color6) !important;
}
.date_topic_name_list a:hover .name {
  color: var(--main-color5);
}

/*--SimpleGalleryブロック、ページテンプレート（altview）--*/
.simple-gallery-text {
  color: var(--main-color2);
}

/*◇サブページ、子ページ*/
/*パンくずリスト（スタック）*/
#subpage-bread {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  #subpage-bread {
    margin-top: 5px;
    margin-bottom: 20px;
  }
}
#subpage-bread ol {
  justify-content: flex-end;
}
#subpage-bread ol li {
  font-size: 0.9em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 576px) {
  #subpage-bread ol li {
    font-size: 0.8em;
  }
}
#subpage-bread ol li a {
  color: var(--main-color5);
}
#subpage-bread ol li a:hover {
  color: var(--main-color3);
}

.block-border-bottom {
  border-bottom: 1px solid var(--lightGray1);
  margin-bottom: 10px;
}

#tb-sp-logo {
  display: none;
}
@media screen and (max-width: 1025px) {
  #tb-sp-logo {
    display: block;
    height: 80px;
    text-align: left;
    border-top: 5px solid var(--pageColor);
  }
}
#tb-sp-logo > a > img {
  height: 100%;
}

/*法人理念*/
.philosophy p {
  margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}
.philosophy ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
  margin-bottom: 0;
}
.philosophy ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 1em;
}
@media screen and (max-width: 576px) {
  .philosophy ol li {
    font-size: 1em;
  }
}
.philosophy ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--main-color9);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

/*◇サブページ各事業所トップ*/
#subpage-mv {
  position: relative;
  background-color: var(--main-color1);
  overflow: hidden;
  text-align: center;
}
#subpage-mv #curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color1);
  animation: 0.6s ease-in-out 1.1s forwards subpage-mv-curtain;
}
#subpage-mv #curtain2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pageColor);
  animation: 0.55s ease-in-out 1.25s forwards subpage-mv-curtain;
}
#subpage-mv #subpage-mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 300px;
  transform: translate(-50%, -50%);
  animation: 0.25s ease-in-out 1s forwards subpage-mv-logo;
}

@keyframes subpage-mv-logo {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes subpage-mv-curtain {
  0% {
    width: 100%;
  }
  80% {
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}
/*トピックリストブロック*/
.topic-list-hrs-org ul.ccm-block-topic-list-page-topics {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.topic-list-hrs-org ul.ccm-block-topic-list-page-topics li {
  font-size: 0.85em;
  background-color: var(--lightGray2);
  border: 1px solid var(--lightGray1);
  padding: 0.2em 0.5em 0.25em 0.5em;
  border-radius: 3px;
  letter-spacing: 0;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

/*お問い合わせスタック*/
.contact-box {
  padding: 30px 2%;
  border: 1px solid var(--lightGray1);
  background-color: var(--main-color1);
  max-width: 700px;
  margin: 0 auto;
}
.contact-box .title {
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
.contact-box .flex-box {
  display: flex;
  align-items: center;
}
.contact-box .flex-box > div {
  width: 50%;
  padding: 5px 3%;
  text-align: center;
}
.contact-box .flex-box .item-tel a {
  color: var(--main-color6);
}
.contact-box .flex-box .item-mail {
  border-left: 1px solid var(--lightGray1);
}
.contact-box .flex-box .item-mail a {
  color: var(--accentColor);
}

/*フロー*/
.flow-box {
  display: flex;
  align-items: center;
  padding: 0.5em;
  border: 1px solid var(--lightGray1);
  background-color: var(--main-color1);
}
@media screen and (max-width: 800px) {
  .flow-box {
    display: block;
  }
}
.flow-box .h {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 0.5em 1em;
}
@media screen and (max-width: 800px) {
  .flow-box .h {
    font-size: 1.2em;
    padding-bottom: 0;
  }
}
.flow-box .text {
  width: 100%;
  padding: 0.5em 1em;
}

.triangle {
  width: 80px;
  aspect-ratio: 2/1;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: var(--pageColor);
  margin: 10px auto;
}
@media screen and (max-width: 576px) {
  .triangle {
    width: 60px;
  }
}

/*サービス一覧*/
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}
.service-list > div {
  background-color: var(--main-color1);
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--main-color4);
  font-weight: 500;
}

/*居宅介護の説明*/
.kyotaku-list {
  display: inline-block;
  padding: 0.25em 1em;
  border: 2px solid var(--main-color4);
  font-size: 0.9em;
  margin-right: 0.5em;
  border-radius: 1em;
  margin-bottom: 5px;
}

/*レガシーフォーム調整*/
.hrs_legacyform .form-group {
  margin-bottom: 20px !important;
}
.hrs_legacyform .form-group label span.text-muted {
  opacity: 1;
  font-size: 0.8em;
  color: var(--main-color1) !important;
  padding: 0.15em 0.5em 0.25em 0.5em;
  background-color: var(--main-color4);
}
.hrs_legacyform input[type=submit] {
  background-color: var(--main-color5);
  border-color: var(--main-color5);
}
.hrs_legacyform input[type=submit]:focus {
  border-color: var(--main-color5);
}
.hrs_legacyform .checkboxList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .hrs_legacyform .checkboxList {
    display: block;
  }
}
.hrs_legacyform .checkboxList .form-check {
  margin-right: 1.5em;
}/*# sourceMappingURL=kiyoshiki.css.map */