@charset "utf-8";
/* CSS Document */

/*============================================================================================

共通

===============================================================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP';
    font-size: 16px;
    line-height: 1.5;
    color: #313131;
}
.sp{
    display: none;
}
.kv_sp{
    display: none;    
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 0 0 40px;
    z-index: 2000;
    background-color: #ffffffc2;
    height: 105px;
}
.logo_area {
    float: left;
    width: 32%;
}
.logo_area a {
    padding: 31px 0;
    display: block;
}
a {
    transition: 0.4s;
}
a:hover {
    opacity: 0.6;
}
img {
    display: block;
    width: 100%;
}
article {
    margin-top: 80px;
}
section {
    padding: 150px 0;
    position: relative;
}
.inn800 {
    max-width: 800px;
    margin: 0 auto;
}
.inn920 {
    max-width: 920px;
    margin: 0 auto;
}
.inn940 {
    max-width: 940px;
    margin: 0 auto;
}
.inn1200 {
    max-width: 1200px;
    margin: 0 auto;
}
.inn1240 {
    max-width: 1240px;
    margin: 0 auto;
}
.inn1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}
.inn1500 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
}
.bx{
    overflow: hidden;
}
.rbx{
    float: right;
	margin-bottom:90px;
}
.rbx_mb240{
	margin-bottom:240px;
}
.lbx{
    float: left;
	margin-bottom:70px;
}
.lbx_mb150{
	margin-bottom:150px;
}
h2.ttl span.en {
    display: block;
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 500;
    text-align: center;
    line-height: 1;
}
h2.ttl span.jp {
    display: block;
    font-size: 40px;
    text-align: center;
    font-family: 'Noto Serif JP';
}
h2.ttl span.en:before {
    content: '';
    display: block;
    width: 20px;
    height: 30px;
    background-image: url(img/common/icon_h2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto 10px;
}

/*============================================================================================

メニュー

===============================================================================================*/

/*=============================メガメニュー　↓=============================*/
nav.header-nav {
    float: right;
    display: flex;
}
.entry_btn {
    margin-left: 16px;
}
.entry_btn a {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4C8B7F;
    color: #fff;
    font-size: 20px;
    padding: 16px 48px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 2px;
}
.sns {
}
.sns img {
    width: auto;
    height: 25px;
}
.sns a {
    display: inline-block;
    float: right;
    margin-left: 16px;
}
a.link_target {
    border: 2px solid #4c8b7f;
    border-radius: 30px;
    padding: 2px 32px 2px 16px;
    display: block;
    position: relative;
}
a.link_target:after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background-image: url(img/common/tab.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
a.link_target span {
    font-size: 12px;
    color: #7c7c7c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Serif JP';
}

a.link_target:hover {
    background-color: #4c8b7f;
}
a.link_target:hover:after {
    background-image: url(img/common/tab_w.png);
}
a.link_target:hover span {
    color: #fff;
}




.header-list {
  display: flex;
  justify-content: end;
}
ul.header-list:first-child {
    padding-top: 14px;
}
ul.header-list:nth-child(2) {
    padding-top: 10px;
}
.header-item {
  transition: background-color .3s;
}
.header-item:hover {
  background-color: #4c8b7f;
}
.header-item:hover a {
    color: #fff;
    opacity: 1;
}
ul.header-list:nth-child(2) li.header-item.under > a{
    position: relative;
}
ul.header-list:nth-child(2) li.header-item.under > a:after {
    content: '+';
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    color: #4C8B7F;
    line-height: 0.9;
}
ul.header-list:nth-child(2) li.header-item.under:hover > a:after {
    color: #fff;
}
ul.header-list:nth-child(2) li.header-item > a span{
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.header-item a {
    color: #000;
    display: block;
    padding: 16px 11px 19px 10px;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Noto Serif JP';
}
.megaMenu {
    background-color: #4c8b7f;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    transition: opacity .1s, visibility .1s;
    visibility: hidden;
    width: 100%;
}
.megaMenu-list {
  padding-bottom: 30px;
  padding-top: 30px;
}
.megaMenu-item {
  display: inline-block;
}
/* メニューをhoverした時のスタイル */
.header-item:hover .megaMenu {
  opacity: 1;
  visibility: visible;
}
/*=============================メガメニュー　↑=============================*/

nav.hd_nv {
    display: none;
}

/*=============================アニメーション↓=============================*/
/*TOPメッセージ内画像*/
.fuwafuwa {
  animation: fuwafuwa 7s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}


/* ここから時間差フェードインアニメーション */
/* 1秒間かけてフェードイン */
.fadeIn1s {
    animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 1.5秒間かけてフェードイン */
.fadeIn1500ms {
    animation-name: fadeIn1500ms;
    animation-delay: 1500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1500ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 0.5秒間かけてフェードイン */
.fadeIn500ms {
    animation-name: fadeIn500ms;
    animation-delay: 500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(50px);
    opacity: 0;
}
@keyframes fadeIn500ms {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* 2秒間かけてフェードイン */
.fadeIn2s {
    animation-name: fadeIn2s;
    animation-delay: 2s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes fadeIn2s {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/*TOPメッセージ部　画像フェードイン*/
  .scfadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .scfadeIn.is-show {
    opacity: 1;
    transform: translateY(0);
  }
/*=============================アニメーション↑=============================*/



/*トップページ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
section.kv {
    padding: 0 0;
    position: relative;
}
section.kv img.kv_pc {
    height: auto;
    width: 100%;
}
section.kv .img_txt_area {
    width: 30%;
    height: 250px;
    position: absolute;
    z-index: 100;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
section.top_message {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 248, 244, 1) 100%);
    overflow: hidden;
}
section.top_message h2 {
    font-size: 50px;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Noto Serif JP';
}
.message_txt {
    text-align: center;
    font-size: 22px;
    line-height: 50px;
    font-weight: 300;
    font-family: 'Noto Serif JP';
}
.top_message_img01 {
    position: absolute;
    width: 27%;
    right: -5%;
    top: -64px;
}
.top_message_img02 {
    position: absolute;
    width: 18%;
    left: 7%;
    top: 17%;
}
.top_message_img03 {
    position: absolute;
    width: 18%;
    right: 6%;
    top: 37%;
}
.top_message_img04 {
    position: absolute;
    width: 28%;
    left: -2%;
    bottom: 5%;
}
.top_message_img05 {
    position: absolute;
    width: 30%;
    bottom: 0%;
    right: -7%;
}
section.top_info {
    background-color: rgba(250, 248, 244, 1);
    padding-bottom: 0;
}
section.top_info .bx {
    display: flex;
    flex-wrap: wrap;
}
section.top_info .lbx {
    width: 30%;
    display: flex;
    align-items: center;
    float: none;
}
section.top_info .rbx {
    width: 70%;
    float: none;
}

/*=============================タブコンテンツ↓=============================*/
section.top_info .tab {
    width: 100%;
}
.tab-list{
  display: flex;
}
.tab-list-item {
    width: 23%;
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    margin-right: 4px;
    background-color: #fff;
    border-radius: 5px 5px 0px 0px;
    font-family: 'Noto Serif JP';
}
.tab-list-item:last-child {
    margin-right: 0;
}
.tab-contents {
    display: none;
    padding: 20px 0px 0 0;
    margin-top: 20px;
    overflow-y: scroll;
    height: 216px;
}
.is-btn-active {
    background-color: #4c8b7f;
    font-weight: 500;
    color: #fff;
}
.is-contents-active{
  display: block;
}
.info_area a {
    display: flex;
    justify-content: flex-end;
    padding: 20px 30px 20px 0;
    border-top: 1px solid #ccc;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}
.info_area_child.txt {
    width: 65%;
    padding-left: 3%;
}
.info_area_child.type {
    width: 10%;
    margin: 0 1%;
}
.info_area_child.type span {
    display: block;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    padding: 2px 0px;
    font-size: 13px;
}
.info_area_child.type span.kango {
    background-color: #D9757A;
}
.info_area_child.type span.ijika {
    background-color: #9D85BE;
}
.info_area_child.type span.kanei {
    background-color: #F0E77B;
    color: #707070;
}
.info_area_child.type span.soumu {
    background-color: #88C5B2;
}
.info_area_child.type span.keiri {
    background-color: #88C5B2;
}


.info_area_child.date {
    width: 13%;
    margin: 0 1%;
}
.info_area_child.date time {
    text-align: center;
    display: block;
    width: 100%;
}
.info_area:last-child a {
    border-bottom: 1px solid #ccc;
}
.info_area_child.cat span.new {
    background-image: url(img/common/icon_new.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    padding: 8px 10px;
    color: #fff;
}
.info_area a:after {
    content: '';
    display: flex;
    width: 14px;
    height: 26px;
    background-image: url(img/common/tab.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
    margin-left: 4px;
}
.info_area_child.cat_new span.new {
    background-image: url(img/common/icon_new.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    padding: 8px 10px;
    color: #fff;
}
a.link_type {
    border: 2px solid #4c8b7f;
    border-radius: 30px;
    display: block;
    background-color: #fff;
    padding: 16px 70px 16px 70px;
    position: relative;
    width: 300px;
    text-align: center;
    margin: 0 auto;
    font-family: 'Noto Serif JP';
}
a.link_type:after {
    content: '';
    display: block;
    width: 14px;
    height: 23px;
    background-image: url(img/common/link_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: .4s;
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
}
a.link_type:hover {
    color: #fff;
    background-color: #4c8b7f;
}
a.link_type:hover:after {
    background-image: url(img/common/link_arrow_r_w.png);
}
.link_area {
    overflow: hidden;
    margin: 50px 0 80px 0;
}
.float_r {
    float: right;
}

/*=============================タブコンテンツ↑=============================*/

section.top_voice h2.ttl {
    text-align: center;
}
section.top_voice h2.ttl span.en:after {
    margin: 0 auto 10px;
}
section.top_voice .link_area {
    width: auto;
    height: 60px;
    z-index: 200;
    position: absolute;
    bottom: 0;
}

/*=============================アーチスライダー↓=============================*/

/* ====== このスライダーだけに限定（他へ影響しない） ====== */
.archslider{ position:relative; width:100vw; height:80vh; margin-top:80px; display:flex; align-items:center; justify-content:center; }
@media (max-width:767px){ .archslider{ height:70vh; } } /* SPはやや低め */

/* ★PC：円の下半分を隠す（=上部だけ見せる）。SPも2列防止のため基本は隠す */
.archslider .carousel{ position:relative; width:100%; height:100%; overflow:hidden; }

.archslider .slides{ position:absolute; inset:0; }

/* スライド（位置・回転はJS制御） */
.archslider .slide{ position:absolute; width:23%; transition:left .7s ease, top .7s ease, transform .7s ease; overflow:visible; }
@media (max-width:960px){ .archslider .slide{ width:33.333%; } }
.archslider .slide a{ display:block; width:100%; height:100%; }
.archslider .slide img{ width:100%; height:100%; object-fit:contain; display:block; }

/* ★ラベルは絶対配置：高さ計算に入れない → SPの“2列化”防止 */
.archslider .cat_mv {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    padding: 8px 10px;
    pointer-events: auto;
}
.archslider .cat span{ background:#ddd; padding:4px 12px; border-radius:30px; display:inline-block; margin-right:4px; font-size:12px; font-family:'Roboto',sans-serif; font-weight:300; }

/* 矢印は常に最前面（PCで潜らない） */
.archslider .arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border:none; border-radius:999px;
  background:#4c8b7f; display:flex; align-items:center; justify-content:center;
  z-index:5000 !important; pointer-events:auto;
}
.archslider .arrow-left{ left:8%; } .archslider .arrow-right{ right:8%; }
.archslider .arrow img{ width:10px; height:auto; }

/* ページ側のフェード演出(scfadeIn)が透明化させない保険（transformは触らない） */
.archslider .carousel.scfadeIn,
.archslider .carousel.scfadeIn *{ opacity:1 !important; visibility:visible !important; }

a.mv_link {
    background-color: #4c8b7f;
    padding: 4px 16px;
    font-size: 14px;
    color: #fff;
    border-radius: 30px;
    display: inline-block !important;
    width: auto !important;
    margin-bottom: 8px;
}
section.top_voice .archslider + .link_area {
    text-align: center;
    width: 300px;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 14%;
}


/*=============================アーチスライダー↑=============================*/
section.top_support {
    background-image: url(img/top/support_bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
	padding-bottom: 200px;
}
section.top_support h2.ttl {
    text-align: center;
}
section.top_support h2.ttl span.en:after {
    margin: 10px auto;
}
.support_contents {
    margin-top: 80px;
}
.support_contents ul {
    display: flex;
    justify-content: space-between;
}
.support_contents ul li {
    width: 23%;
    aspect-ratio: 1 / 1;
}
.support_contents ul li a {
    text-align: center;
    background-color: #fff;
    border-radius: 150px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.support_contents ul li a h3 {
    font-family: 'Noto Serif JP';
}
.support_contents ul li a img {
    height: 160px;
    width: 160px;
    object-fit: contain;
    margin: 0 auto 10px;
}
.job_list {
    border-radius: 10px 0px 0px 10px;
    overflow: hidden;
    width: 100%;
    display: flex;
    padding-left: 50px;
}
.job_list ul {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
}
.job_list ul li {
    flex: 20%;
    max-width: 20%;
    transition: .2s;
}
.job_list ul li:first-child img {
    border-radius: 10px 0 0 10px;
}
.job_list ul li:first-child span {
    border-radius: 0 0 0 10px;
}
.job_list ul li:nth-child(6) img {
    border-radius: 10px 0 0 0;
}
.job_list ul li:has(.kangoshi):hover {
    border: 4px solid #d9757a;
}
.job_list ul li:has(.rinsho):hover {
    border: 4px solid #BCC87B;
}
.job_list ul li:has(.housha):hover {
    border: 4px solid #7787BB;
}
.job_list ul li:has(.ijika):hover {
    border: 4px solid #9D85BE;
}
.job_list ul li:has(.shougai):hover {
    border: 4px solid #EEAC60;
}
.job_list ul li:has(.kanei):hover {
    border: 4px solid #F0E77B;
}
.job_list ul li:has(.gyoumu):hover {
    border: 4px solid #A3BBDB;
}
.job_list ul li:has(.kei_sou):hover {
    border: 4px solid #88C5B2;
}

section.top_category {
    padding-bottom: 0;
    z-index: 1000;
    overflow: hidden;
}
section.top_category_under img {
}

section.top_category_under {
    padding-bottom: 0;
}
.job_list ul li {
    position: relative;
}
.job_list ul li a span {
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    padding: 8px;
    font-size: 18px;
    border-radius: 0 5px 0 0;
    font-family: 'Noto Serif JP';
}
.job_list ul li a img {
    width: 100%;
    object-fit: cover;
}
span.kangoshi {
    background-color: #D9757A;
    color: #fff;
}
span.rinsho {
    background-color: #BCC87B;
    color: #fff;
}
span.housha {
    background-color: #7787BB;
    color: #fff;
}
span.ijika {
    background-color: #9D85BE;
    color: #fff;
}
span.shougai {
    background-color: #EEAC60;
    color: #fff;
}
span.kanei {
    background-color: #F0E77B;
    /* color: #fff; */
}
span.gyoumu {
    background-color: #A3BBDB;
    color: #fff;
}
span.rinshou {
    background-color: #A3BBDB;
    color: #fff;
}
span.kei_sou {
    background-color: #88C5B2;
    color: #fff;
}
section.top_category .inn1400 {
    position: relative;
}
section.top_category .link_area {
    width: 220px;
    margin: 80px auto 150px;
}
section.top_category {
    padding-bottom: 0;
}
section.top_category .job_list {
    position: relative;
}
section.top_category .job_list h2.ttl {
    position: absolute;
    top: 10%;
}
.bg_img {
    background-image: url(img/top/bg_img.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

section.top_place h2.ttl {
    text-align: center;
}
section.top_place h2.ttl span.en:after {
    margin: 0 auto 10px;
}

/*=============================ループスライダー↓=============================*/
.loopslider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin-top: 80px;
}
    .slider-track { display: flex; gap: 30px; will-change: transform; }
.loopslide {
    flex: 0 0 calc((100% - 4 * 30px) / 5);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 13;
}
.looparrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4c8b7f;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 12px;
}
    .looparrow.left { left: 10px; }
    .looparrow.right { right: 10px; }

.loopslide a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.loopslide a:hover{
    opacity: 1;
}
.loopslide a span.filter {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    color: #ccc;
    z-index: 100;
}
.loopslide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}
.loopslide a img{
    transform: .6s;
}
.loopslide a:hover img{
}
.loopslide a h3 {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    color: #fff;
    text-align: center;
    height: 23px;
    font-size: 18px;    
    font-family: 'Noto Serif JP';
}
section.top_place .link_area {
    width: auto;
    margin: 80px auto 150px;
}
section.top_place {
	padding-bottom: 200px;
}
.loopslide a span.bg_cl {
    background-color: #0000006b;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
    border-radius: 30px;
}
.loopslide a:hover span.bg_cl {
    background-color: #4c8b7f80;
}

/* ドットインジケーター */
    .dots {
      position: absolute;
      bottom: 10px;
      width: 100%;
      display: flex;
      justify-content: center;
      pointer-events: none;
    }
    .dot {
      width: 10px;
      height: 10px;
      margin: 0 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      pointer-events: all;
      transition: background 0.3s;
    }
    .dot.active {
      background: #fff;
    }


/*=============================ループスライダー↑=============================*/
.inn1240 {
    max-width: 1240px;
    margin: 0 auto;
}
section.top_faq {
    padding-top: 0;
    padding-bottom: 0;
}
section.top_faq a {
    padding: 80px;
    display: block;
    background-color: #00000038;
}
section.top_faq a:hover {
    background-color: #4c8b7fa6;
    color: #fff;
}
section.top_faq a {
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/clinic_shinjuku_04.jpg);
    background-position: 0 76%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
span.top_faq_bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000038;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: 0.4s;
}

section.top_faq .bx {
    position: relative;
    z-index: 100;
}
section.top_faq a:hover {
    opacity: 1;
}
section.top_faq a:hover span.top_faq_bg {
    background-color: #00776c40;
}
section.top_faq .looparrow.right {
    right: 80px;
}
section.top_about{
	padding-bottom: 210px
}
section.top_about .bx {
    display: flex;
}
section.top_about .lbx {
    width: 55%;
    float: none;
}
section.top_about .rbx {
    width: 45%;
    padding-left: 5%;
    float: none;
}
section.top_about img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.top_about a.link_target {
    padding: 12px 25px;
    width: 300px;
    margin-top: 30px;
}
section.top_about a.link_target span {
    margin-right: 20px;
}
.h2_txt {
    font-size: 18px;
    line-height: 2;
}
section.top_about .h2_txt {
    margin-top: 30px;
    font-family: 'Noto Serif JP';
}
section.top_faq h2.ttl {
    color: #fff;
}
section.top_faq .looparrow {
    background: #fff;
}
.about_ttl_box {
    display: flex;
}

/*=============================フッター　↓=============================*/
section.ft_entry {
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ft_entry_bg.png);
    background-position: center;
    background-size: inherit;
    background-repeat: no-repeat;
    border-radius: 50px 50px 0 0;
	margin-top: -130px;
}
section.ft_entry h2.ttl {
    font-family: 'Roboto';
    font-size: 100px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    letter-spacing: 10px;
    line-height: 1;
    margin-top: 25%;
}
section.ft_entry .lbx,section.ft_entry .rbx {
    width: 50%;
}
.ft_entry_txt {
    font-size: 22px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    line-height: 2;
    font-family: 'Noto Serif JP';
}
.ft_entry_link li {
    margin-bottom: 20px;
}
.ft_entry_link li a {
    color: #fff;
    background-color: #4c8b7f;
    display: block;
    padding: 20px 130px;
    width: 80%;
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
    font-size: 18px;
    font-family: 'Noto Serif JP';
}
.ft_entry_link li a:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(img/common/link_arrow_r_w.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 130px;
    top: 0;
    bottom: 0;
    margin: auto;
}
footer {
    padding-top: 120px;
}
.ft_logo {
    margin-bottom: 50px;
    width: 300px;
}
.ft_logo img {
    width: 100%;
}
.ft_site_map {
    display: flex;
    justify-content: space-between;
}
.ft_site_map_block ul li:first-child {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Noto Serif JP';
}
.ft_site_map_block ul li {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 300;
}
.ft_site_map_block ul li.sns {
    display: flex;
    justify-content: flex-start;
    margin-top: 50px;
}
.ft_site_map_block:last-child a.link_target {
    padding: 10px 70px;
    margin-top: 24px;
}
small {
    font-size: 12px;
    display: block;
    text-align: center;
    margin: 50px 0;
}
.float_top_btn a {
    display: inline-block;
}
.float_top_btn img {
    max-width: 50px;
}
.float_top_btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
}
.float_side_btn {
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 2000;
}

.float_side_btn a {
    writing-mode: vertical-rl;
    color: #fff;
    background-color: #4c8b7f;
    letter-spacing: 2px;
    padding: 24px 16px;
    border-radius: 10px 0px 0px 10px;
    font-family: 'Noto Sans JP';
    font-weight: 600;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.float_side_btn a:before{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(img/common/side_btn_img.png);
}
/*=============================フッター　↑=============================*/



/*募集職種一覧==========================================================================================================
====================================================================*/
article.page-template{
    margin-top: 0;
}
section.header_pattern01 {
    padding: 0;
    position: relative;
}
section.header_pattern01 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: bottom;
}
section.header_pattern01 .ttl_area {
    position: absolute;
    width: 440px;
    height: 90px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
h1.page_ttl span.pg_jp {
    font-size: 48px;
    display: block;
    font-family: 'Noto Serif JP';
}
h1.page_ttl span.pg_jp:after {
    content: '';
    display: block;
    height: 10px;
    width: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/common/page_ttl_line.png);
    margin: 10px auto;
}
span.pg_en {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 400;
}
span.pg_en_mt10{
	display:block;
	margin: -20px;
}
article.page-template h2.ttl {
    margin-bottom: 50px;
}
h2.ttl span.pg_jp {
    font-size: 30px;
    text-align: center;
    display: block;
    font-family: 'Noto Serif JP';
}
.line_btn_area span.comment {
    color: #4C8B7F;
    display: block;
    text-align: center;
    font-family: 'Noto Serif JP';
}
.line_btn_area {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}
.line_btn_area a {
    display: block;
    width: 100%;
    background-color: #06C755;
    padding: 10px 40px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    font-size: 20px;
    margin-top: 16px;
    font-family: 'Noto Serif JP';
}
.line_btn_area_job a {
    width: 140%;
	font-size: 18px;
    padding: 10px 36px;
}
.line_btn_area a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background-image: url(img/common/icon_line_btn.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 24px;
}
.line_btn_area_job a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 35px;
    background-image: url(img/common/icon_line_btn.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 24px
}
.line_btn_area a:after{
    content: '';
    display: block;
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background-image: url(img/common/link_arrow_r_w.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.flow_area ul li .job_line a img.logo{
	display:block;
	width:100%;
	max-width:85px;
}
section.page-recruitment-type.type_list {
    padding-top: 0;
	padding-bottom: 200px;
}

.list_area > ul > li > .flex_bx {
    padding: 24px 150px;
    border-top: 3px dotted #ccc;
    display: flex;
}
.list_area > ul > li > .flex_bx .flex_bx_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.list_area > ul > li > .flex_bx .flex_bx_row:first-child {
    text-align: center;
    max-width: 30%;
    flex: 30%;
    padding-right: 8%;
}
.list_area > ul > li > .flex_bx .flex_bx_row:first-child h3{
    font-weight: 500;
    font-size: 24px;
    font-family: 'Noto Sans JP';    
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70%;
    flex: 70%;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li {
    flex: 33.3333%;
    max-width: 33.3333%;
    padding: 1%;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a {
    display: block;
    padding: 16px 24px;
    border-radius: 50px;
    position: relative;
    color: #fff;
    font-family: 'Noto Serif JP';
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:after {
    content: '';
    display: block;
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    background-image: url(img/common/link_arrow_r_w.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_kango) {
    background-color: #D9757A;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_kensagishi) {
    background-color: #BCC87B;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_housha) {
    background-color: #7787BB;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_eiyo) {
    background-color: #F0E77B;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_shougai) {
    background-color: #EEAC60;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_ijika) {
    background-color: #9D85BE;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_soumu) {
    background-color: #88C5B2;
}
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li a:has(span.career_type_keiri) {
    background-color: #88C5B2;
}




/*働く環境==========================================================================================================
====================================================================*/
.page-template-page-support section.page-support:nth-child(odd) {
    background-color: #FAF8F4;
}
#sup04{
	padding-bottom: 200px;
}
h2.tl02 {
    text-align: center;
    letter-spacing: 2px;
}
h2.tl02 span.pg_en {
    color: #4C8B7F;
}
h2.tl02 span.pg_en_labo {
    color: #BCC87B;
}
h2.tl02 span.pg_en_housha {
    color: #7787BB;
}
h2.tl02 span.pg_en_ijika {
    color: #9D85BE;
}
h2.tl02 span.pg_en_shougai {
    color: #EEAC60;
}
h2.tl02 span.pg_en_kanei {
    color: #F0E77B;
}
h2.tl02 span.pg_en_gyoumu {
    color: #A3BBDB;
}
h2.tl02 span.pg_en_kei_sou {
    color: #A3BBDB;
}


h2.tl02 span.pg_en:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/page/h2_ttl_img02.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_labo:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_labo.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_housha:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_housha_01.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_ijika:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_ijika_01.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_shougai:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_shougai_01.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_kanei:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_kanei_01.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_gyoumu:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_gyoumu_01.png);
    margin: -20px auto 0px auto;
}
h2.tl02 span.pg_en_kei_sou:before {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_kei_sou_01.png);
    margin: -20px auto 0px auto;
}

.welfare_area ul {
    display: flex;
    flex-wrap: wrap;
}
.welfare_area ul li {
    display: flex;
    flex: 50%;
    max-width: 50%;
    padding: 32px 24px;
}
.welfare_area ul li .w_box_img{
    flex: 30%;
    max-width: 30%;
}
h3.ttl01 {
    font-size: 22px;
    font-family: 'Noto Sans JP';
    color: #4c8b7f;
    margin-bottom: 16px;
    font-weight: 600;
}
.w_box {
    padding-left: 24px;
    flex: 70%;
    max-width: 70%;
}
.h3_txt {
    line-height: 2;
    font-family: 'Noto Sans JP';
    font-weight: 300;
}
.child-care_area ul {
    display: flex;
    flex-wrap: wrap;
}
.child-care_area ul li {
    flex: 23%;
    max-width: 23%;
    margin-right: 2.5%;
}
.child-care_area ul li h3.ttl01 {
    text-align: center;
}
.child-care_area ul li:last-child {
    margin-right: 0;
}
.child-care_area ul li img {
    margin-bottom: 24px;
    padding: 0px 24px;
}
.numbers_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.numbers_area ul li:nth-child(odd) {
    flex: 45%;
    max-width: 45%;
    margin-bottom: 30px;
}
.numbers_area ul li:nth-child(even) {
    flex: 52%;
    max-width: 52%;
    margin-bottom: 30px;
}
.career_cat span {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Noto Sans JP';
    display: inline-block;
    color: #707070;
    vertical-align: middle;
    width: 14%;
    padding-right: 1%;
}
.career_cat:after {
    content: '';
    width: 90%;
    height: 2px;
    margin-top: 14px;
}
.career_cat:has(.cat_jimu):after{
    background: #9D85BE;    
}
.career_cat:has(.cat_housha):after{
    background: #7787BB;    
}
.career_cat:has(.cat_kango):after{
    background: #D9757A;    
}
.career_cat:has(.cat_kensa):after{
    background: #BCC87B;    
}
.career_area ul {
    display: flex;
    flex-wrap: wrap;
}
.career_area ul li {
    flex: 31.3333%;
    max-width: 31.3333%;
    margin-right: 2%;
}
.career_area ul li:nth-child(3n) {
    margin-right: 0;
}
.career_area ul li {
    flex: 31.3333%;
    max-width: 31.3333%;
    margin-right: 3%;
    margin-bottom: 50px;
}
.career_cat {
    margin-bottom: 50px;
    display: flex;
}
.career_area {
    margin-bottom: 100px;
}
.career_area:last-of-type {
    margin-bottom: 0;
}
.career_area ul li:nth-last-child(-n + 3) {
    margin-bottom: 0;
}
.career_area.cat_kango_area ul li {
    flex: 100%;
    max-width: 100%;
}
.career_area.cat_kensa_area ul li {
    flex: 100%;
    max-width: 100%;
}

.page-template-page-faq section.page-faq:nth-child(odd) {
    background-color: #FAF8F4;
}
#faq03{
	padding-bottom: 200px;
}
/*FAQ==========================================================================================================
====================================================================*/

/*=========アコーディオン↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓=========================*/
.s_01 .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}
.s_01 .accordion_one .accordion_header {
    color: #313131;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0 20px 80px;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    /* border-bottom: 2px dashed #707070; */
    margin-top: 50px;
    font-family: 'Noto Serif JP';
    background-image: repeating-linear-gradient(90deg, #707070, #707070 10px, transparent 10px, transparent 14px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
}
.s_01 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    /* width: 40px; */
    height: 40px;
    /* border: 1px solid #fff; */
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #313131;
    border-radius: 10px;
    width: 18px;
    height: 2px;
    position: absolute;
    top: 8px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
    width: 2px;
    height: 18px;
    top: 0px;
    left: 8px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 16px;
    box-sizing: border-box;
}
.s_01 .accordion_one .accordion_inner .box_one {
  height: auto;
}
.s_01 .accordion_one .accordion_inner .txt_a_ac {
    margin: 0;
    font-family: 'Noto Sans JP';
    font-weight: 300;
    line-height: 2;
}
.s_01 .accordion_one .accordion_header:before {
    content: '';
    width: 50px;
    height: 50px;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/page/faq_q.png);
    position: absolute;
    left: 20px;
    margin: auto;
    top: 0;
    bottom: 0;
}
@media screen and (max-width: 1024px) {

  .s_01 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
    .s_01 .accordion_one .accordion_header {
        font-size: 16px;
    }
.s_01 .accordion_one .accordion_header {
    padding: 16px 56px 16px 80px;
}
}
/*=========アコーディオン↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑=========================*/

form .note {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 50px;
}
span.required {
    color: #F80202;
}
form table {
    width: 100%;
    margin-bottom: 50px;
}
form table th {
    width: 40%;
    font-size: 24px;
    padding: 24px;
    vertical-align: middle;
    font-family: 'Noto Sans JP';
    font-weight: bold;
}
form table td {
    width: 60%;
    font-size: 20px;
    padding: 45px 0;
    vertical-align: middle;
    font-family: 'Noto Sans JP';
    font-weight: 400;
}
form table td input {
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    width: 100%;
    padding: 14px 16px;
}
input.age {
    width: 15%;
    display: inline-block;
    margin-right: 10px;
}
form table td:has(input.age) {
    font-size: 16px;
}
form table td input.experience {
    width: auto;
    vertical-align: middle;
    display: inline-block;
}
form table td span.mwform-radio-field-text {
    display: inline-block;
    vertical-align: middle;
}

form table td textarea {
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    width: 100%;
    padding: 4px;
}

form table td span.select_frame {
    display: block;
    width: 50%;
    position: relative;
}
form table td select {
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    width: 100%;
    padding: 14px 16px;
    display: block;
    z-index: 1;
    position: relative;
}
form table td span.select_frame::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/common/down-arrow.png);
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    z-index: -1;
    margin: auto;
}
.privacy_area span {
    font-size: 20px;
    text-align: center;
    display: block;
}
.check label {
    display: flex;
    justify-content: center;
}
.privacy_area {
    font-family: 'Noto Sans JP';
}
.privacy_area > span {
    width: 200px;
    margin: 0 auto 16px;
    border-bottom: 1px solid #313131;
    padding-bottom: 4px;
}
.submit_area {
    margin-top: 24px;
}
.submit_area input.submit {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 24px 80px;
    font-size: 22px;
    background-color: #4c8b7f;
    color: #fff;
    line-height: 1;
    border: 2px solid #4c8b7f;
    border-radius: 10px;
    transition: 0.4s;
}
.submit_area input.submit:hover{
    color: #4c8b7f;
    background-color: #fff;
}

.check {
    text-align: center;
}

.voice_sp{
    display: none;
}

/*施設紹介　詳細==========================================================================================================
====================================================================*/
article.single {
    margin-top: 0;
}
section.top_category .inn1400 {
}
.place_clinic_img {
    width: 90%;
    margin-right: calc(50% - 50vw);
}
.place_clinic_img img {
    object-fit: cover;
    border-radius: 30px 0px 0px 30px;
    aspect-ratio: 637 / 270;
    width: 100%;
}
.place_clinic_name.flex_bx_row_cl {
    width: 40%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.flex_bx_cl {
    display: flex;
}
.place_clinic_name h2 {
    font-size: 40px;
    font-family: 'Noto Serif JP';
}
section.place_clinic:has(.place_clinic_img) {
    padding-top: 0;
    margin-top: -7%;
}
.features_area {
    text-align: center;
    font-size: 22px;
    line-height: 2;
    margin-top: 50px;
    font-family: 'Noto Serif JP';
}
.bg_cl_01 {
    background-color: #FAF8F4;
}
.data_area.fl_bx {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.fl_bx_row {
    max-width: 46%;
}
.strength_img.scfadeIn.is-show {
    margin-top: 50px;
}
section.place_clinic.bg_cl_01.strength_sec {
    padding-top: 0;
}
.access_area {
    padding: 50px;
    margin-top: 50px;
    border-radius: 30px;
}
.place_access_logo img {
    width: 100%;
    max-width: 500px;
    margin-bottom: 50px;
}
.place_access_txt {
    font-size: 26px;
    line-height: 1.5;
    color: #4C8B7F;
    margin-bottom: 30px;
}
.place_access_add_tel {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 2;
}
.place_access_how_to {
    font-family: 'Noto Sans JP';
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 2;
}
.place_access_map {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
}
.place_access_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.place_clinic.place_access {
    padding-bottom: 0;
}
article.single-place {
}
article.single-place section.top_place {
    padding-bottom: 150px;
}


/*先輩の声　詳細==========================================================================================================
====================================================================*/
section.header_pattern02.post_voice {
    padding-top: 0px;
}
article.single-voice h1.page_ttl span.pg_jp:after {
}
.voice_top_box {
    display: flex;
    flex-wrap: wrap;
}
.voice_main_img img {
    object-fit: cover;
    object-position: top;
    border-radius: 0px 0px 0px 50px;
    aspect-ratio: 1356 / 977;
}
.voice_top_box .inn1400 {
    padding-top: 11%;
    position: relative;
}
.voice_top_box h1.page_ttl {
    text-align: center;
}
.voice_main_img {
    max-width: 70%;
    flex: 70%;
    position: relative;
    z-index: 2;
}
.voice_main_txt {
    font-size: 28px;
    position: absolute;
    bottom: 10%;
    width: 500px;
    background-color: #fff;
    z-index: 100;
    display: block;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 5px 6px 0px #ccc;
    font-family: 'Noto Serif JP';
    text-align: center;
}
.kangoshi .voice_main_txt {
    box-shadow: 5px 6px 0px #D9757A;
}
.kangoshi span.post_voice_main_bg {
    background-color:rgba(217 117 122 / 50%);
}
.voice_main_txt_kanei{
	font-size:28px;
}
.voice_category span {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}
.housha .voice_category {
    background-color: #7787bb;
}
.housha .voice_main_txt {
    box-shadow: 5px 6px 0px #7787BB;
}

.rinsho .voice_category {
    background-color: #BCC87B;
}
.rinsho span.post_voice_main_bg {
    background-color:rgba(188 200 123 / 50%);
}
.rinsho .voice_main_txt {
    box-shadow: 5px 6px 0px #BCC87B;
}

.kanei .voice_category {
    background-color: #F0E77B;
}
.kanei span.post_voice_main_bg {
    background-color:rgba(240 231 123 / 50%);
}
.kanei .voice_main_txt {
    box-shadow: 5px 6px 0px #F0E77B;
}
.shougai .voice_category {
    background-color: #EEAC60;
}
.shougai span.post_voice_main_bg {
    background-color:rgba(238 172 96 / 50%);
}
.shougai .voice_main_txt {
    box-shadow: 5px 6px 0px #EEAC60;
}
.ijika .voice_category {
    background-color: #9D85BE;
}
.ijika span.post_voice_main_bg {
    background-color:rgba(157 133 190 / 50%);
}
.ijika .voice_main_txt {
    box-shadow: 5px 6px 0px #9D85BE;
}

.kei .voice_category {
    background-color: #88C5B2;
}
.soumukei .voice_category {
    background-color: #88C5B2;
}
.soumukei span.post_voice_main_bg {
    background-color:rgba(136 197 178 / 50%);
}
.soumukei .voice_main_txt {
    box-shadow: 5px 6px 0px #88C5B2;
}
.gyoumu .voice_category {
    background-color: #A3BBDB;
}
.gyoumu span.post_voice_main_bg {
    background-color:rgba(163 187 219 / 50%);
}
.gyoumu .voice_main_txt {
    box-shadow: 5px 6px 0px #A3BBDB;
}
.kangoshi .voice_category {
    background-color: #D9757A;
}

.voice_category {
    line-height: 1;
    padding: 10px 0;
    font-size: 20px;
    border-radius: 50px;
    margin-top: 50px;
}
span.post_voice_main_bg {
    display: block;
    width: 90%;
    height: 50%;
    position: absolute;
    top: 40%;
    border-radius: 0 70px 70px 0;
    background-color: #ddd;
    z-index: 0;
}
.housha span.post_voice_main_bg{
    background-color: #7787bb73;    
}
.housha h2.tl02 span.pg_en:before {
    background-image: url(img/page/h2_ttl_img02_housha.png);
}
.housha h2.tl02 span.pg_en {
    color: #7787BB;
}




.qa_box {
    display: flex;
}
.qa_box_row.img_area01 {
    flex: 45%;
    max-width: 45%;
    position: relative;
    z-index: 1;
}
.qa_box_row.img_area02 {
    flex: 45%;
    max-width: 45%;
    position: relative;
}
.qa_box_row.text_area01 {
    flex: 55%;
    max-width: 55%;
    background-color: #fff;
    padding: 120px 100px;
    border-radius: 0px 0px 70px 0px;
    position: relative;
    z-index: 0;
}
.qa_box_row.text_area02 {
    flex: 55%;
    max-width: 55%;
    background-color: #fff;
    padding: 120px 100px;
    border-radius: 70px 0px 0px 0px;
}
.qa_detail h2 {
    font-size: 30px;
    margin-bottom: 24px;
    display: flex;
    line-height: 1.4;
    font-weight: 500;
    font-size: 24px;
}
.qa_detail h2:before {
    content: 'ー';
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}
.housha .qa_detail h2 {
    color: #7787BB;
}
.rinsho .qa_detail h2 {
    color: #BCC87B;
}
.ijika .qa_detail h2 {
    color: #9D85BE;
}
.kei .qa_detail h2 {
    color: #88C5B2;
}
.shougai .qa_detail h2 {
    color: #EEAC60;
}
.kanei .qa_detail h2 {
    color: #F0E77B;
}
.gyoumu .qa_detail h2 {
    color: #A3BBDB;
}
.soumukei .qa_detail h2 {
    color: #88C5B2;
}
.kangoshi .qa_detail h2 {
    color: #D9757A;
}
.qa_box_row.img_area01 img {
    border-radius: 0px 40px 0px 40px;
    position: absolute;
    height: 80%;
    margin: auto;
    top: 0;
    bottom: 0;
    right: -50px;
    object-fit: cover;
}
.qa_box_row.text_area01 .qa_inbox .qa_detail:first-child {
    margin-bottom: 30px;
}
.answer {
    line-height: 2;
}
.qa_box_row.img_area02 img {
    border-radius: 0px 40px 0px 40px;
    position: absolute;
    height: 80%;
    margin: auto;
    top: -60px;
    left: -50px;
    object-fit: cover;
}
section.post_voice .qa_box:first-child {
    margin-bottom: 150px;
}

.housha .qa_box_row.text_area01,.housha .qa_box_row.text_area02{
    border: 2px solid #7787BB;
}
.rinsho .qa_box_row.text_area01,.rinsho .qa_box_row.text_area02{
    border: 2px solid #BCC87B;
}
.ijika .qa_box_row.text_area01,.ijika .qa_box_row.text_area02{
    border: 2px solid #9D85BE;
}
.kei .qa_box_row.text_area01,.kei .qa_box_row.text_area02{
    border: 2px solid #88C5B2;
}
.kanei .qa_box_row.text_area01,.kanei .qa_box_row.text_area02{
    border: 2px solid #F0E77B;
}
.shougai .qa_box_row.text_area01,.shougai .qa_box_row.text_area02{
    border: 2px solid #EEAC60;
}
.gyoumu .qa_box_row.text_area01,.gyoumu .qa_box_row.text_area02{
    border: 2px solid #A3BBDB;
}
.soumukei .qa_box_row.text_area01,.soumukei .qa_box_row.text_area02{
    border: 2px solid #88C5B2;
}
.kangoshi .qa_box_row.text_area01,.kangoshi .qa_box_row.text_area02{
    border: 2px solid #D9757A;
}
.movie_txt {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin: 50px 0;
}
.housha .movie_txt {
    color: #7787BB;
}
.movie_area {
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}
.movie_area iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 5px solid #7787BB;
}
.housha .movie_area iframe {
    border: 5px solid #7787BB;
}
section.post_voice.movie_sec {
    padding-top: 0;
}
.free_area h3 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    line-height: 1.4;
    font-weight: 500;
}
.free_box_txt {
    line-height: 2;
}
.housha .free_area h3 {
    color: #7787BB;
}
.free_area h3:before {
    content: 'ー';
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}
.free_box {
    background-color: #7787bb26;
}
.free_box_kango{
	background-color: rgba(217 117 122 / 30%);
}
.free_box_gyoumu{
	background-color: rgba(163 187 219 / 30%);
}
.free_area {
    position: relative;
    height: 1200px;
    margin-top: 50px;
}
.free_box.box01 {
    width: 52%;
    padding: 100px;
    border-radius: 0px 0px 0px 60px;
    position: absolute;
    left: 0;
    top: 0;
}
.free_box.box02 {
    width: 52%;
    padding: 100px;
    border-radius: 0px 60px 0px 0px;
    position: absolute;
    right: 0;
    top: 10%;
}   
.free_box.box03 {
    width: 70%;
    padding: 100px;
    border-radius: 0px 0px 0px 60px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
section.post_voice.banner_area img {
    max-width: 450px;
    margin: 0 auto;
}


section.top_voice.post_voice {
    background-image: url(img/top/support_bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}
.qa_box:nth-child(2) {
    flex-wrap: wrap-reverse;
}
/*職種紹介　詳細==========================================================================================================
====================================================================*/
section.post_ji.main_sec {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -100px;
}
section.post_ji.main_sec .inn1400 {
    display: flex;
}
.ji_main_sec_row.img {
    flex: 80%;
    max-width: 80%;
    padding-right: 5%;
    margin-left: calc(50% - 50vw);
}
.ji_main_sec_row.txt {
    flex: 30%;
    max-width: 30%;
    display: flex;
    align-items: end;
    padding-bottom: 50px;
}
h2.job_introduction_ttl{
    font-size: 50px;
    font-family: 'Noto Serif JP';
    font-weight: 500;
    text-align: right;
    position: relative;
}

h2.job_introduction_ttl {
    font-size: 50px;
    font-family: 'Noto Serif JP';
    font-weight: 500;
    text-align: right;
    position: relative;
    margin-bottom: 50px;
}
h2.job_introduction_ttl:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/page/h2_ttl_img02.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_labo:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_labo.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_housha:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_housha_01.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_ijika:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_ijika_01.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_shougai:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_shougai_01.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_kanei:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_kanei_01.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_gyoumu:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_gyoumu_01.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}
h2.job_introduction_ttl_kei_sou:after {
    content: '';
    display: block;
    width: 140px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_kei_sou_01.png);
    position: absolute;
    right: 0px;
    bottom: -20px;
}


.kangoshi h2.job_introduction_ttl:after {
    background-image: url(img/page/h2_ttl_img02_kangoshi.png);
}
.kangoshi h2.tl02 span.pg_en:before {
    background-image: url(img/page/h2_ttl_img02_kangoshi.png);
}
.kangoshi .time_box:after {
    background-image: url(img/common/time_box_arrow_kangoshi.png);
}


















.ji_main_sec_row.txt .h2_txt {
    font-family: 'Noto Serif JP';
}
.bg_cl_02 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/common/stripe_bg.png);
}
.job_content h3 {
    text-align: center;
    display: block;
    background-color: #fff;
    padding: 16px 40px;
    font-size: 28px;
    font-family: 'Noto Serif JP';
    margin: 0 auto;
    width: 300px;
    line-height: 1;
    border-radius: 10px;
}
section.post_ji.job_content_sec {
    padding-top: 80px;
}
.job_content_list {
    text-align: center;
    font-weight: 300;
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 20px 40px 20px;
    line-height: 2;
    margin-top: -40px;
}
.inn800.workflow_area {
    margin-top: 100px;
}
.workflow_area .bx .lbx{
    width: 50%;
    padding: 0 50px;
}
.workflow_area .bx .rbx {
    width: 50%;
}
.job_time_notation {
    position: relative;
}
span.notation {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto';
    margin-top: 32px;
}
span.notation_bg {
    display: block;
    width: 60px;
    height: 30px;
    border-radius: 50% / 100% 100% 0 0;
    background: #ffffff;
    margin: 0 auto;
}
.kangoshi span.notation_bg{
    background: #D9757A;
}
.rinsho span.notation_bg{
    background: #BCC87B;
}
.housha span.notation_bg{
    background: #7787BB;
}
.ijika span.notation_bg{
    background: #9D85BE;
}
.shougai span.notation_bg{
    background: #EEAC60;
}
.kanei span.notation_bg{
    background: #F0E77B;
}
.gyoumu span.notation_bg{
    background: #A3BBDB;
}
.kei_sou span.notation_bg{
    background: #88C5B2;
}

.job_time {
    font-size: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 30px;
    font-family: 'Roboto';
}
.job_time_detail {
    margin-top: 30px;
    line-height: 2;
    font-weight: 300;
}
.time_box:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/common/time_box_arrow.png);
    margin: 60px auto 20px auto;
}
.time_box_labo:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_labo_02.png);
    margin: 60px auto 20px auto;
}
.time_box_housha:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_housha_02.png);
    margin: 60px auto 20px auto;
}
.time_box_ijika:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_ijika_02.png);
    margin: 60px auto 20px auto;
}
.time_box_shougai:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_shougai_02.png);
    margin: 60px auto 20px auto;
}
.time_box_kanei:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_kanei_02.png);
    margin: 60px auto 20px auto;
}
.time_box_gyoumu:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_gyoumu_02.png);
    margin: 60px auto 20px auto;
}
.time_box_kei_sou:after {
    content: '';
    display: block;
    width: 20px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://imsgroup.jp/recruit-melife/wp-content/uploads/2025/08/ttle_line_kei_sou_02.png);
    margin: 60px auto 20px auto;
}
.workflow_area .bx .lbx .time_box:last-of-type:after {
    display: none;
}
.workflow_area .bx {
    margin-top: 50px;
}
.time_box_img img {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 150px;
}
.time_box_img_ht400{
	height:450px;
}
@media screen and (max-width:768px) {
  .time_box_img_ht400{
	height:0;
	}
}
.time_box_img:last-child img {
    margin: 0;
}
.merit_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.merit_area ul li {
    flex: 23%;
    max-width: 23%;
    padding: 24px;
    border-radius: 20px;
}
.merit_area ul li.merit_area03{
	max-width:31.3333%;
}
.merit_area ul li h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 30px;
    border-bottom: 4px #ccc;
    border-style: dotted;
    margin-bottom: 30px;
    text-align: center;
}

gyoumu .merit_area ul li .syougai_h3{
	font-size:20px;
}
.job_time_detail-red{
	color:red;
}
.merit_area {
    margin-top: 50px;
}
.kangoshi .merit_area ul li h3 {
    color: #D9757A;
    border-bottom: 4px #d9757ad1 dotted;
}
.rinsho .merit_area ul li h3 {
    color: #BCC87B;
    border-bottom: 4px #BCC87B dotted;
}
.housha .merit_area ul li h3 {
    color: #7787BB;
    border-bottom: 4px #7787BB dotted;
}
.ijika .merit_area ul li h3 {
    color: #9D85BE;
    border-bottom: 4px #9D85BE dotted;
}
.shougai .merit_area ul li h3 {
    color: #EEAC60;
    border-bottom: 4px #EEAC60 dotted;
	font-size:20px;
}
.shougai .merit_area ul li .gyoumu_h3{
		font-size:20px;
	}
.kanei .merit_area ul li h3 {
    color: #F0E77B;
    border-bottom: 4px #F0E77B dotted;
}
.gyoumu .merit_area ul li h3 {
    color: #A3BBDB;
    border-bottom: 4px #A3BBDB dotted;
}
.kei_sou .merit_area ul li h3 {
    color: #88C5B2;
    border-bottom: 4px #88C5B2 dotted;
	font-size:22px;
}

.kangoshi h2.tl02 span.pg_en {
    color: #D9757A;
}
.rinsho h2.tl02 span.pg_en {
    color: #BCC87B;
}
.housha h2.tl02 span.pg_en {
    color: #7787BB;
}
.ijika h2.tl02 span.pg_en {
    color: #9D85BE;
}
.shougai h2.tl02 span.pg_en {
    color: #EEAC60;
}
.kanei h2.tl02 span.pg_en {
    color: #F0E77B;
}
.gyoumu h2.tl02 span.pg_en {
    color: #A3BBDB;
}
.kei_sou h2.tl02 span.pg_en {
    color: #88C5B2;
}
section.message_sec {
    padding-top: 0;
}
.message_area {
    padding: 40px 0;
    position: relative;
}
.philosophy_job {
    background-color: #fff;
    display: inline-block;
    padding: 16px 56px;
    border-radius: 0px 30px 30px 0px;
    margin-bottom: 30px;
}
.message_area h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 0 80px;
}
.kangoshi .message_area h3{
    color: #D9757A;
}
.message_area {
    padding: 40px 0;
    position: relative;
    margin-top: 50px;
    border-radius: 30px;
}
.message_area .h3_txt {
    padding: 0 80px;
}
.message_area02 {
    display: flex;
    padding: 0 50px;
}
h3.catchcopy {
    flex: 20%;
    max-width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.message_area02 .h3_txt {
    flex: 80%;
    max-width: 80%;
    padding-left: 5%;
}
h3.catchcopy span {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #ccc;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
}
.message_area02 {
    margin-top: 50px;
}
.kangoshi h3.catchcopy span {
    background-color: #d9757a61;
}
section.career_sec .career_area {
    margin-top: 50px;
}
section.career_sec .career_area img {
    border-radius: 30px;
    margin-bottom: 20px;
}
section.career_sec .career_area h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}
.career_area .link_area{
    margin-bottom: 0;
}
.kangoshi a.link_type {
    border: 2px solid #D9757A;
}
.kangoshi a.link_type:hover {
    color: #fff;
    background-color: #D9757A;
}
.kangoshi section.career_sec .career_area h3{
    color: #D9757A;    
}
.rinsho a.link_type {
    border: 2px solid #BCC87B;
}
.rinsho a.link_type:hover {
    color: #fff;
    background-color: #BCC87B;
}
.rinsho section.career_sec .career_area h3{
    color: #BCC87B;    
}
.housha a.link_type {
    border: 2px solid #7787BB;
}
.housha a.link_type:hover {
    color: #fff;
    background-color: #7787BB;
}
.housha section.career_sec .career_area h3{
    color: #7787BB;    
}
.ijika a.link_type {
    border: 2px solid #9D85BE;
}
.ijika a.link_type:hover {
    color: #fff;
    background-color: #9D85BE;
}
.ijika section.career_sec .career_area h3{
    color: #9D85BE;    
}
.shougai a.link_type {
    border: 2px solid #EEAC60;
}
.shougai a.link_type:hover {
    color: #fff;
    background-color: #EEAC60;
}
.shougai section.career_sec .career_area h3{
    color: #EEAC60;    
}
.kanei a.link_type {
    border: 2px solid #F0E77B;
}
.kanei a.link_type:hover {
    color: #fff;
    background-color: #F0E77B;
}
.kanei section.career_sec .career_area h3{
    color: #F0E77B;    
}
.gyoumu a.link_type {
    border: 2px solid #A3BBDB;
}
.gyoumu a.link_type:hover {
    color: #fff;
    background-color: #A3BBDB;
}
.gyoumu section.career_sec .career_area h3{
    color: #A3BBDB;    
}
.kei_sou a.link_type {
    border: 2px solid #88C5B2;
}
.kei_sou a.link_type:hover {
    color: #fff;
    background-color: #88C5B2;
}
.kei_sou section.career_sec .career_area h3{
    color: #88C5B2;    
}


.flow_area {
    margin-top: 50px;
}
.flow_area ul li .flow_in {
    background-color: #FAF8F4;
    border-radius: 10px;
    display: flex;
    padding: 24px 80px;
}
.flow_area ul li{
    overflow: hidden;
}
.flow_area ul li:after {
    content: '';
    display: block;
    width: 40px;
    height: 30px;
    margin: 20px auto;
    background-image: url(img/common/flow_arrow.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.flow_area ul li:last-child:after {
    display: none;
}
.flow_area ul li .flow_in h3 {
    font-size: 20px;
    font-family: 'Noto Serif JP';
    flex: 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    padding-right: 16px;
}
.flow_area ul li .flow_in h3:before {
    content: '';
    display: block;
    width: 60px;
    height: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
}
.career_flow ul li.flow01 h3:before {
    background-image: url(img/page/flow_img_c01.png);
}
.career_flow ul li.flow02 h3:before {
    background-image: url(img/page/flow_img_c02.png);
}
.career_flow ul li.flow03 h3:before {
    background-image: url(img/page/flow_img_c03.png);
}
.career_flow ul li.flow04 h3:before {
    background-image: url(img/page/flow_img_c04.png);
}
.flow_area ul li .flow_in .h3_txt {
    display: flex;
    align-items: center;
    width: 60%;
}
.flow_area ul li .flow_in .h3_txt_line{
	width:22%;
}

section.post_ji .note {
    font-family: 'Noto Serif JP';
    margin-top: 30px;
    text-align: center;
}

.newg_flow ul li.flow01 h3:before {
    background-image: url(img/page/flow_img_n01.png);
}
.newg_flow ul li.flow02 h3:before {
    background-image: url(img/page/flow_img_n02.png);
}
.newg_flow ul li.flow03 h3:before {
    background-image: url(img/page/flow_img_n03.png);
}
.newg_flow ul li.flow04 h3:before {
    background-image: url(img/page/flow_img_n04.png);
}
.newg_flow ul li.flow05 h3:before {
    background-image: url(img/page/flow_img_n05.png);
}
.newg_flow ul li.flow06 h3:before {
    background-image: url(img/page/flow_img_n06.png);
}
.single-job_introduction .loopslide {
    border-radius: 0;
    flex: 0 0 calc(100% / 4);
}
.single-job_introduction .slider-track {
  gap: 0;
}
.single-job_introduction .loopslide img {
    border-radius: 0px;
}
.single-job_introduction .loopslide a {
    position: relative;
}
.single-job_introduction .loopslide a span {
    border-radius: 0 10px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    padding: 8px 24px;
    font-weight: 500;
}


.single-job_introduction .loopslide:hover{
    transition: 0.4s;
}
.single-job_introduction .loopslide:has(span.kangoshi):hover {
    border: 5px solid #D9757A;
}
.single-job_introduction .loopslide:has(span.rinsho):hover {
    border: 5px solid #BCC87B;
}
.single-job_introduction .loopslide:has(span.housha):hover {
    border: 5px solid #7787BB;
}
.single-job_introduction .loopslide:has(span.ijika):hover {
    border: 5px solid #9D85BE;
}
.single-job_introduction .loopslide:has(span.shougai):hover {
    border: 5px solid #EEAC60;
}
.single-job_introduction .loopslide:has(span.kanei):hover {
    border: 5px solid #F0E77B;
}
.single-job_introduction .loopslide:has(span.gyoumu):hover {
    border: 5px solid #A3BBDB;
}
.single-job_introduction .loopslide:has(span.kei_sou):hover {
    border: 5px solid #88C5B2;
}



section.post_ji.flow_sec:nth-of-type(2) {
    padding-top: 0;
}
section.top_category.post_ji {
    padding-bottom: 200px;
}
/*先輩の声一覧ページ*/
.page-voice{
	padding-bottom: 200px;
}
.voice_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.voice_list ul li {
    flex: 31.3333%;
    max-width: 31.3333%;
    margin-bottom: 50px;
    padding: 0 3%;
}
.page-template-page-mentors-voice .cat_mv span {
    background: #ddd;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-right: 4px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
/*============================================================================================

~1500px

===============================================================================================*/
@media screen and (max-width:1500px){
.place_clinic_img {
    width: 80%;
}
}







/*============================================================================================

~1400px

===============================================================================================*/
@media screen and (max-width:1400px){
.inn1400 {
    padding: 0 20px;
}
.float_side_btn {
        right: 100px;
        top: unset;
        bottom: 16px;
    }
.float_side_btn a {
        border-radius: 10px;
        padding: 16px 40px;
        writing-mode: unset;
    }
.float_side_btn a:before {
    margin-bottom: 0;
    margin-right: 10px;
    margin-top: 4px;
}
}



/*============================================================================================

~1366px

===============================================================================================*/
@media screen and (max-width:1366px){

/*=============================メガメニュー　↓=============================*/
.header-item a {
    font-size: 13px;
}
/*=============================メガメニュー　↑=============================*/

.top_message_img02 {
    left: 2%;
}
.job_list ul li a span {
    font-size: 14px;
}
.archslider {
    height: 70vh;
}
.voice_main_txt {
    font-size: 28px;
    width: 400px;
    padding: 30px;
}
.voice_category span {
    font-size: 14px;
}
.voice_category {
    font-size: 20px;
    margin-top: 20px;
}
}






/*============================================================================================

~1280px

===============================================================================================*/
@media screen and (max-width:1280px){
.logo_area {
    width: 27%;
}
.entry_btn a {
    font-size: 14px;
}
/*=============================メガメニュー　↓=============================*/
    .header-item a {
        font-size: 12px;
        padding: 16px 8px 19px 8px;
    }
/*=============================メガメニュー　↑=============================*/

section.top_info .lbx,section.top_info .rbx {
    float: none;
    width: 100%;
}
    section.top_info .lbx {
        margin-bottom: 50px;
        justify-content: center;
    }
.info_area_child.date {
    width: 23%;
}
.info_area_child.type {
    width: 23%;
}
.welfare_area ul li .w_box_img {
    display: flex;
    justify-content: center;
    align-items: center;
}
    .welfare_area ul li img {
        aspect-ratio: 1 / 1;
    }
.free_area {
    height: 1370px;
}
h3.catchcopy span {
    font-size: 18px;
}
.loopslide a h3 {
    font-size: 14px;
}
.place_clinic_name h2 {
    font-size: 30px;
    text-align: center;
}
}
/*============================================================================================

~1240px

===============================================================================================*/
@media screen and (max-width:1240px){
.inn1240 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.free_area {
    height: 1500px;
}
}
/*============================================================================================

~1200px

===============================================================================================*/
@media screen and (max-width:1200px){
.inn1200
 {
    padding: 0 20px;
}
}


/*============================================================================================

~1080px

===============================================================================================*/
@media screen and (max-width:1080px){

header {
    height: 80px;
}
/*=============================メガメニュー　↓=============================*/
nav.header-nav.pc_nav {
    display: none;
}
/*=============================メガメニュー　↑=============================*/

/*=============================ハンバーガーメニュー　↓=============================*/

nav.hd_nv {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .el_humburger {
        width: 100%;
        height: 100%;
    }
.el_humburger {
    position: relative;
    padding-top: 0px;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto;
    color: #000;
    text-align: center;
}
.el_humburger_wrapper {
    width: 82px;
    display: inline-block;
    padding: 29.5px 24px;
    background-color: #4C8B7F;
    position: absolute;
    right: 0;
}
.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}
.el_humburger span.el_humburger_bar {
    display: block;
    width: 100%;
    margin: 0 auto 9px;
    height: 1px;
    background: #fff;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #fff;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}
.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}
.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}
.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.navi {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 3;
    padding: 80px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
    transform: translateZ(0) translateX(100%);
    overflow: auto;
    background-color: #fff;
}
.navi_inner {
    background-color: #4c8b7f;
}
.navi_item {
        position: relative;
        font-size: 18px;
        padding: 24px 0 0;
        border-bottom: 1px solid #ddd;
        line-height: 18px;
    }
    .navi_item a {
        color: #fff;
        display: block;
        padding-left: 10%;
        padding-bottom: 24px;
    }
.js_humburgerOpen .navi {
  transform: translateZ(0) translateX(0);
}
.navi_item.op_innerLink {
  cursor: pointer;
}
.el_spChildNavOpen {
        position: absolute;
        top: 16px;
        right: 6%;
        z-index: 20;
        -webkit-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        padding: 10px;
    }
.js_openParent.js_fire>.el_spChildNavOpen {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.js_openParent.js_fire>.el_spChildNavOpen>.el_spChildNavOpen_wrapper:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}
.el_spChildNavOpen_wrapper {
  position: relative;
  width: 15px;
  height: 15px;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.el_spChildNavOpen_wrapper:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
}
.el_spChildNavOpen_wrapper:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 0px);
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
    .nav_child {
        background-color: #FAF8F4;
    }
    .nav_child_item {
        position: relative;
        font-size: 14px;
    }
    .nav_child_item > a {
        color: #313131;
        padding: 24px 0 24px 10%;
        border-bottom: 1px solid #ccc;
    }
.nav_child_item:last-child {
  margin-bottom: 0px;
}
.js_openSwitch {
  cursor: pointer;
}
.js_openTarget {
  display: none;
}
.entry_btn {
    margin-left: 0;
    margin-top: 40px;
}
.entry_btn a {
        width: 85%;
        margin: 0 auto 16px;
        border-radius: 50px;
        padding: 16px 24px;
    }
    a.link_target {
        border-radius: 50px;
        padding: 16px 10px;
        width: 85%;
        margin: 0 auto 16px;
        text-align: center;
        justify-content: center;
    }
.sns a {
    display: block;
    float: none;
    margin-left: 0;
}
.sns {
    display: flex;
    width: 50%;
    justify-content: space-evenly;
    margin: 0 auto;
}
.sns img {
    width: auto;
    height: 40px;
}
	
/*=============================ハンバーガーメニュー　↑=============================*/

.ft_site_map {
    display: none;
}
.top_message_img02 {
    left: -3%;
}
.top_message_img01 {
    right: -6%
}
.top_message_img03 {
    right: 0%;
}
.info_area_child.date {
    width: 20%;
}
.info_area_child.type {
    width: 20%;
}
.archslider {
        height: 60vh;
    }
    .archslider {
        height: 60vh;
    }

.child-care_area ul li img {
    padding: 0;
    max-width: 30%;
    margin: 0 auto 24px;
}
.child-care_area ul li {
    flex: 50%;
    max-width: 50%;
    margin-right: 0;
    padding: 24px;
}
.career_area ul li {
    flex: 50%;
    max-width: 50%;
    margin-right: 0;
    margin-bottom: 50px;
    padding: 0px 24px;
}
.career_cat {
    padding: 0 24px;
}
.career_cat:after {
    width: 80%
}
.career_area {
    margin-bottom: 50px;
}
.career_area ul li:nth-last-child(-n + 3) {
    margin-bottom: 50px;
}
.career_area:last-of-type ul li {
    margin-bottom: 0;
}
.qa_box {
    flex-wrap: wrap;
}
.qa_box_row.img_area01 img {
    position: static;
    height: auto;
    width: 60%;
    margin: 0 0 50px 0;
}
.qa_box_row.img_area01 {
    flex: 100%;
    max-width: 100%;
}
    .qa_box_row.text_area01 {
        flex: 80%;
        max-width: 80%;
        margin: 0 auto;
        padding: 50px;
    }
.qa_box_row.text_area02 {
    flex: 80%;
    max-width: 80%;
    margin: 0 auto;
    padding: 50px;
}
.qa_box_row.img_area02 {
        flex: 100%;
        max-width: 100%;
        /* margin-top: 50px; */
        display: flex;
        justify-content: end;
        margin-bottom: 50px;
    }
.qa_box_row.img_area02 img {
        position: static;
        height: auto;
        margin: unset;
        width: 60%;
    }
section.post_voice.free_sec .free_box {
    position: static;
    width: 100%;
    padding: 50px;
    margin-bottom: 30px;
}
    .free_area {
        height: auto;
    }
.merit_area ul li h3 {
    font-size: 20px;
}
section.career_sec .career_area h3 {
    font-size: 20px;
}
section.post_ji.career_sec .career_area ul li {
        flex: 31.3333%;
        max-width: 31.3333%;
    }
a.link_type {
    padding: 16px;
    width: 90%;
}

.flex_bx_cl {
    flex-wrap: wrap;
}
section.top_category .inn1400 {
    padding: 0;
}
.place_clinic_img {
    width: 100%;
    margin-right: unset;
    padding-left: 10%;
}
.place_clinic_name.flex_bx_row_cl {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
}
.voice_main_txt {
    bottom: 5%;
    font-size: 24px;
}





}



/*============================================================================================

~960px

===============================================================================================*/
@media screen and (max-width:960px){
body {
    font-size: 14px;
}
.top_message_img02 {
    top: 22%;
}
.top_message_img04 {
    left: -7%;
    bottom: 8%;
}
.support_contents ul li a img {
    height: auto;
    width: 100px;
    object-fit: contain;
    margin: 0 auto 10px;
}
section.top_category .lbx {
        width: 100%;
        float: none;
        margin-bottom: 50px;
    }
section.top_category .rbx {
        width: 95%;
    }
.job_list ul li a span {
        font-size: 12px;
    }
.loopslide {
    flex: 0 0 calc((100% - 4 * 30px) / 3);
}
.archslider {
    height: 60vh;
    margin-top: 40px;
}
.archslider {
        height: 90vh;
        margin-top: 40px;
    }
.list_area > ul > li > .flex_bx {
    padding: 24px 2%;
}
section.header_pattern01 img {
    height: 400px;
    object-fit: cover;
}
section.header_pattern01 .ttl_area {
        height: 120px;
        width: 100%;
    }
section.top_category .lbx {
    position: static;
}
section.top_category .job_list h2.ttl {
    position: static;
    margin-bottom: 80px;
}
.job_list {
    display: block;
}

section.ft_entry .lbx, section.ft_entry .rbx {
    width: 100%;
    float: none;
}
section.ft_entry {
    background-position: 31% -115px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50px 50px 0 0;
    padding-bottom: 0;
}
section.ft_entry h2.ttl {
    font-size: 50px;
}
section.ft_entry .inn1400 {
    padding: 0;
}
section.ft_entry .rbx {
        width: 100%;
        float: none;
        background-color: #ccc;
        padding: 50px 0;
        margin-top: 120px;
    }
.ft_entry_txt {
    font-size: 18px;
    padding: 0 20px;
}
.career_cat span {
    width: 20%;
}
section.post_ji.main_sec .inn1400 {
    display: block;
}
.ji_main_sec_row.txt {
    max-width: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 50px;
    justify-content: end;
}
.ji_main_sec_row.txt .row_in {
    width: 70%;
}
.merit_area ul li {
    flex: 48%;
    max-width: 48%;
    padding: 24px;
    margin-bottom: 24px;
}
h3.catchcopy span {
        font-size: 14px;
    }
section.post_ji.career_sec .career_area ul li {
        flex: 100%;
        max-width: 100%;
    }
section.post_ji.career_sec .career_area ul li {
        flex: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
.career_area .link_area {
    margin-bottom: 0;
    margin-top: 24px;
}
.voice_category span {
    font-size: 16px;
    line-height: 1;
    color: #fff;
}
.job_list {
    padding-left: 0;
}
.job_list ul {
    padding-left: 20px;
}
}

/*============================================================================================

~940px

===============================================================================================*/
@media screen and (max-width:940px){
.inn940 {
    padding: 0 20px;
}
}

/*============================================================================================

~920px

===============================================================================================*/
@media screen and (max-width:920px){
.inn920 {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}
    .archslider {
        height: 75vh;
    }
    section.header_pattern02.post_voice {
        padding-bottom: 10px;
    }
.voice_top_box .inn1400 {
    padding-top: 11%;
    position: relative;
    max-width: 30%;
    flex: 30%;
}
.voice_pc{
    display: none;
}
.voice_sp{
    display: block;
}
.voice_top_box {
    display: block;
}
.voice_top_box .ttl_area {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .voice_main_txt {
        position: static;
        width: 80%;
        margin: 50px auto 0;
    }
span.post_voice_main_bg {
    display: block;
    width: 90%;
    height: 40%;
    position: absolute;
    top: 30%;
    border-radius: 0 70px 70px 0;
    background-color: #ddd;
    z-index: 0;
}
.voice_main_img {
    max-width: 100%;
    display: flex;
    justify-content: end;
}
.voice_main_img img {
    max-width: 70%;
}



}

/*============================================================================================

~768px

===============================================================================================*/
@media screen and (max-width:800px){
.inn800 {
    padding: 0 20px;
}
}

/*============================================================================================

~768px

===============================================================================================*/
@media screen and (max-width:768px){
.sp{
    display: block;
}
.pc{
    display: none;
}
section {
    padding: 50px 0;
    position: relative;
}
header {
    padding-left: 2%;
}
    .logo_area {
        width: 50%;
        position: relative;
        z-index: 100;
    }
/*=============================ハンバーガーメニュー　↓=============================*/
.navi {
        width: 100%;
    }
.navi_item {
        font-size: 16px;
        padding: 16px 0 0;
        line-height: 16px;
    }
.navi_item a {
        padding-bottom: 16px;
    }
    .el_spChildNavOpen {
        top: 7px;
        right: 6%;
    }
    .nav_child_item > a {
        padding: 16px 0px 16px 10%;
    }
/*=============================ハンバーガーメニュー　↑=============================*/
.message_txt {
        margin-bottom: 24px;
        margin-top: 40px;
    }
.top_message_img01 {
    position: static;
        width: 50%;
}
.top_message_img02 {
        position: static;
        width: 50%;
        padding-top: 80px;
    }
.top_message_img03 {
    position: static;
        width: 50%;
}
.top_message_img04 {
    position: static;
        width: 50%;
}
.top_message_img05 {
        position: static;
        width: 70%;
    }
.flex_bx {
    display: flex;
    justify-content: space-between;
}

section.top_message h2 {
        font-size: 32px;
        margin-bottom: 30px;
        line-height: 1.4;
    }

.scfadeIn.top_message_img04.is-show {
    padding-top: 80px;
}
.message_txt {
    font-size: 14px;
    line-height: 32px;
}
.tab-list {
    display: flex;
    flex-wrap: wrap;
}
.tab-list-item {
    width: 31.3333%;
    text-align: center;
    padding: 8px 10px;
    cursor: pointer;
    margin-right: 0;
    margin: 0 1% 1%;
}
.info_area a {
    display: block;
}
.info_area_child.cat_new {
    display: inline-block;
}
.info_area_child.date {
        display: inline-block;
        width: auto;
    }
.info_area_child.type {
    display: inline-block;
    width: auto
}
.info_area_child.txt {
        width: 90%;
        padding-left: 0%;
        display: inline-block;
        vertical-align: middle;
    }
.info_area a:after {
        display: inline-block;
        width: 13px;
        vertical-align: middle;
    }
.info_area_child.type span {
        padding: 4px 8px;
        font-size: 12px;
        line-height: 1;
    }
.link_area {
    overflow: hidden;
    margin: 30px 0 40px 0;
}
section.top_voice {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
h2.ttl span.en {
        /* font-size: 40px; */
        /* line-height: 50px; */
    }
    h2.ttl span.jp {
        font-size: 32px;
    }
.support_contents ul {
        flex-wrap: wrap;
    }
.support_contents ul li {
        width: 46%;
		height: 100%;
        margin: 0 auto 24px;
    }
.support_contents ul li a {
    border-radius: 50%;
}
.job_list ul li {
    flex: 50%;
    max-width: 50%;
}
section.top_category_under img {
    padding-top: 50px;
    height: 200px;
    object-fit: cover;
    object-position: 70%;
}
section.top_faq a {
    padding: 20px;
    display: block;
}
.about_ttl_box {
    display: block;
}
section.top_about{
	padding-bottom: 190px;
}
section.top_about .lbx {
    width: 100%;
    float: none;
    margin-bottom: 24px;
}
section.top_about .rbx {
        width: 100%;
        padding-left: 0;
        float: none;
        margin-bottom: 50px;
    }
section.top_about img {
    border-radius: 30px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
footer {
        padding-top: 50px;
    }
.loopslide {
    flex: 0 0 calc((100% - 4 * 30px) / 2);
}
.arrow {
    top: 28%
}
.list_area > ul > li > .flex_bx .flex_bx_row:first-child h3 {
    font-size: 18px;
}
    .archslider {
        height: 68vh;
    }

section.top_support {
    padding-top: 100px;
}
.support_contents {
    margin-top: 50px;
}
.job_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: unset;
}
.job_list ul li:first-child img {
    border-radius: 10px 0 0 0;
}
.job_list ul li:last-child img {
    border-radius: 0 0 0 10px;
}
.job_list ul li:last-child span {
    border-radius: 0 0 0 10px;
}
section.top_about .bx {
    display: flex;
    flex-wrap: wrap-reverse;
}
.ft_logo {
        margin-bottom: 50px;
        width: 80%;
        margin: 0 auto;
    }
.float_r {
    float: none;
}
.welfare_area ul {
    display: block;
}
.welfare_area ul li {
        display: flex;
        flex: 100%;
        max-width: 100%;
        padding: 24px 0;
    }
    .welfare_area ul li img {
    }
.w_box {
    padding-left: 5%;
}
    .w_box h3.ttl01 {
        text-align: left;
        font-size: 18px;
    }
.child-care_area ul li {
    flex: 100%;
    max-width: 100%;
    padding: 24px;
}
.child-care_area ul li img {
        padding: 0;
        max-width: 30%;
        margin: 0 auto 24px;
    }
.child-care_area ul li h3.ttl01 {
    text-align: center;
    font-size: 18px;
}
.numbers_area ul li:nth-child(odd),
.numbers_area ul li:nth-child(even) {
    flex: 100%;
    max-width: 100%;
}
h3.ttl01 {
    font-size: 18px;
}
.career_area ul li {
    flex: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    padding: 0px;
}
    .career_cat {
        padding: 0;
    }
    .career_cat span {
        font-size: 18px;
        width: 30%;
    }
.career_area ul li:nth-last-child(-n + 3) {
    margin-bottom: 30px;
}
form .note {
    font-size: 18px;
    margin-bottom: 20px;
}
form table th, form table td {
        display: block;
        width: 100%;
        padding: 24px 0;
    }
form table th{
    padding-bottom: 0;
    font-size: 18px;
}
form table td{
    font-size: 16px;
}
form table td span.select_frame {
    width: 100%;
}

.fl_bx_row {
    max-width: 100%;
    margin-bottom: 30px;
}
.data_area.fl_bx {
    flex-wrap: wrap;
}
.place_access_txt {
    font-size: 24px;
}
.place_access_add_tel {
    font-size: 16px;
}
h2.place_clinic_name {
        margin-top: 0;
        text-align: center;
    }

article.single-place section.top_place {
    padding-bottom: 50px;
}
    .qa_box_row.img_area02 {
        margin-bottom: 50px;
    }

section.top_category .job_list h2.ttl {
        margin-bottom: 50px;
    }

.loopslider {
    margin-top: 50px;
}
section.post_voice .qa_box:first-child {
    margin-bottom: 50px;
}
.voice_list ul li {
    flex: 50%;
    max-width: 50%;
    margin-bottom: 50px;
    padding: 0 3%;
}
section.post_ji.main_sec {
    margin-top: -60px;
}
.job_content h3 {
    width: 70%;
}
section.top_voice .archslider + .link_area {
    bottom: 36px;
}
}

/*============================================================================================

~480px

===============================================================================================*/
@media screen and (max-width:480px){
header {
        height: 60px;
        padding-left: 0;
    }

    .el_humburger_wrapper {
        width: 60px;
        padding: 19.5px 15px;
        z-index: 1000;
    }
.navi {
        padding: 0;
        top: 60px;
    }
.logo_area {
        width: 100%;
        background-color: #fff;
    }
.logo_area a {
        width: 280px;
        padding: 0;
        position: absolute;
        top: 12px;
        left: 2%;
    }
nav.hd_nv {
        z-index: 110;
        width: 60px;
        position: absolute;
        right: 0;
    }
h1.page_ttl span.pg_jp {
    font-size: 32px;
}
h2.ttl span.pg_jp {
    font-size: 24px;
}
span.pg_en {
    font-size: 16px;
}
h2.tl02 span.pg_en:before {
    width: 90px;
}
.kv_sp{
    display: block;    
}
.kv_pc{
    display: none;    
}
article {
    margin-top: 60px;
}

.loopslide {
        /* flex: 0 0 calc((100% - 4 * 30px) / 1); */
        flex: 0 0 calc((100% - 0 * 0px) / 1);
        padding: 0 20px;
    }
    .archslider {
        height: 70vh;
        margin-top: 50px;
    }
.list_area > ul > li > .flex_bx .flex_bx_row:nth-child(2) > ul li {
    flex: 50%;
    max-width: 50%;
}
.list_area > ul > li > .flex_bx .flex_bx_row:first-child h3 {
    font-size: 16px;
}
.list_area > ul > li > .flex_bx .flex_bx_row:first-child {
    padding-right: 2%;
}
.archslider {
        height: 50vh;
    }
.cat span {
    margin-right: 0;
    margin-bottom: 4px;
}
section.top_about .h2_txt {
    font-size: 16px;
}
    .support_contents ul li a img {
        height: 60px;
        width: 60px;
    }
section.top_faq .lbx {
        float: none;
    }
section.top_faq .looparrow.right {
    right: 3%;
}
section.top_faq .looparrow {
    width: 30px;
    height: 30px;
}
section.ft_entry {
        background-position: 28% 0;
        background-size: 1050px;
        background-repeat: no-repeat;
        border-radius: 50px 50px 0 0;
    }

.ft_entry_link li a {
    padding: 20px 60px;
    width: 90%;
    font-size: 16px;
}
.ft_entry_link li a:after {
    right: 60px;
}
section.top_place .link_area {
        width: 100%;
        margin: 50px auto 50px;
    }
.float_side_btn {
        bottom: 0;
        top: unset;
        width: 100%;
        right: unset;
    }
.float_side_btn a {
    writing-mode: unset;
    color: #fff;
    background-color: #4c8b7f;
    letter-spacing: 2px;
    padding: 0;
    border-radius: 0;
    font-family: 'Noto Sans JP';
    font-weight: 600;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: unset;
    box-sizing: border-box;
    width: 100%;
}
.float_side_btn a:before {
        margin-bottom: 0;
        margin-right: 10px;
        margin-top: 0;
    }
.float_side_btn a {
        padding: 16px 0;
        line-height: 1.7;
        align-items: center;
    }
h2.place_clinic_name {
    font-size: 30px;
}
.features_area {
    font-size: 18px;
	text-align: left;
}
.access_area {
    padding: 30px;
    margin-top: 30px;
}

.place_access_logo img {
    width: 100%;
    margin-bottom: 30px;
}
.place_access_txt {
        font-size: 18px;
    }

.place_access_map {
    height: 300px;
}

.voice_main_txt {
        font-size: 20px;
        width: 90%;
    }
.voice_category span {
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.voice_top_box .inn1400 {
        z-index: 1;
        padding-top: 100px;
    }
.voice_main_img img {
        width: 90%;
        height: 300px;
    }

.qa_box_row.text_area01 {
        flex: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 30px;
    }
.qa_detail h2 {
    font-size: 20px;
}
    .qa_box_row.text_area02 {
        flex: 100%;
        max-width: 100%;
        padding: 30px;
    }
.qa_box_row.img_area01 img {
        width: 80%;
    }

    .voice_main_img img {
        max-width: 90%;
    }
    span.post_voice_main_bg {
        top: 40%;
        height: 30%;
    }
.qa_box_row.img_area02 img {
        width: 80%;
    }
.movie_txt {
    font-size: 16px;
    text-align: left;
}
.movie_area {
    height: 300px;
}
    section.post_voice.free_sec .free_box {
        padding: 30px;
    }
	.link_group{
	width: 60%;
    margin: auto;
	}
.free_area h3 {
    font-size: 18px;
}
.ji_main_sec_row.img {
    max-width: 100%;
    padding-right: 0;
}
.ji_main_sec_row.txt .row_in {
        width: 100%;
    }

h2.job_introduction_ttl {
        text-align: center;
        margin-top: 32px;
		font-size:34px;
    }
.place_clinic_name h2 {
        font-size: 26px;
        text-align: center;
    }
h2.job_introduction_ttl:after {
    margin: 0 auto !important;  
}
h2.job_introduction_ttl:after {
    left: 0;
}

.workflow_area .bx .lbx,
.workflow_area .bx .rbx{
    width: 100%;
    padding: 0px 20px;
	margin-bottom:0;
}
.workflow_area .bx .rbx {
    width: 100%;
    margin-top: 24px;
}
    .merit_area ul li {
        flex: 100%;
        max-width: 100%;
        padding: 24px;
        margin-bottom: 24px;
    }
h3.catchcopy {
    flex: 100%;
    max-width: 100%;
}
h3.catchcopy {
    margin-bottom: 24px;
}
.message_area02 .h3_txt {
    flex: 80%;
    max-width: 100%;
    padding-left: 0;
}
.message_area02 {
    display: block;
    padding: 0 20px;
}
.flow_area ul li .flow_in {
    display: block;
    padding: 24px 20px;
}
.flow_area ul li .flow_in h3 {
    font-size: 16px;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 16px;
    justify-content: center;
}
.flow_area ul li .flow_in .h3_txt {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: center;
    }
.time_box_img img {
    height: auto;
    margin-bottom: 24px;
}
    h3.catchcopy span {
        font-size: 20px;
		width: 70%;
    }

.message_area h3 {
    font-size: 20px;
    padding: 0 20px;
    text-align: center;
}
.message_area .h3_txt {
    padding: 0 20px;
}
.loopslide {
    aspect-ratio: 9 / 10;
}
section.header_pattern01 img {
        height: 300px;
    }
section.header_pattern01 .ttl_area {
        height: 100px;
        width: 100%;
    }
small {
    margin: 62px 0;
}
    .voice_main_img img {
        max-width: 90%;
    }
    span.post_voice_main_bg {
        top: 40%;
        height: 30%;
    }
.single-job_introduction .loopslide {
    flex: 0 0 calc(100% / 1);
}

.page-template-page-mentors-voice .archslider {
        height: 35vh;
    }
.line_btn_area_job a {
    width: 100%;
	font-size: 16px;
    padding: 10px 20px;
}
.merit_area ul {
    flex-direction:column;
}
.merit_area ul li.merit_area03 {
    max-width: 100%;
}
.line_btn_area_job a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background-image: url(img/common/icon_line_btn.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 24px
}
.line_btn_area_job a:after {
    content: '';
    display: block;
    position: absolute;
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    height: 20px;
    background-image: url(img/common/link_arrow_r_w.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
}