@charset "UTF-8";
**{
	backface-visibility: hidden;/* animation時のにじみ防止 */
	-webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
	-webkit-font-smoothing: antialiased;/* animation時の文字にじみ防止 */
	-moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
}

/*
    CSS Reset
--------------------------------------------------------------------------*/
*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,button,input,label{line-height:1.1}h1,h2,h3,h4{text-wrap:balance}a:not([class]){text-decoration-skip-ink:auto;color:currentColor}input,button,textarea,select{font:inherit}textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}ul{margin:0;padding:0;list-style: none;}

/*————————————————————————————————————————————————————————————————————————

    共通CSS

——————————————————————————————————————————————————————————————————————————*/
html{
    font-family: 'YakuHanJP', "Zen Kaku Gothic New", 'Noto Sans JP', sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif !important;
    font-size: 62.5%;
    color: var(--textcolor);
    counter-reset: number 0;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
button {
    -webkit-tap-highlight-color: transparent;
}
a,a:active,a:focus,a:visited{
    color: inherit;
    text-decoration: none;
    outline: none;
}

.bg_gray{
    background-color: var(--bg_gray);
}
.bg_pink{
    background-color: var(--bg_pink);
}

/*
    カラーコード・共有の値_CSS
--------------------------------------------------------------------------*/
:root{

    --pink_01: #ff78a3;
    --pink_02: #FF7DA3;
    --pink_03: #F11A64;
    --pink_04: #E1ACBC;
    --pink_05: #FFECEC;

    --blue_01: #00A0E9;
    --blue_02: #E2F6FE;
    --blue_03: #7ECEF4;
    --blue_04: #4B96CA;

    --gray_01: #F3F3F3;

    --textcolor: #444444;
	--linkcolor: #0971B9;

    --bg_gray:#F9F6F6;
    --bg_pink:#FFF7F7;

    --bordercolor_gray: #D9D9D9;
    --bordercolor_pink: #EADCDC;
    --bordercolor: #CACACA;

    --pc_contents_mb: 80px;
    --sp_contents_mb: 40px;
}



/*
    ページ全体のCSS
--------------------------------------------------------------------------*/
body{
    width: 100%;
    font-family: 'YakuHanJP', "Zen Kaku Gothic New", 'Noto Sans JP', sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif !important;
    line-height: 1.5!important;
    color: var(--textcolor);
}
.wrapper{
    width: 100%;
}
@media (max-width: 768px) {
    .wrapper{
        overflow: hidden;
    }
}

/*————————————————————————————————————————————————————————————————————————

    #main

——————————————————————————————————————————————————————————————————————————*/
#main{
    width: 100%;
}
#main > section{
    padding: 80px 0;
}
#main > section > .inner{
    margin: 0 auto;
    width: 1020px;
}
#main > section > .inner > .h2{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2rem;
    position: relative;
    margin: 0 0 50px;
}
#main > section > .inner > .h2::after{
    content: '';
    width: 36px;
    height: 4px;
    border-radius: 8px;
    background: var(--pink_04);
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}
#main > section > .inner > .h3{
    margin: 0 0 20px;
    padding-left: 10px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.2rem;
    position: relative;
}

#main > section > .inner > .h3:not(:first-child){
    margin-top: 40px;
}

#main > section > .inner > .h3::before{
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    border-radius: 8px;
    background: var(--pink_01);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/*
    求人情報の概要
--------------------------------------------------------------------------*/
section#job_information_overview{
    padding: 80px 0 30px;
}
.overview_header{
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: baseline;
}
.overview_header .corporate_name{
    font-size: 16px;
    font-weight: bold;
    color: var(--blue_04);
}
.overview_header > .header_infomation{
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    align-items: center;
    color: var(--textcolor);
}
.overview_header .corporate_name > span {
    margin: 0 10px 0 0;
    padding: 5px 20px;
    background: #D9D9D9;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.1rem;
    text-align: center;
    color: var(--textcolor);
}
.shop_name {
    font-size: 20px;
    color: var(--textcolor);
    margin-bottom: 4px;
}
.overview_job_title{
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--textcolor);
    word-break: break-word;
    text-wrap: unset;
}
.overview_main{
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
}
.overview_main > dl{
    width: 620px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--textcolor);
}
.overview_main > dl > dt{
    width: 120px;
    display: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--pink_05);
    border: solid 1px var(--pink_04);
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-top:10px;
    padding-bottom: 10px;
}
.overview_main > dl > dt > img{
    width: 36px;
    margin-bottom: -6px;
}
.overview_main > dl > dt:first-of-type{
    border-bottom: solid 1px var(--pink_04);
    border-radius: 8px 0 0 0;
}
.overview_main > dl > dt:last-of-type{
    border-top: none;
    border-radius: 0 0 0 8px;
}
.overview_main > dl > dd{
    padding: 10px 30px;
    width: 500px;
    display: flex;
    align-items: center;
    border: solid 1px var(--bordercolor_gray);
    border-left: none;
}
.overview_main > dl > dd:first-of-type{
    border-bottom: solid 1px var(--bordercolor_gray);
    border-radius: 0 8px 0 0;
}
.overview_main > dl > dd:last-of-type{
    border-top: none;
    border-radius: 0 0 8px 0;
}
.overview_main > dl > dd p span{
    color: var(--pink_02);
}
.overview_main > dl > dd p b{
    font-size: 1.625em;
}
.overview_main > dl > dd .area{
    display: flex;
    align-items: center;
    gap: 15px;
}
.overview_main > dl > dd .map_link{
    padding: 0 20px 0 10px;
    width: fit-content;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 24px;
    background: var(--blue_04);
    color: #FFF;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
}
.overview_main > dl > dd .map_link:hover{
    opacity: .8;
    transition: .3s;
}
.overview_main > dl > dd .map_link::before,
.overview_main > dl > dd .map_link::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}
.overview_main > dl > dd .map_link::before{
    width: 11px;
    height: 11px;
    border-radius: 20px;
    background: #FFF;
    right: 8px;
}
.overview_main > dl > dd .map_link::after{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-bottom: 2px solid var(--blue_04);
    border-right: 2px solid var(--blue_04);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 46%;
    right: 11px;
}
.recruiting_stop_announce.sp{
    margin: -10px 0 30px;
    padding: 0 15px;
}
.recruiting_stop_announce.pc{
    margin: 0 15px 0 0;
    padding: 0;
}
.recruiting_stop_announce > span{
    padding: 10px 15px;
    border-radius: 8px;
    background: #FFECAF;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
}
.recruiting_stop_announce.pc > span{
    max-height: 72px;
    padding: 15px 30px;
}
.recruiting_stop_announce > span > b{
    font-size: 1.2em;
    font-weight: bold;
}
.recruiting_stop_announce.sp > span::after{
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30%;
    width: 0;
    height: 20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #FFECAF;
}
.recruiting_stop_announce.pc > span::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid #FFECAF;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/* スライダー */
.job-img_slider-wrapper{
    max-height: 200px;
    position: relative;
}
.job-img_slider-wrapper img{
    width: 100%;
    object-fit: cover;
    display: block;
}
.job-img_slider-wrapper > .job-img_slider{
    width: 360px;
    height: 200px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
/* インジケーター */
.job-img_slider-wrapper > .slider-dots > .slick-dots{
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
}
.job-img_slider-wrapper > .slider-dots > .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid var(--pink_02);
  border-radius: 50%;
  background-color: white;
  opacity: 1;
  transition: background-color 0.3s;
  font-size: 0;
  cursor: pointer;
}
.job-img_slider-wrapper > .slider-dots > .slick-dots li button:before {
  content: "";
}
.job-img_slider-wrapper > .slider-dots > .slick-dots li.slick-active button {
  background-color: var(--pink_02);
}
/* 矢印 */
.job-img_slider-wrapper > .arrow-wrapper > .slick-arrow{
    position: absolute;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #FFF;
    border: solid 2px var(--pink_02);
    border-radius: 48px;
    cursor: pointer;
    filter: drop-shadow(0px 2px 2px #763E4F3D);
}
.job-img_slider-wrapper > .arrow-wrapper > .slick-prev{
    left: -20px;
}
.job-img_slider-wrapper > .arrow-wrapper > .slick-next{
    right: -20px;
}
.job-img_slider-wrapper > .arrow-wrapper > .slick-prev::before,
.job-img_slider-wrapper > .arrow-wrapper > .slick-next::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid var(--pink_02);
    border-right: 3px solid var(--pink_02);
}
.job-img_slider-wrapper > .arrow-wrapper > .slick-prev::before{
    transform: translate(-30%, -50%) rotate(135deg);
}
.job-img_slider-wrapper > .arrow-wrapper > .slick-next::before{
    transform: translate(-70%, -50%) rotate(-45deg);
}

/* 求人概要のボタンリスト */
.overview_btn_list{
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* ボタン共通 */
.overview_btn_list a.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 72px;
    background: #EEE;
    border-radius: 12px;
    color: var(--textcolor);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
}
/* お気に入りボタン */
.overview_btn_list > .btn_save{
    width: 300px;
}
.overview_btn_list > .btn_save > a.save_btn .save,
.overview_btn_list > .btn_save.saved > a.save_btn .saved{
    display: flex;
}
.overview_btn_list > .btn_save.saved > a.save_btn .save,
.overview_btn_list > .btn_save > a.save_btn .saved{
    display: none;
}
.overview_btn_list > .btn_save > a.save_btn:hover{
    border-color: var(--blue_03);
    transition: .3s;
}
.overview_btn_list > .btn_save > a.save_btn:hover > svg{
    fill: var(--blue_03);
    stroke: var(--blue_03);
    transition: .3s
}
/* CTAボタン */
.overview_btn_list .btn_cta{
    width: 520px;
}
.overview_btn_list a.cta_btn{
    background: var(--pink_03);
    color: #FFF;
}
.overview_btn_list a.cta_btn:hover{
    background: #BF1445;
    transition: .3s;
}
.overview_btn_list a.cta_btn span{
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: var(--pink_03);
    font-size: 14px;
    font-weight: bold;
    border-radius: 24px;
    position: absolute;
    top: -10px;
    border: solid 2px var(--pink_03);
}
.overview_btn_list a.cta_btn:hover span{
    color: #BF1445;
    border-color: #BF1445;
    transition: .3s;
}
.overview_btn_list a.cta_btn::before,
.overview_btn_list a.cta_btn::after{
    content: '';
    display: inline-block;
    background: #FFF;
    width: 2px;
    height: 12px;
    border-radius: 8px;
    position: absolute;
    right: 30px;
}
.overview_btn_list a.cta_btn::before{
    transform: rotate(-45deg);
    top: 37.5%;
}
.overview_btn_list a.cta_btn::after{
    transform: rotate(45deg);
    top: 48.5%;
}

/*
    アドバイザーコメント
--------------------------------------------------------------------------*/
section#adviser_comment{
    padding: 30px 0;
}
#adviser_comment > .inner{
    padding: 15px 40px;
    min-height: 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    border-radius: 8px;
    border: solid 1px var(--bordercolor_pink);
}
#adviser_comment > .inner > .img{
    width: 100px;
}
#adviser_comment > .inner > .img > img{
    max-width: 100%;
    display: block;
}
#adviser_comment > .inner > .text{
    width: 820px;
}
#adviser_comment > .inner > .text > p{
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    display: -webkit-box;
}

/*
    バナーエリア
--------------------------------------------------------------------------*/
section#banner_area{
    padding: 30px;
}
section#banner_area > .inner > ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
section#banner_area > .inner > ul > li{
    width: 100%;
}
section#banner_area img,
section#banner_area picture{
    display: block;
    max-width: 100%;
}


/*
    ページ内リンク
--------------------------------------------------------------------------*/
section#anchor-link{
    padding: 30px 0;
}
.anchor-link_list{
    justify-content: center;
    display: flex;
    gap: 20px;
    list-style: none;
}
.anchor-link_list > li{
    width: 280px;
}
.anchor-link_list > li > a{
    padding-bottom: 6px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink_02);
    color: #FFF;
    border-radius: 80px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    position: relative;
}
.anchor-link_list > li > a:hover{
    opacity: .8;
    transition: .3s;
}
.anchor-link_list > li > a::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
    position: absolute;
    bottom: 12px;
}

/*
    求人詳細
--------------------------------------------------------------------------*/

/* 情報テーブル */
.info_table{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
}
.info_table > dt{
    padding: 30px 0;
    width: 220px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2rem;
}
.info_table > dd{
    padding: 30px;
    width: 800px;
    background: #FFF;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 2;
    position: relative;
}
.info_table > dd > .tag_list{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.info_table > dd > .tag_list > .tag{
    height: 24px;
    padding: 4px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pink_02);
    border: solid 1px var(--pink_02);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 4px;
}
.info_table > dd > a{
    width: 65%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    color: var(--blue_04);
    text-decoration: underline;
}
.info_table > dd > a.btn{
    padding: 0 40px 0 15px;
    width: fit-content;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    float: right;
    align-items: center;
    background: var(--blue_04);
    border-radius: 80px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    font-size: 16px;
    letter-spacing: 0;
    text-decoration: none;
}
.info_table > dd > a.btn:hover{
    opacity: 0.8;
    transition: .3s;
}
.info_table > dd > a.btn::before,
.info_table > dd > a.btn::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}
.info_table > dd > a.btn::before{
    width: 18px;
    height: 18px;
    border-radius: 20px;
    background: #FFF;
    right: 15px;
}
.info_table > dd > a.btn::after{
    display: inline-block;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid var(--blue_04);
    border-right: 2px solid var(--blue_04);
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    right: 22px;
}

/* アコーディオン化 */
.accordion-dd {
    overflow: hidden;
    line-height: 1.4em;
    position: relative;
    transition: max-height 0.3s ease;
}
.accordion-dd.expanded {
    max-height: none;
    padding-bottom: 50px;
}
.readmore-btn {
    display: inline-block;
    padding: 10px 15px 10px 0;
    color: var(--blue_04);
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.readmore-btn.open{
    padding: 0 15px 10px 0;
}
.readmore-btn::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 9px solid var(--blue_04);
    position: absolute;
    top: 50%;
    transform: translateY(-20%) rotate(180deg);
    right: 0px;
}
.readmore-btn.open::before{
    transform: translateY(-50%);
}
.readmore-btn::after{
    content: '';
    display: block;
    width: 10000px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 40%,rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, 0.25) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.readmore-btn.open::after{
    content: none;
}
/* google map */
.map {
    margin-top: 15px;
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 求人写真 */
.job_picture_list{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}
.job_picture_list > a{
    width: calc((100% - 20px) / 2);
    height: 280px;
    position: relative;
}
.job_picture_list > a::before{
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: var(--pink_01);
    border-radius: 8px 0 8px 0;
}
.job_picture_list > a::after{
    content: '';
    width: 18px;
    height: 18px;
    background: url(../img/svg/icon_zoom.svg) no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 11px;
    right: 11px;
    z-index: 2;
}
.job_picture_list > a > img{
    width: 100%;
    height: inherit;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    position: relative;
}

/* この求人と似た条件をチェック */
.link-list{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
}
.link-list > li{
    width: calc((100% - 30px) / 3);
}
.link-list > li > a{
    padding: 0 40px 0 20px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: #FFF;
    border: solid 1px var(--bordercolor_gray);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    position: relative;
}
.link-list > li > a:hover{
    background: var(--pink_05);
    border-color: var(--pink_02);
    color: var(--pink_02);
}
.link-list > li > a::before,
.link-list > li > a::after{
    content: '';
    display: inline-block;
    background: var(--bordercolor_gray);
    width: 2px;
    height: 12px;
    border-radius: 8px;
    position: absolute;
    right: 20px;
}
.link-list > li > a:hover::before,
.link-list > li > a:hover::after{
    background: var(--pink_02);
}
.link-list > li > a::before{
    transform: rotate(-45deg);
    top: 38%;
}
.link-list > li > a::after{
    transform: rotate(45deg);
    top: 48%;
}

/*
    EF
--------------------------------------------------------------------------*/
#entry_form{
    margin-bottom: var(--pc_contents_mb);
}
.entry-ttl > .sub{
    width: 300px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF91B1;
    padding: 10px 15px;
    background: #FFF;
    border: solid 2px #FF91B1;
    border-radius: 24px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}


/*
    求人についてのお問い合わせ
--------------------------------------------------------------------------*/
#contact_us{
    margin-bottom: var(--pc_contents_mb);
    border: solid 2px var(--bordercolor_gray);
    border-radius: 8px;
}
#contact_us > .header{
    width: calc(100% + 4px);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue_03);
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    border-radius: 8px 8px 0 0;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}
#contact_us > .main{
    padding: 30px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#contact_us > .main > .tell-number{
    width: 60%;
}
#contact_us > .main > .tell-number > img{
    width: 100%;
}
#contact_us > .main > .tell-number > .sub-text{
    margin: 20px auto 30px;
    padding: 0 20px;
    width: fit-content;
    display: block;
    background: var(--gray_01);
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    border-radius: 24px;
}
#contact_us > .main > .job-info{
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}
#contact_us > .main > .job-info > p{
    margin-bottom: 10px;
}
#contact_us > .main > .job-info > dl{
    margin: 0 0 20px;
    width: inherit;
    display: flex;
    flex-wrap: wrap;
    border: solid 1px var(--bordercolor_gray);
    border-radius: 8px;
    overflow: hidden;
}
#contact_us > .main > .job-info > dl > dt{
    width: 25%;
    height: 60px;
    display: inherit;
    justify-content: center;
    align-items: center;
    background: var(--gray_01);
    border-right: solid 1px var(--bordercolor_gray);
    letter-spacing: 0.2em;
}
#contact_us > .main > .job-info > dl > dd{
    padding: 0 30px;
    width: 75%;
    display: inherit;
    align-items: center;
}
#contact_us > .main > .job-info > dl > dt:first-of-type,
#contact_us > .main > .job-info > dl > dd:first-of-type{
    border-bottom: solid 1px var(--bordercolor_gray);
}
#contact_us > .main > .job-info > dl > dd > span{
    font-size: 1.5em;
    letter-spacing: 0.2em;
    color: var(--pink_02);
}
#contact_us > .main > h4{
    margin: 0 0 20px;
    padding: 0 20px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--blue_03);
    color: #FFF;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}
#contact_us > .main > .inquiry_sample{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
#contact_us > .main > .inquiry_sample > li:not(:last-child){
    margin-bottom: 15px;
    border-bottom: solid 1px var(--bordercolor_gray);
}
#contact_us > .main > .inquiry_sample > li > p{
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
}



/*
    この求人を見た人が見ている他の求人
--------------------------------------------------------------------------*/
.job-card{
    width: 248px;
    height: auto;
    border-radius: 8px;
    border: solid 1px var(--bordercolor_gray);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}
.job-card > .link_decision{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
}

.job-card > .header{
    width: 100%;
    height: 150px;
    background: var(--bg_pink);
}
.job-card > .header > img{
    width: inherit;
    height: inherit;
    object-fit: cover;
}
.job-card > .main{
    padding: 10px 10px 0;
    min-height: 179.3px;
}
.job-card > .main > .tag{
    margin-bottom: 4px;
    flex-wrap: wrap;
    display: flex;
    gap: 4px;
}
.job-card > .main > .tag > li{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 12px;
    background: var(--blue_02);
    color: var(--blue_01);
    border-radius: 2px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.1rem;
}
.job-card > .main> .job-title{
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    text-decoration: underline;
    color: var(--blue_01);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    text-wrap: unset;
}
.job-card > .main > .info-list{
    display: flex;
    flex-wrap: wrap;
}
.job-card > .main > .info-list > dt{
    width: 20%;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: var(--textcolor);
}
.job-card > .main > .info-list > dd{
    padding: 0 0 0 10px;
    width: 80%;
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
}
.job-card > .main > .info-list > dd > .line-clamp{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.job-card > .main > .info-list > dt:not(:last-of-type),
.job-card > .main > .info-list > dd:not(:last-of-type){
    border-bottom: solid 1px var(--bordercolor_gray);
}
.job-card > .footer{
    padding: 0 10px 10px;
}
.job-card > .footer > .job-card_btn-list{
    display: flex;
    gap: 8px;
}
.job-card > .footer > .job-card_btn-list > .btn_save,
.job-card > .footer > .job-card_btn-list > .btn_cta{
    width: 50%;
}
.job-card > .footer > .job-card_btn-list .btn{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    position: relative;
}
.job-card > .footer > .job-card_btn-list > .btn_save > a.save_btn svg{
    margin-right: 2px;
    width: 14px;
    height: 14px;
}
.job-card > .footer > .job-card_btn-list > .btn_save > a.save_btn:hover{
    border-color: var(--blue_03);
    transition: .3s;
}
.job-card > .footer > .job-card_btn-list > .btn_save > a.save_btn:hover svg{
    fill: var(--blue_03);
    stroke: var(--blue_03);
    transition: .3s;
}
.job-card > .footer > .job-card_btn-list > .btn_cta > .cta_btn{
    background: var(--pink_02);
    color: #FFF;
}
.job-card > .footer > .job-card_btn-list > .btn_cta > .cta_btn:hover{
    opacity: .8;
    transition: .3s;
}
.job-card > .footer > .job-card_btn-list > .btn_cta > .cta_btn::after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 10px;
}
.job-card > .footer > .job-card_btn-list > .btn_save > a.save_btn .save,
.job-card > .footer > .job-card_btn-list > .btn_save.saved > a.save_btn .saved{
    display: flex;
}
.job-card > .footer > .job-card_btn-list > .btn_save.saved > a.save_btn .save,
.job-card > .footer > .job-card_btn-list > .btn_save > a.save_btn .saved{
    display: none;
}
/* スライドショー */
.card-slider .job-card {
    margin: 0 5px; 
}

.card-slider .slick-track {
    display: flex ;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
}

.card-slider > .slick-arrow{
    width: 30px;
    height: 90px;
    background: var(--pink_02);
    border: none;
    color: #FFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.card-slider > .slick-arrow:hover{
    background: #ff92b2;
    transition: .3s;
}
.card-slider > .slick-arrow.slick-prev{
    left: -25px;
    border-radius: 8px 0 0 8px;
}
.card-slider > .slick-arrow.slick-next{
    right: -25px;
    border-radius: 0 8px 8px 0;
}
.card-slider > .slick-arrow.slick-prev::after,
.card-slider > .slick-arrow.slick-next::after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    position: absolute;
    top: 50%;
}
.card-slider > .slick-arrow.slick-prev::after{
    transform: translate(-50%, -50%) rotate(135deg);
    left: 55%;
}
.card-slider > .slick-arrow.slick-next::after{
    transform: translate(-50%, -50%) rotate(-45deg);
    left: 45%;
}

/*
    マイナビ看護師のサービス
--------------------------------------------------------------------------*/
.link-list_column{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.link-list_column > li{
    width: 100%;
}
.link-list_column > li > a{
    padding: 0 40px 0 20px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    color: var(--blue_04);
    background: #FFF;
    border: solid 1px var(--bordercolor_gray);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    word-break: auto-phrase;
    position: relative;
}
.link-list_column > li > a::before, .link-list_column > li > a::after {
    content: '';
    display: inline-block;
    background: var(--bordercolor_gray);
    width: 2px;
    height: 12px;
    border-radius: 8px;
    position: absolute;
    right: 20px;
}
.link-list_column > li > a::before {
    transform: rotate(-45deg);
    top: 38%;
}
.link-list_column > li > a::after {
    transform: rotate(45deg);
    top: 48%;
}

/*————————————————————————————————————————————————————————————————————————

    footer（PC）

——————————————————————————————————————————————————————————————————————————*/

/*
    詳細ページ_固定CVボタン（PC）
--------------------------------------------------------------------------*/
.footer_cv_pc{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    background: #FFF;
    z-index: 50;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.15));
}
.footer_cv_pc .inner{
    width: 1100px;
    padding: 10px 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.footer_cv_pc .inner .cv_button{
    width: 440px;
}
.footer_cv_pc .inner .cv_button .appeal{
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin-bottom: 8px;
    font-family: "Helvetica Neue", Helvetica, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    line-height: 1;
}
.footer_cv_pc .inner .favorite_button{
    width: 280px;
    height: 82px;
    position: relative;
}
.footer_cv_pc .inner .favorite_button .balloon{
    display: none;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0 0.5rem;
    border-radius: 4px;
    background: var( --blue_02);
    color: var( --blue_01);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2;
    font-feature-settings: 'palt';
    letter-spacing: 0.15rem;
    text-align: center;
}
.footer_cv_pc .inner .favorite_button .balloon::after{
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 8px solid var(--blue_02);
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
.footer_cv_pc .inner .favorite_button .balloon.active{
    animation: feedOut 0.3s ease-in-out 10s 1 forwards;
}
@keyframes feedOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.footer_cv_pc .inner .favorite_button.active .favorite,
.footer_cv_pc .inner .favorite_button .favorited{
    display: none;
}
.footer_cv_pc .inner .favorite_button .favorite,
.footer_cv_pc .inner .favorite_button.active .favorited{
    display: block;
}

/* button */
.footer_cv_pc .inner .button{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    line-height: 3.5;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    font-feature-settings: 'palt';
    border-radius: 40px;
    cursor: pointer;
}
.footer_cv_pc .inner .cv_button .button{
    background: var(--pink_03);
    color: #FFF;
    font-family: "Helvetica Neue", Helvetica, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.footer_cv_pc .inner .cv_button .button::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transition: .3s;
}
.footer_cv_pc .inner .favorite_button .button{
    background: #F3F3F3;
    color: var(--textcolor);
    border: solid 1px #E1E1E1;
}
.footer_cv_pc .inner .favorite_button .button.favorite svg{
    stroke: var(--textcolor);
    position: relative;
    top: 2px;
    width: 20px;
}
.footer_cv_pc .inner .favorite_button .button.favorited svg{
    fill: var(--textcolor);
    position: relative;
    top: 2px;
    width: 20px;
}
.footer_cv_pc .inner .favorite_button a {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer_cv_pc .inner .favorite_button a p {
    height: 56px;
    font-family: "Helvetica Neue", Helvetica, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.footer_cv_pc .inner .favorite_button .button.favorited p{
    height: 56px;
    flex-shrink: 0;
    letter-spacing: 0;
    background: #DAF3FF;
    color: #00A0E9;
    border-radius:40px;
}
.footer_cv_pc .inner .favorite_button .button.favorited p svg path{
    fill: #00A0E9;
}

/*
    お気に入り/お気に入り済み 切り替え
--------------------------------------------------------------------------*/
.favorite_button_area .button.favorite,
.favorite_button_area.active .button.favorited{
    display: block;
}
.favorite_button_area.active .button.favorite,
.favorite_button_area .button.favorited{
    display: none;
}
/*
    detail02からの移植
--------------------------------------------------------------------------*/
#pagetop {
    display: none!important
}

.pagetop_button_area {
    position: relative
}
#d_page_pagetop {
    display: none;
    position: fixed;
    width: 41px;
    height: 41px;
    right: 15px;
    bottom: 152px;
    background: rgba(255,125,163,.8) url(/sp/common/img/footer/arr_pagetop.png) no-repeat center center;
    background-size: 10px 8px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    overflow: visible;
    z-index: 10
}
#d_page_pagetop a {
    display: block;
    width: 41px;
    height: 41px;
    text-indent: -9999px;
    overflow: hidden
}

.shtModalMessage {
    display: flex;
    align-items: center;
    position: fixed;
    top: 60px;
    left: 15px;
    right: 15px;
    z-index: 10000;
    padding: 12px 15px;
    min-height: 50px;
    background: rgba(0,0,0,.8);
    border-radius: 4px;
    box-sizing: border-box;
    transform: translate3d(0,-100%,0);
    opacity: 0;
    pointer-events: none
}
.shtModalMessage.show {
    animation: modalMessage 5s
}
.shtModalMessage>div {
    flex: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center
}
.shtModalMessage p {
    margin: 0
}
@keyframes modalMessage {
    0%,100% {
        transform: translate3d(0,-100%,0);
        opacity: 0
    }

    15%,85% {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}






/*————————————————————————————————————————————————————————————————————————

    その他

——————————————————————————————————————————————————————————————————————————*/
/*
    雇用形態アイコンカラー
--------------------------------------------------------------------------*/
/* 正社員 */
#job_offer_overview .overview .top_tags li.top_seishain,
.job_card .overview .title_container .tags li.top_seishain{
    color: #00A0E9;
    background: #E2F6FE;
}
/* 契約社員 */
#job_offer_overview .overview .top_tags li.top_keiyaku,
.job_card .overview .title_container .tags li.top_keiyaku{
    color: #478e67;
    background: #c8f1c3;
}
/* パート・アルバイト */
#job_offer_overview .overview .top_tags li.top_part,
.job_card .overview .title_container .tags li.top_part{

    color: #E08700;
    background: #FFDEAC;
}
/* 業務委託その他 */
#job_offer_overview .overview .top_tags li.top_other,
.job_card .overview .title_container .tags li.top_other{
    color: #46423d;
    background: #e8e4dd;
}

/* 募集停止 */
#job_offer_overview .overview .top_tags li.status-ended,
.job_card .overview .title_container .tags li.status-ended{
    color: #fff;
    background: #999;
}


/* -------------------------------------------------------------------
*
*
*  PC・SP表示切替
*
*
* ---------------------------------------------------------------- */

.sp{
    display: block;
}
.pc{
    display: none;
}

@media screen and (min-width: 980px) {
    .sp{
        display: none;
    }
    .pc{
        display: block;
    }
}

.disable{
    display: none!important;
}

.overview_header >div:first-child{
    max-width: 73%;
}

/* Favorite button states */
.r_btn_keep3 a span.not_yet,
.r_btn_keep3 a.active span.already{
    display: block;
}
.r_btn_keep3 a span.already,
.r_btn_keep3 a.active span.not_yet{
    display: none;
}

.r_btn_keep3 a.btn {
    border: 2px solid #DADADA;
    color: #444444;
    background: #FFFFFF;
}

.r_btn_keep3 a.active {
    color: var(--blue_01);
    background: var(--blue_02);
    border-color: var(--blue_01);
}

/* Icon styles */
.r_btn_keep3 a svg {
    stroke: #DADADA;
    fill: #DADADA;
    margin-right: 8px;
}

.r_btn_keep3 a.active svg {
    fill: var(--blue_01);
    stroke: var(--blue_01);
}

.info_table > dd > .tag_list > li {
    height: 24px;
    padding: 4px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pink_02);
    border: solid 1px var(--pink_02);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 4px;
}

#pc_footer .inner .tel-box .number {
    font-size: 22px;
}

section#banner_area img:hover {
    opacity: 0.8;
    transition: .3s;
}

.ellipsis-base {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-2 {
    -webkit-line-clamp: 2;
}

.ellipsis-3 {
    -webkit-line-clamp: 3;
}
.ellipsis-5 {
    -webkit-line-clamp: 5;
}

p.mnavKangoInfo {
    width: 1100px;
    margin: 100px auto 0;
    line-height: 18px;
    color: #999;
}

.info_table > dd > span.company_not_have_link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    color: var(--blue_04);
}

/*breadcrumb start*/
#topicpath{
    position: absolute;
    top: 215px;
    width: 100vw;
    margin-bottom: 32px;
    background: #f9f9f9;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}
#topicpath > .inner{
    width: 1100px;
    margin: 0 auto;
    padding: 16px 0;
    overflow: hidden;
}
#topicpath > .inner > ul{
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#topicpath > .inner > ul > li{
    font-size: 1.3rem;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}
#topicpath > .inner > ul > li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (orientation:portrait) {
    #topicpath > .inner > ul > li:last-child {
        width: 100%;
        max-width: 500px;
    }
}
#topicpath > .inner > ul > li > a{
    color: #fe9d9d;
}
#topicpath > .inner > ul > li:hover a{
    text-decoration: underline;
}
#topicpath > .inner > ul > li::after{
    content: '>';
    position: absolute;
    right: -15px;
}
#topicpath > .inner > ul > li:last-child:after{
    content: none;
}

#topicpath > .inner > ul::-webkit-scrollbar {
    display: none;
}
/*breadcrumb end*/

/*button 似た条件の求人を検索する start*/
#link_similar_button {
    width: 440px;
    height:60px;
    padding: 0 78px;
    border: 2px solid #4B96CA;
    color: #4B96CA;
    font-size: 20px;
    font-weight: bold;
    line-height: 60px;
    position: relative;
    border-radius: 64px;
    text-align: center;
    margin: 40px auto 0;
}

#link_similar_button:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#link_similar_button::before {
    content: '';
    background-size: contain;
    background: url(../img/svg/icon_search_same_corp.svg) no-repeat center;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
}

#link_similar_button::after {
    content: '';
    background-size: contain;
    background: url(../img/svg/icon_arrow_same_corp.svg) no-repeat center;
    width: 12px;
    height: 16px;
    margin-top: 2px;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}
/*button 似た条件の求人を検索する end*/

.inner .overview_header .corporate_name.no-click > a {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

.inner .overview_header .corporate_name > a {
    text-decoration: underline;
}

.card-slider .job-card:hover {
    border: solid 2px var(--pink_01);
}

.card-slider .job-card .tag .no_border {
    padding: 0;
    background: transparent;
}

body {
    overflow-x: hidden;
}