@charset "UTF-8";
.page {
  padding: 60px 0 0 0; }
  .page h2 {
    padding-left: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #224a8b;
    position: relative; }
    .page h2::before {
      content: "";
      width: 10px;
      height: 50px;
      display: block;
      background: linear-gradient(to bottom, #224a8b 0%, #224a8b 70%, #ffea00 70%, #ffea00 100%);
      position: absolute;
      left: 0;
      top: 15px; }
    .page h2 h3 {
      font-weight: bold;
      border-bottom: 1px solid #224a8b;
      font-size: 22px;
      margin-bottom: 5px; }
  @media only screen and (max-width: 800px) {
    .page h2 {
      padding-left: 20px;
      font-size: 20px;
      font-weight: bold;
      color: #224a8b;
      position: relative; }
      .page h2::before {
        content: "";
        width: 8px;
        height: 30px;
        display: block;
        background: linear-gradient(to bottom, #224a8b 0%, #224a8b 70%, #ffea00 70%, #ffea00 100%);
        position: absolute;
        left: 0;
        top: 5px; }
    .page h3 {
      font-weight: bold;
      border-bottom: 1px solid #224a8b;
      font-size: 18px;
      margin-bottom: 5px; } }

.singleContents_sec {
  padding: 60px 0 60px 0; }

.contents_sec {
  padding: 0 0 90px 0; }

:root {
  --header-height: 100px;
  /* 実際のヘッダー高さに合わせて調整 */ }

[id] {
  scroll-margin-top: var(--header-height); }

/*page_post--------------------------*/
.page_post h2 {
  background: #224a8b;
  font-weight: bold;
  color: #fff;
  margin: 60px 0 30px 0;
  border-radius: 5px;
  padding: 5px 10px 5px 20px; }
.page_post h2:nth-last-child(1) {
  margin-top: 0; }
.page_post h3 {
  font-weight: bold;
  position: relative;
  padding: 0 0 0 0;
  border-bottom: 2px solid #666; }

@media only screen and (max-width: 800px) {
  .page_post h2 {
    background: #224a8b;
    font-weight: bold;
    color: #fff;
    margin: 60px 0 30px 0;
    border-radius: 5px;
    padding: 5px 10px 5px 20px;
    font-size: 18px; }
  .page_post h2:nth-last-child(1) {
    margin-top: 0; }
  .page_post h3 {
    font-weight: bold;
    position: relative;
    padding: 0 0 0 0;
    border-bottom: 2px solid #666; } }
/*--------------------------------------------------------
h1
--------------------------------------------------------*/
.h1_sec h1 {
  font-weight: 900;
  text-align: center;
  font-size: 60px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal; }

.h1_sec_in {
  width: 1360px;
  height: 400px;
  margin: auto;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* 疑似要素のはみ出し防止 */
  /* アニメーション設定 */
  animation: bg-zoom 8s ease-out forwards;
  background: center/100% no-repeat; }

/* 背景がズームするアニメーション */
@keyframes bg-zoom {
  0% {
    background-size: 100% auto; }
  /* 開始は100% */
  100% {
    background-size: 120% auto; }
  /* 終了は120%（お好みで調整） */ }
/* 上下のまぶた用レイヤー */
.h1_sec_in::before,
.h1_sec_in::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  /* まぶたの色。背景と同系色に */
  z-index: 2;
  animation: blink-open 0.6s ease-out forwards; }

/* 上まぶた */
.h1_sec_in::before {
  top: 0;
  height: 50%;
  /* 少し遅らせてより自然に */
  animation-delay: 0.2s; }

/* 下まぶた */
.h1_sec_in::after {
  bottom: 0;
  height: 50%;
  animation-delay: 0.2s; }

/* まぶたが開くアニメーション */
@keyframes blink-open {
  0% {
    height: 50%; }
  /* 完全に閉じた状態 */
  30% {
    height: 0%; }
  /* パチッと開く */
  100% {
    height: 0%; }
  /* そのまま開きっぱなし */ }
@media only screen and (max-width: 1370px) {
  .h1_sec_in {
    width: 95%;
    height: 300px; } }
@media only screen and (max-width: 800px) {
  .h1_sec h1 {
    font-weight: 900;
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-style: normal; }

  .h1_sec_in {
    width: 100%;
    height: 200px;
    margin: auto;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* 疑似要素のはみ出し防止 */
    /* アニメーション設定 */
    animation: bg-zoom 8s ease-out forwards;
    background: center/100% no-repeat;
    border-radius: 0; } }
/*------------------------------------------------------------
page_first
-------------------------------------------------------------*/
.page_first .h1_sec {
  background: #e5f2ff;
  padding: 10px 0 10px 0;
  padding: 2px 0 120px 0;
  background: url("../images/page/first/fv_bg.png");
  background-size: 1920px;
  background-position: center bottom;
  background-repeat: no-repeat repeat;
  /* 横はなし、縦は繰り返す */ }
.page_first .h1_sec_in {
  background: url("../images/page/contact/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 60px; }
.page_first .first_sec {
  padding: 60px 0 120px 0;
  background: url("../images/page/first/fv_bg.png");
  background-size: 1920px;
  background-position: center bottom;
  background-repeat: no-repeat repeat;
  /* 横はなし、縦は繰り返す */ }
.page_first .main_sec {
  background: url("../images/page/first/main_bg.png");
  background-size: 1920px;
  background-position: center center;
  background-repeat: no-repeat repeat;
  /* 横はなし、縦は繰り返す */ }
.page_first .main_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 90px; }
.page_first .main_flBox .col_image {
  width: 600px; }
.page_first .main_flBox .col_text {
  flex: 1; }
.page_first .main_flBox .col_text .title {
  font-weight: bold;
  border-bottom: 1px solid #224a8b;
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
  padding-bottom: 5px; }
.page_first .main_flBox .col_text .text {
  font-size: 18px;
  font-weight: normal; }
.page_first .main_flBox.fl02 .col_text {
  order: 1; }
.page_first .main_flBox.fl02 .col_text .text {
  padding-right: 50px; }
.page_first .main_flBox.fl02 .col_image {
  order: 2; }
.page_first .main_flBox.fl01 .col_text .text {
  padding-left: 50px; }

@media only screen and (max-width: 800px) {
  .page_first .h1_sec {
    background: #e5f2ff;
    padding: 20px 0 80px 0;
    background: url("../images/page/first/fv_bg.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: repeat-y; }

  .page_first .h1_sec_in {
    background: url("../images/page/contact/h1_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 30px; }

  .page_first .first_sec {
    padding: 40px 0 80px 0;
    background: url("../images/page/first/fv_bg.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: repeat-y; }

  .page_first .main_sec {
    background: url("../images/page/first/main_bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: repeat-y;
    padding: 40px 0; }

  .page_first .main_flBox {
    display: flex;
    margin-bottom: 60px; }

  .page_first .main_flBox .col_image {
    width: 100%;
    margin-bottom: 20px;
    order: 2; }

  .page_first .main_flBox .col_image img {
    width: 100%;
    height: auto; }

  .page_first .main_flBox .col_text {
    width: 100%;
    order: 1; }

  .page_first .main_flBox .col_text .title {
    font-size: 22px;
    margin-bottom: 18px;
    text-align: left; }

  .page_first .main_flBox .col_text .text {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 !important; }

  .page_first .main_flBox.fl02 .col_text {
    order: 1; }

  .page_first .main_flBox.fl02 .col_image {
    order: 2; } }
/*------------------------------------------------------------
page_contact
-------------------------------------------------------------*/
.page_contact .h1_sec_in {
  background: url("../images/page/contact/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

/*------------------------------------------------------------
page_company
-------------------------------------------------------------*/
/* ========== PC/共通 ========== */
.page_company .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/page/company/h1_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

.page_company h2 {
  font-weight: bold;
  color: #333;
  margin: 60px 0 30px 0;
  text-align: left; }

.page_company .mission_box {
  background: linear-gradient(135deg, #d7efff 0%, #eaf6ff 50%, #f9fdff 100%);
  text-align: center;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  color: #00395e; }

@keyframes softshine {
  0% {
    transform: translateX(-30%) translateY(-30%) rotate(20deg); }
  100% {
    transform: translateX(30%) translateY(30%) rotate(20deg); } }
.page_company .mission_line01 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1; }

.page_company .mission_line01::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #66b6f0;
  margin: 12px auto 0;
  border-radius: 2px; }

.page_company .mission_line02 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  position: relative;
  z-index: 1; }

.page_company .greeting_flbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.page_company .greeting_flbox .col_l {
  width: 40%; }

.page_company .greeting_flbox .col_r {
  width: 55%; }

.page_company .greeting_flbox .name {
  text-align: right; }

.page_company .access_box {
  margin-bottom: 60px; }

.page_company .access_line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 0 20px 0; }

.page_company .access_line:nth-child(odd) {
  background: #f9f9f9; }

.page_company .access_line .col_l {
  width: 20%;
  font-weight: bold;
  text-align: left;
  padding-left: 40px; }

.page_company .access_line .col_r {
  width: 70%; }

.page_company .map_box iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px; }

.page_company .positionBox .position {
  display: inline-block;
  width: 120px; }

.page_company .sdgs_text {
  margin-bottom: 60px; }

.greeting_section {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 0; }

.greeting_section h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 40px 0 15px 0;
  border-bottom: 1px solid #ccc; }

.greeting_flbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px; }

.greeting_flbox .col_l {
  width: 30%;
  min-width: 250px;
  margin-right: 5%; }

.greeting_flbox .col_l img {
  width: 100%;
  border-radius: 10px;
  display: block; }

.greeting_flbox .col_r {
  width: 65%; }

.greeting_section p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333; }

.service_table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0; }

.service_table th,
.service_table td {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: top; }

.service_table th {
  background: #f0f9ed;
  font-weight: bold;
  text-align: center; }

.service_table td:first-child {
  width: 200px;
  text-align: center; }

.name {
  text-align: right;
  font-weight: bold;
  font-size: 18px;
  margin-top: 40px; }

/* ========== SP（max-width:800px） ========== */
@media only screen and (max-width: 800px) {
  .page_company .mission_box {
    background: linear-gradient(135deg, #d7efff 0%, #eaf6ff 50%, #f9fdff 100%);
    text-align: center;
    padding: 30px 10px 20px 10px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: #00395e; }

  .page_company .mission_line01 {
    font-size: 22px;
    margin-bottom: 20px; }

  .page_company .mission_line02 {
    font-size: 14px;
    margin-bottom: 40px; }

  .page_company .greeting_flbox {
    flex-direction: column; }

  .page_company .greeting_flbox .col_l, .page_company .greeting_flbox .col_r {
    width: 100%; }

  .page_company .greeting_flbox .name {
    text-align: left;
    margin-top: 10px; }

  .page_company .access_line {
    flex-direction: column;
    padding: 10px 20px; }

  .page_company .access_line .col_l, .page_company .access_line .col_r {
    width: 100%;
    padding-left: 0;
    margin-bottom: 5px; }

  .page_company .positionBox .position {
    width: auto;
    display: block;
    margin-bottom: 10px; }

  .page_company h2 {
    font-size: 20px;
    margin: 40px 0 20px; }

  .page_company .sdgs_text {
    margin-bottom: 40px; }

  .page_company .map_box iframe {
    height: 300px; }

  .service_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0; }

  .service_table th,
  .service_table td {
    border: 1px solid #ccc;
    padding: 12px;
    vertical-align: top;
    font-size: 13px; }

  .service_table th {
    background: #f0f9ed;
    font-weight: bold;
    text-align: center; }

  .service_table td:first-child {
    width: 25%;
    text-align: center; } }
/*------------------------------------------------------------
page_care
-------------------------------------------------------------*/
.page_care .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("../images/page/care/main.jpg") !important;
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat; }

.page_nursing .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("../images/page/nursing/h1_bg.jpg") !important;
  background-size: cover !important;
  background-position: center bottom;
  background-repeat: no-repeat; }

.page_rehabili .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("../images/page/rehabilitation/h1_bg.jpg") !important;
  background-size: cover !important;
  background-position: center bottom;
  background-repeat: no-repeat; }

.page_support .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("../images/page/support/h1_bg.jpg") !important;
  background-size: cover !important;
  background-position: center bottom;
  background-repeat: no-repeat; }

/*------------------------------------------------------------
archive_staff
-------------------------------------------------------------*/
.archive_staff .h1_sec_in {
  background: url("../images/page/staff/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat; }

/*------------------------------------------------------------
archive_news
-------------------------------------------------------------*/
.archive_news .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("../images/page/news/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat; }
.archive_news .news_line {
  padding: 20px 0 20px 0; }
.archive_news .news_h1 {
  height: 74px;
  position: absolute;
  left: 90px;
  bottom: 80px;
  z-index: 2; }

/*------------------------------------------------------------
archive_recomend
-------------------------------------------------------------*/
.archive_recomend .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../images/page/recomend/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat; }

/*------------------------------------------------------------
archive_blog
-------------------------------------------------------------*/
.archive_blog .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url("../images/page/blog/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat; }
.archive_blog .news_line {
  padding: 20px 0 20px 0; }
.archive_blog .news_h1 {
  height: 74px;
  position: absolute;
  left: 90px;
  bottom: 80px;
  z-index: 2; }

/*------------------------------------------------------------
アーカイブ
-------------------------------------------------------------*/
.archive_sec {
  padding: 60px 0 60px 0; }
  .archive_sec .subhead {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px; }

.archive_flBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }

.blog_card {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; }

.blog_card .eyecatch {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden; }

.blog_card .eyecatch img {
  height: 100%;
  object-fit: cover;
  display: block;
  height: 200px; }

.blog_card .add {
  font-size: 13px; }

@media screen and (max-width: 1024px) {
  .blog_card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px); } }
.blog_card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.8; }

.title {
  font-size: 18px;
  font-weight: bold;
  display: block;
  width: 90%;
  padding: 0 3px;
  line-height: 1.5; }

.cat a {
  font-size: 12px;
  display: inline-block;
  margin-right: 5px;
  color: #666; }

.cat a:hover {
  color: #F00; }

.text {
  padding-bottom: 10px; }

.textArea {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 10px 0; }

/* 800px以下の調整：2列に変更 */
@media only screen and (max-width: 800px) {
  .archive_flBox {
    justify-content: space-between; }

  .blog_card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px); }

  .blog_card .eyecatch {
    height: 120px; }

  .blog_card .eyecatch img {
    height: 100%;
    object-fit: cover;
    display: block;
    height: 120px; }

  .title {
    font-size: 13px;
    margin-bottom: 10px; }

  .cat a {
    font-size: 10px; }

  .text {
    font-size: 12px;
    line-height: 1.3; } }
/*------------------------------------------------------------
.single_blog
-------------------------------------------------------------*/
.single_blog .single_sec {
  padding: 0 0 90px 0; }
.single_blog .eyecatch img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px; }
.single_blog .single_tags {
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px; }
.single_blog h1 {
  font-weight: bold;
  font-size: 24px; }

@media only screen and (max-width: 800px) {
  .single_blog .single_sec {
    padding: 0 0 90px 0; }
  .single_blog .eyecatch img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px; }
  .single_blog .single_tags {
    border-bottom: 1px solid #ccc;
    margin-bottom: 60px; }
  .single_blog h1 {
    font-weight: bold;
    font-size: 24px; } }
/*------------------------------------------------------------
page_policy
-------------------------------------------------------------*/
.page_policy .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/page/policy/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }
.page_policy h2 {
  font-weight: bold;
  border-bottom: 1px solid #333;
  color: #333;
  margin: 60px 0 30px 0; }
.page_policy h2:nth-last-child(1) {
  margin-top: 0; }
.page_policy .link {
  color: #2B22FF;
  text-decoration: underline; }

/*------------------------------------------------------------
page_sitemap
-------------------------------------------------------------*/
.page_sitemap .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/page/sitemap/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }
.page_sitemap h2 {
  font-weight: bold;
  border-bottom: 1px solid #333;
  color: #333;
  margin: 60px 0 30px 0; }
.page_sitemap h2:nth-last-child(1) {
  margin-top: 0; }
.page_sitemap .link {
  color: #2B22FF;
  text-decoration: underline; }
.page_sitemap .tag_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 6%; }
.page_sitemap .tag_flBox .col_l {
  width: 18%;
  font-weight: bold; }
.page_sitemap .tag_flBox .col_l h3 {
  position: relative;
  font-weight: bold;
  padding-left: 15px;
  font-size: 14px; }
.page_sitemap .tag_flBox .col_l h3:before {
  content: "#";
  display: block;
  position: absolute;
  left: 0;
  top: 0; }
.page_sitemap .tag_flBox .col_r {
  width: 80%; }
.page_sitemap .sitemap {
  margin: 2em auto;
  width: auto;
  font-family: 'Noto Sans JP',sans-serif;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 2em; }
.page_sitemap .sitemap_in {
  width: 80%;
  margin: auto; }
.page_sitemap .sitemap ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em; }
.page_sitemap .sitemap > ul > li {
  margin-bottom: 1em; }
.page_sitemap .sitemap a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 0.2em 0;
  transition: color 0.3s; }
.page_sitemap .sitemap a:hover {
  color: #0077cc; }
.page_sitemap .sitemap ul ul {
  margin-top: 0.5em;
  padding-left: 1.5em;
  border-left: 2px solid #e0e0e0; }
.page_sitemap .sitemap ul ul li {
  margin-bottom: 0.3em; }
.page_sitemap .sitemap i {
  margin-right: 5px; }

@media only screen and (max-width: 800px) {
  .page_sitemap .h1_sec_in {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/page/sitemap/h1_bg.jpg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; }
  .page_sitemap h2 {
    font-weight: bold;
    border-bottom: 1px solid #333;
    color: #333;
    margin: 60px 0 30px 0; }
  .page_sitemap h2:nth-last-child(1) {
    margin-top: 0; }
  .page_sitemap .link {
    color: #2B22FF;
    text-decoration: underline; }
  .page_sitemap .tag_flBox {
    display: block;
    padding-left: 0; }
  .page_sitemap .tag_flBox .col_l {
    width: 100%;
    font-weight: bold; }
  .page_sitemap .tag_flBox .col_l h3 {
    position: relative;
    font-weight: bold;
    padding-left: 15px;
    font-size: 14px; }
  .page_sitemap .tag_flBox .col_l h3:before {
    content: "#";
    display: block;
    position: absolute;
    left: 0;
    top: 0; }
  .page_sitemap .tag_flBox .col_r {
    width: 100%; }
  .page_sitemap .sitemap {
    margin: 2em auto;
    width: auto;
    font-family: 'Noto Sans JP',sans-serif;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 2em; }
  .page_sitemap .sitemap_in {
    width: 90%;
    margin: auto; }
  .page_sitemap .sitemap ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2em; }
  .page_sitemap .sitemap > ul > li {
    margin-bottom: 1em; }
  .page_sitemap .sitemap a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 0.2em 0;
    transition: color 0.3s; }
  .page_sitemap .sitemap a:hover {
    color: #0077cc; }
  .page_sitemap .sitemap ul ul {
    margin-top: 0.5em;
    padding-left: 1.5em;
    border-left: 2px solid #e0e0e0; }
  .page_sitemap .sitemap ul ul li {
    margin-bottom: 0.3em; }
  .page_sitemap .sitemap i {
    margin-right: 5px; } }
/*------------------------------------------------------------
page_service
-------------------------------------------------------------*/
.archive_service .h1_sec_in {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/page/service/h1_bg.jpg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

.page_service h3 {
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: 20px;
  margin-top: 30px; }
.page_service h2 {
  margin-top: 60px; }
.page_service h2:first-child {
  margin-top: 0; }
.page_service .about_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
.page_service .about_flBox .col_l {
  width: 48%; }
.page_service .about_flBox .col_l img {
  width: 100%;
  display: block;
  border-radius: 10px; }
.page_service .about_flBox .col_r {
  width: 48%; }
.page_service .about_flBox .title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px; }
.page_service .user_bullet {
  box-shadow: 0 0 16px rgba(41, 128, 185, 0.2);
  border-radius: 10px;
  margin-bottom: 30px; }
.page_service .user_bullet_in {
  width: 80%;
  margin: auto;
  padding: 30px 0 30px 0; }
.page_service .user_bullet_in li {
  font-size: 20px;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 5px 0 5px 30px; }
.page_service .user_bullet_in li:before {
  content: "・";
  display: block;
  position: absolute;
  left: 0; }
.page_service .flow_flBox_in {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 30px;
  border: solid 0.5px #f0f0f0; }
.page_service .flow_flBox .col_l {
  width: 200px;
  text-align: center;
  background: #e5f2ff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }
.page_service .flow_flBox .col_l .step {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  line-height: 1; }
.page_service .flow_flBox .col_l .num {
  display: block;
  width: 100%;
  font-size: 50px;
  font-weight: 900;
  line-height: 1; }
.page_service .flow_flBox .col_r {
  flex: 1;
  padding: 20px 20px 20px 30px; }
.page_service .flow_flBox .col_r .title {
  font-size: 24px;
  margin-bottom: 10px; }
.page_service .flow_flBox .col_r i {
  display: inline-block;
  margin-right: 20px; }
.page_service .service_bullet {
  margin-bottom: 60px; }
.page_service .service_bullet li {
  padding: 3px 0 5px 20px;
  position: relative; }
.page_service .service_bullet li:before {
  content: "●";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 80%; }
.page_service .last_message {
  font-weight: bold;
  font-size: 24px;
  padding: 40px;
  background: #fdfdfd;
  font-family: "Zen Maru Gothic", sans-serif;
  box-shadow: 0 0 16px rgba(41, 128, 185, 0.2);
  border-radius: 10px;
  color: #224a8b; }

@media only screen and (max-width: 800px) {
  html, body {
    overflow-x: hidden; }

  .page_service h2 {
    margin-top: 60px; }

  .page_service h2:first-child {
    margin-top: 0; }

  .page_service .h1_sec_in {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url("../images/page/service/h1_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; }

  .page_service .about_flBox {
    display: block; }

  .page_service .about_flBox .col_l, .page_service .about_flBox .col_r {
    width: 100%; }

  .page_service .about_flBox .col_l img {
    width: 100%;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px; }

  .page_service .about_flBox .title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 16px; }

  .page_service .user_bullet {
    box-shadow: 0 0 16px rgba(41, 128, 185, 0.2);
    border-radius: 10px; }

  .page_service .user_bullet_in {
    width: 92%;
    margin: auto;
    padding: 20px 0 20px 0; }

  .page_service .user_bullet_in li {
    font-size: 16px;
    border-bottom: 1px dotted #ccc;
    position: relative;
    padding: 8px 0 8px 18px;
    line-height: 1.7; }

  .page_service .user_bullet_in li:before {
    content: "";
    display: block;
    border-bottom: 3px solid #224a8b;
    width: 13px;
    position: absolute;
    left: 0;
    top: 20px; }

  .page_service .flow_flBox_in {
    width: 95%;
    margin: auto;
    display: block;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 20px;
    border: solid 0.5px #f0f0f0; }

  .page_service .flow_flBox .col_l {
    width: 100%;
    text-align: center;
    background: #e5f2ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0; }

  .page_service .flow_flBox .col_l .step {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 6px; }

  .page_service .flow_flBox .col_l .num {
    display: block;
    width: 100%;
    font-size: 36px;
    font-weight: 900;
    line-height: 1; }

  .page_service .flow_flBox .col_r {
    width: 94%;
    flex: none;
    padding: 16px 3% 20px 3%; }

  .page_service .flow_flBox .col_r .title {
    font-size: 18px;
    margin-bottom: 8px; }

  .page_service .flow_flBox .col_r .text {
    font-size: 16px;
    line-height: 1.8; }

  .page_service .flow_flBox .col_r i {
    display: inline-block;
    margin-right: 12px; }

  .page_service .service_bullet {
    margin-bottom: 40px; }

  .page_service .service_bullet li {
    padding: 6px 0 6px 18px;
    position: relative;
    font-weight: 500;
    line-height: 1.7;
    font-size: 16px; }

  .page_service .service_bullet li:before {
    content: "●";
    display: block;
    position: absolute;
    left: 0;
    top: 10px; }

  .page_service .last_message {
    font-weight: bold;
    font-size: 18px;
    padding: 24px;
    background: #fdfdfd;
    font-family: "Zen Maru Gothic",sans-serif;
    box-shadow: 0 0 16px rgba(41, 128, 185, 0.2);
    border-radius: 10px;
    color: #224a8b; } }
/*------------------------------------------------------------
page_service add-ons (caremanager)
-------------------------------------------------------------*/
.page_service .lead_text p {
  margin-bottom: 10px; }

.page_service .card_box {
  box-shadow: 0 0 16px rgba(41, 128, 185, 0.2);
  border-radius: 10px;
  background: #fff;
  padding: 40px 50px 40px 50px;
  margin-bottom: 50px; }

.page_service .card_title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 12px; }

.page_service .card_title i {
  display: inline-block;
  margin-right: 6px; }

.page_service .card_body p {
  margin: 0 0 10px 0; }

.page_service .check_list {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none; }

.page_service .check_list li {
  position: relative;
  padding: 6px 0 6px 24px;
  border-bottom: 1px dotted #ccc; }

.page_service .check_list li:before {
  content: "";
  display: block;
  border-bottom: 3px solid #224a8b;
  width: 13px;
  position: absolute;
  left: 0;
  top: 18px; }

.page_service .concern_box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(41, 128, 185, 0.4);
  padding: 20px;
  margin-bottom: 30px; }

.page_service .concern_box h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px; }

.page_service .concern_box .note_text {
  font-size: 16px;
  margin-top: 8px;
  color: #555; }

.page_service .note_text {
  font-size: 16px;
  padding: 0 0 30px 0;
  color: #333; }

@media only screen and (max-width: 800px) {
  .page_service .lead_text p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8; }

  .page_service .card_box {
    box-shadow: 0 0 16px rgba(41, 128, 185, 0.2);
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    margin-bottom: 30px; }

  .page_service .card_title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px; }

  .page_service .card_title i {
    display: inline-block;
    margin-right: 6px; }

  .page_service .card_body p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.7; }

  .page_service .check_list {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none; }

  .page_service .check_list li {
    position: relative;
    padding: 6px 0 6px 20px;
    border-bottom: 1px dotted #ccc;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500; }

  .page_service .check_list li:before {
    content: "";
    display: block;
    border-bottom: 3px solid #224a8b;
    width: 13px;
    position: absolute;
    left: 0;
    top: 16px; }

  .page_service .concern_box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(41, 128, 185, 0.4);
    padding: 16px;
    margin-bottom: 20px; }

  .page_service .concern_box h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px; }

  .page_service .concern_box .note_text {
    font-size: 13px;
    margin-top: 6px;
    color: #555;
    line-height: 1.6; } }
/*------------------------------------------------------------
page_service flat_box (初めての方へ専用)
-------------------------------------------------------------*/
.page_service .flat_box {
  background: #fff;
  background: #f9f9f9;
  /* 白ベース */
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px 40px;
  margin-bottom: 30px;
  box-shadow: none;
  /* シャドウなしでフラット */ }

.page_service .flat_box .card_title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 10px; }

.page_service .mini_ttl {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px 0;
  padding-left: 12px;
  border-left: 4px solid #224a8b; }

@media only screen and (max-width: 800px) {
  .page_service .flat_box {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: none; }

  .page_service .flat_box .card_title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px; }

  .page_service .mini_ttl {
    font-size: 16px;
    font-weight: bold;
    margin: 16px 0 8px 0;
    padding-left: 10px;
    border-left: 4px solid #224a8b; } }
/*------------------------------------------------------------
pager
-------------------------------------------------------------*/
.pager {
  padding: 30px 0 0 0;
  text-align: center; }
  .pager .current {
    background: #224a8b;
    color: #fff;
    font-weight: bold; }
  .pager .page-numbers {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin: 0; }
  .pager a {
    margin: 0; }
  .pager a:hover {
    background: #e5f2ff;
    opacity: 0.8;
    color: #000; }

@media only screen and (max-width: 800px) {
  .pager {
    padding: 30px 0 0 0; }
    .pager .page-numbers {
      display: inline-flex;
      width: 50px;
      height: 50px;
      align-items: center;
      justify-content: center;
      margin: 0; }
    .pager a {
      margin: 0; } }
/*------------------------------------------------------------
求人recruit
-------------------------------------------------------------*/
.page_recruit {
  /*main---------------------------------------*/
  /*voice---------------------------*/
  /* 奇数：左側に吹き出し */
  /* 偶数：右側に吹き出し */
  /*スケジュール------------------------------------*/
  /*youkou----------------------------------------*/
  /*flow----------------------------------------*/
  /*応募フォーム--------------------------------*/ }
  .page_recruit h2 {
    margin-bottom: 90px; }
  @media only screen and (max-width: 800px) {
    .page_recruit h2 {
      padding-left: 20px;
      font-size: 24px;
      font-weight: bold;
      color: #224a8b;
      position: relative; }
      .page_recruit h2::before {
        content: "";
        width: 8px;
        height: 40px;
        display: block;
        background: linear-gradient(to bottom, #224a8b 0%, #224a8b 70%, #ffea00 70%, #ffea00 100%);
        position: absolute;
        left: 0;
        top: 5px; } }
  .page_recruit .fv_sec {
    max-width: 1920px;
    padding: 0;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-top: -50px; }
  @media only screen and (max-width: 800px) {
    .page_recruit .fv_sec {
      max-width: 1920px;
      padding: 0;
      width: 100%;
      margin: auto;
      overflow: hidden;
      margin: -50px 0 50px 0; } }
  .page_recruit .recruitMain_sec {
    background: url("../images/page/recruit/main_bg.png");
    background-size: 1920px;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -60px; }
    .page_recruit .recruitMain_sec .mainheadline {
      width: 850px;
      margin: 0 auto 60px auto; }
    .page_recruit .recruitMain_sec .message_flBox {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 95%;
      margin: 60px auto 120px auto; }
    .page_recruit .recruitMain_sec .message_flBox .col_l {
      width: 600px; }
    .page_recruit .recruitMain_sec .message_flBox .title {
      font-size: 36px;
      margin-bottom: 20px;
      border-bottom: solid 1px #224a8b;
      color: #224a8b; }
    .page_recruit .recruitMain_sec .message_flBox .text {
      font-size: 20px; }
    .page_recruit .recruitMain_sec .message_flBox .col_r {
      width: 500px; }
  @media (max-width: 800px) {
    .page_recruit .recruitMain_sec h2 {
      margin-bottom: 30px; }
    .page_recruit .recruitMain_sec .mainheadline {
      width: 100%;
      margin: auto; }
    .page_recruit .recruitMain_sec .message_flBox {
      flex-direction: column;
      width: 100%; }
    .page_recruit .recruitMain_sec .message_flBox .col_l {
      width: 100%; }
    .page_recruit .recruitMain_sec .message_flBox .col_r {
      width: 80%;
      margin: 20px auto 30px auto; }
    .page_recruit .recruitMain_sec .message_flBox .title {
      font-size: 18px;
      width: 100%; }
    .page_recruit .recruitMain_sec .message_flBox .text {
      font-size: 16px;
      line-height: 1.8; } }
  .page_recruit .voice_flSection {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .page_recruit .voice_flSection .sec_main {
    margin: auto;
    background: #e5f2ff;
    border-radius: 0 20px 20px 0;
    padding: 90px 0 90px 0;
    position: relative; }
  .page_recruit .voice_flSection .voice_add {
    width: 340px;
    position: absolute;
    right: 0;
    top: -30px; }
  .page_recruit .voice_flSection .sec_l {
    background: #e5f2ff;
    flex: 1; }
  .page_recruit .voice_flSection .sec_r {
    flex: 1; }
  .page_recruit .group_flBox {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    width: 90%;
    margin: 0 auto 60px auto; }
  .page_recruit .group_flBox .name {
    text-align: center; }
  .page_recruit .group_flBox .role {
    text-align: center; }
  .page_recruit .group_flBox .title {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 30px;
    color: #224a8b;
    margin-bottom: 30px;
    position: relative;
    text-align: center; }
  .page_recruit .group_flBox:nth-of-type(odd) .title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    border-style: solid;
    border-width: 20px 28px 20px 0;
    border-color: transparent #fff transparent transparent;
    transform: translateY(-50%) skew(0, 8deg);
    transform-origin: right; }
  .page_recruit .group_flBox:nth-of-type(even) .title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    border-style: solid;
    border-width: 20px 0 20px 28px;
    border-color: transparent transparent transparent #fff;
    transform: translateY(-50%) skew(0, -8deg);
    transform-origin: left; }
  .page_recruit .group_flBox > .image {
    width: 40%;
    order: 1;
    text-align: center; }
  .page_recruit .group_flBox > .image img {
    display: block;
    margin: auto;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px 0 #ccc;
    border: solid #fff 3px; }
  .page_recruit .group_flBox > .content {
    width: 55%;
    order: 2;
    padding-top: 30px; }
  .page_recruit .group_flBox > .content::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #f0f0f0; }
  .page_recruit .sec_main .group_flBox:nth-of-type(even) > .image {
    order: 2; }
  .page_recruit .sec_main .group_flBox:nth-of-type(even) > .content {
    order: 1; }
  @media only screen and (max-width: 800px) {
    .page_recruit .voice_flSection {
      display: block;
      justify-content: unset;
      background: #e5f2ff; }
    .page_recruit .voice_flSection .sec_l,
    .page_recruit .voice_flSection .sec_r {
      display: none; }
    .page_recruit .voice_flSection .sec_main {
      border-radius: 0;
      padding: 40px 0; }
    .page_recruit .voice_flSection .sp_group {
      padding: 20px 0 20px 0; }
    .page_recruit .voice_flSection .sp_group_top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    .page_recruit .voice_flSection .sp_image {
      width: 25%;
      font-size: 10px;
      text-align: center; }
    .page_recruit .voice_flSection .sp_image img {
      width: 100px;
      aspect-ratio: 1/1;
      /* 縦横を1:1にする */
      border-radius: 50%;
      margin: auto;
      border: 2px solid #fff; }
    .page_recruit .voice_flSection .sp_title {
      width: 68%;
      padding-top: 10px; }
    .page_recruit .voice_flSection .sp_title_in {
      width: 96%;
      font-weight: 800;
      color: #224a8b;
      text-align: center;
      background: #fff;
      border-radius: 5px;
      padding: 10px 2% 10px 2%;
      position: relative; }
    .page_recruit .voice_flSection .sp_content {
      font-size: 14px;
      border-bottom: 2px solid #fff; }
    .page_recruit .voice_flSection .sp_title_in::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -20px;
      /* 吹き出しを外側に出す */
      transform: translateY(-50%);
      border-style: solid;
      border-width: 12px 0 12px 20px;
      /* 三角形の大きさ */
      border-color: transparent transparent transparent #fff;
      /* 右向きの白い三角形 */ } }
  .page_recruit .sch_sec {
    margin-top: 120px;
    position: relative; }
    .page_recruit .sch_sec .sch_sec_in {
      background: #e5f2ff;
      padding: 5px 0 60px 0; }
    .page_recruit .sch_sec .sch_main {
      padding-top: 220px;
      position: relative; }
    .page_recruit .sch_sec .sch_box {
      width: 1050px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin: auto; }
    .page_recruit .sch_sec .sch_box .col_l {
      width: 250px;
      position: relative; }
    .page_recruit .sch_sec .sch_box .col_l img {
      height: 250px;
      width: 250px;
      object-fit: cover;
      display: block;
      border-radius: 50% 50% 0 50%;
      color: #fff;
      border: solid 5px #fff;
      box-sizing: border-box;
      position: absolute;
      top: -200px;
      right: -5px; }
    .page_recruit .sch_sec .sch_box .col_c {
      width: 220px;
      min-height: 300px;
      border-left: 5px solid #fff;
      box-sizing: border-box; }
    .page_recruit .sch_sec .sch_box .col_c .time {
      width: 200px;
      height: 50px;
      background: #fff;
      border-radius: 0 20px 20px 0;
      display: block;
      text-align: center;
      color: #224a8b;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: 2px; }
    .page_recruit .sch_sec .sch_box .col_r {
      width: 580px; }
    .page_recruit .sch_sec .sch_box .col_r .title {
      font-size: 24px;
      border-bottom: dotted 3px #224a8b;
      display: block;
      width: 100%;
      padding: 0 0 15px 0;
      margin-bottom: 30px;
      color: #224a8b;
      font-weight: bold; }
    .page_recruit .sch_sec .sch_box .col_r ul {
      font-size: 18px; }
    .page_recruit .sch_sec .sch_box .col_r ul li {
      padding-left: 20px;
      position: relative; }
    .page_recruit .sch_sec .sch_box .col_r ul li:before {
      content: "・";
      position: absolute;
      left: 0; }
  @media only screen and (max-width: 800px) {
    .page_recruit {
      /*スケジュール------------------------------------*/ }
      .page_recruit .sch_sec .sch_sec_in {
        background: #e5f2ff;
        padding: 5px 0 60px 0; }
      .page_recruit .sch_sec .sch_main {
        padding: 0; }
      .page_recruit .sch_sec .sch_box {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: auto; }
      .page_recruit .sch_sec .sch_box .col_l {
        width: 180px;
        position: relative;
        display: inline-block;
        order: 2; }
      .page_recruit .sch_sec .sch_box .col_l img {
        height: 180px;
        width: 180px;
        object-fit: cover;
        display: block;
        border-radius: 50% 50% 50% 0;
        color: #fff;
        border: solid 5px #fff;
        box-sizing: border-box;
        position: static;
        top: -200px;
        right: -5px; }
      .page_recruit .sch_sec .sch_box .col_c {
        width: 120px;
        min-height: auto;
        border-left: none;
        box-sizing: border-box;
        display: inline-block;
        order: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-end; }
      .page_recruit .sch_sec .sch_box .col_c .time {
        width: 120px;
        height: 50px;
        background: #fff;
        border-radius: 20px 0 0 20px;
        display: block;
        text-align: center;
        color: #224a8b;
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 2px; }
      .page_recruit .sch_sec .sch_box .col_r {
        width: 100%;
        padding: 10px 0 50px 0;
        order: 3; }
      .page_recruit .sch_sec .sch_box .col_r .title {
        font-size: 24px;
        border-bottom: dotted 3px #224a8b;
        display: block;
        width: 100%;
        padding: 0 0 15px 0;
        margin-bottom: 30px;
        color: #224a8b;
        font-weight: bold; }
      .page_recruit .sch_sec .sch_box .col_r ul {
        font-size: 16px; }
      .page_recruit .sch_sec .sch_box .col_r ul li {
        padding-left: 20px;
        position: relative; }
      .page_recruit .sch_sec .sch_box .col_r ul li:before {
        content: "・";
        position: absolute;
        left: 0; } }
  .page_recruit .youkou_sec {
    background: url("../images/page/recruit/youkou_bg.png");
    padding: 60px 0 60px 0;
    background-size: 1920px;
    background-position: top center;
    background-repeat: repeat-y;
    /* 縦方向のみリピート */ }
  .page_recruit .tableNormal {
    width: 950px;
    margin: auto;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    padding: 0;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff; }
  .page_recruit .tableNormal th,
  .page_recruit .tableNormal td {
    padding: 15px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff; }
  .page_recruit .tableNormal th {
    font-weight: bold;
    text-align: left;
    color: #fff;
    width: 250px; }
  .page_recruit .kanngo.tableNormal th {
    background: rgba(51, 102, 204, 0.95); }
  .page_recruit .kanngo.tableNormal td {
    background: #E0E8F7; }
  .page_recruit .reha.tableNormal th {
    background: rgba(255, 140, 0, 0.95); }
  .page_recruit .reha.tableNormal td {
    background: #FFEED9; }
  .page_recruit .kaigo.tableNormal th {
    background: rgba(46, 139, 87, 0.95); }
  .page_recruit .kaigo.tableNormal td {
    background: #E0EEE6; }
  @media (max-width: 800px) {
    .page_recruit .youkou_sec {
      padding: 40px 0;
      background-size: auto 100%;
      background-position: center center;
      background-repeat: repeat-y;
      background: none; }
    .page_recruit .tableNormal {
      width: 100%;
      overflow-x: auto;
      display: block;
      margin: 0 auto 30px auto; }
    .page_recruit .tableNormal table {
      width: 100%;
      min-width: 600px; }
    .page_recruit .tableNormal th,
    .page_recruit .tableNormal td {
      font-size: 14px;
      padding: 0.8em;
      word-break: break-word;
      border-right: 3px solid #fff;
      border-bottom: 3px solid #fff; }
    .page_recruit .tableNormal th {
      font-weight: bold;
      text-align: left;
      color: #fff;
      width: auto; } }
  .page_recruit .flow_sec {
    background: url("../images/page/recruit/flow_bg.png");
    background-size: 1920px;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative; }
  .page_recruit .flow_sec h2 {
    margin-bottom: 120px; }
  .page_recruit .flow_sec .sec_in {
    position: relative; }
  .page_recruit .flow_add02 {
    width: 400px;
    position: absolute;
    right: 0;
    top: 0; }
  .page_recruit .flow_box {
    width: 880px;
    margin: auto;
    margin-top: -40px;
    height: 250px;
    background: #e5f2ff;
    clip-path: polygon(0 0, 50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding-top: 90px; }
  .page_recruit .flow_box.first {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding-top: 50px; }
  .page_recruit .flow_box_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .page_recruit .flow_box_in .col_l {
    width: 23%;
    text-align: center; }
  .page_recruit .flow_box_in .col_l img {
    width: 100px; }
  .page_recruit .flow_box_in .col_r {
    width: 74%; }
  .page_recruit .flow_box_in .flow_step {
    font-size: 20px;
    color: #224a8b;
    font-weight: 900; }
  .page_recruit .flow_box_in .title {
    font-size: 28px;
    border-bottom: 1px solid #224a8b;
    margin-bottom: 20px;
    color: #224a8b; }
  .page_recruit .flow_box_in .text {
    font-size: 18px;
    width: 90%; }
  @media (max-width: 800px) {
    .page_recruit .flow_sec {
      background: url("../images/page/recruit/flow_bg.png");
      background-size: cover;
      background-position: center bottom;
      background-repeat: no-repeat;
      padding-top: 90px; }
    .page_recruit .flow_sec h2 {
      margin-bottom: 30px; }
    .page_recruit .flow_add02 {
      width: 300px;
      position: absolute;
      right: 0;
      top: -80px; }
    .page_recruit .flow_box {
      width: 90%;
      height: auto;
      margin: auto;
      margin-top: 20px;
      padding: 20px 0 20px 0;
      clip-path: none;
      background: #e5f2ff;
      border-radius: 20px; }
    .page_recruit .flow_box.first {
      clip-path: none;
      padding-top: 20px; }
    .page_recruit .flow_box:nth-child(1) {
      clip-path: none;
      padding-top: 10px; }
    .page_recruit .flow_box_in {
      flex-direction: column;
      align-items: center; }
    .page_recruit .flow_box_in .col_l {
      width: 100%;
      text-align: center;
      margin-bottom: 15px; }
    .page_recruit .flow_box_in .col_l img {
      width: 120px; }
    .page_recruit .flow_box_in .col_r {
      width: 100%; }
    .page_recruit .flow_box_in .flow_step {
      font-size: 18px;
      color: #224a8b;
      font-weight: 900; }
    .page_recruit .flow_box_in .title {
      width: 90%;
      margin: auto;
      font-size: 16px;
      border-bottom: 1px solid #224a8b;
      margin-bottom: 15px;
      color: #224a8b;
      text-align: center; }
    .page_recruit .flow_box_in .text {
      font-size: 16px;
      width: 90%;
      margin: auto;
      text-align: left; } }
  .page_recruit .form_sec {
    background: #e5f2ff;
    padding: 90px 0 90px 0; }
  .page_recruit .form_title {
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #224a8b;
    margin-bottom: 30px; }

/*------------------------------------------------------------
サービス一覧ボタン
-------------------------------------------------------------*/
.service_btn_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: "Zen Maru Gothic", sans-serif; }

.service_btn_flBox .service_btn02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  color: #fff;
  width: 49%;
  box-shadow: 2px 2px 2px #ccc;
  margin-bottom: 30px;
  border-radius: 5px;
  height: 200px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  letter-spacing: 2px;
  font-weight: 600; }

.service_btn_flBox .service_btn02 > * {
  position: relative;
  z-index: 5; }

/* 常時オーバーレイ（色は各サービスで指定） */
.service_btn_flBox .service_btn02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  z-index: 1;
  transition: opacity .3s ease; }

.service_btn_flBox .service_btn02:hover::before {
  opacity: .9; }

/* キラッ演出 */
.service_btn_flBox .service_btn02::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 2;
  opacity: 0;
  pointer-events: none; }

.service_btn_flBox .service_btn02:hover::after {
  animation: shine .8s ease; }

@keyframes shine {
  0% {
    left: -75%;
    opacity: 0; }
  15% {
    opacity: 1; }
  85% {
    opacity: 1; }
  100% {
    left: 125%;
    opacity: 0; } }
/* 各サービスの背景 */
.service_btn_flBox .service01 {
  background: url(../images/page/nursing/main.jpg);
  background-size: cover;
  background-position: center; }

.service_btn_flBox .service02 {
  background: url(../images/page/care/main.jpg);
  background-size: cover;
  background-position: top center; }

.service_btn_flBox .service03 {
  background: url(../images/page/rehabilitation/main.jpg);
  background-size: cover;
  background-position: center; }

.service_btn_flBox .service04 {
  background: url(../images/page/support/main.jpg);
  background-size: cover;
  background-position: center; }

/* 常時オーバーレイの色（サービス別） */
.service_btn_flBox .service01::before {
  background-color: rgba(51, 102, 204, 0.65); }

.service_btn_flBox .service02::before {
  background-color: rgba(46, 139, 87, 0.65); }

.service_btn_flBox .service03::before {
  background-color: rgba(255, 140, 0, 0.65); }

.service_btn_flBox .service04::before {
  background-color: rgba(255, 105, 180, 0.65); }

/* 右下三角（要: <span class="corner"></span> を各<a>内の末尾に追加） */
.service_btn_flBox .service_btn02 .corner {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 60px;
  z-index: 4;
  pointer-events: none; }

.service_btn_flBox .service01 .corner {
  border-color: transparent transparent rgba(51, 102, 204, 0.95) transparent; }

.service_btn_flBox .service02 .corner {
  border-color: transparent transparent rgba(46, 139, 87, 0.95) transparent; }

.service_btn_flBox .service03 .corner {
  border-color: transparent transparent rgba(255, 140, 0, 0.95) transparent; }

.service_btn_flBox .service04 .corner {
  border-color: transparent transparent rgba(255, 105, 180, 0.95) transparent; }

@media only screen and (max-width: 800px) {
  .service_btn_flBox {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Zen Maru Gothic", sans-serif; }

  .service_btn_flBox .service_btn02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    color: #fff;
    width: 100%;
    box-shadow: 2px 2px 2px #ccc;
    margin-bottom: 30px;
    border-radius: 5px;
    height: 200px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    letter-spacing: 2px;
    font-weight: 600; }

  .service_btn_flBox .service_btn02 > * {
    position: relative;
    z-index: 5; }

  .service_btn_flBox .text {
    font-size: 24px; } }
