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

/* =====================
  header
===================== */

#header-2 {
    width: 1200px;
    background: #2082d7;
}


/*  site_description
------------------------*/

.site_description {
    color: #fff;
    line-height: 1;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 5px;
}


.description_item h1 {
    font-size: 12px;
    margin-bottom: 5px;
    text-indent: -5px;
}

.single-post .description_item h1 {
    text-indent: 0;
}

.site_title {
    font-size: 24px;
    font-weight: bold;
}


/* =====================
  search-lower-title
===================== */
.single #search-wrap::before,
.category #search-wrap::before,
.search #search-wrap::before {
    background: url(../img/mv-bg.png) no-repeat center top /cover;
    position: absolute;
    z-index: -2;
    content: "";
    margin-bottom: 0;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50%;
    transform: scaleY(-1);

}

.search-lower-title {
    background: url(../img/mv-bg.png) no-repeat center top /cover;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.search-lower-title .ttl {
    text-shadow: 0 0 6px rgb(0, 0, 0, 0.5);
}

.search-lower-title .ttl::before {
    display: block;
    font-family: 'icomoon';
    font-size: 22px;
    color: #007fc3;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    background: #fff;
    text-shadow: none;
    margin: 0 auto;
}

/*  tabs
------------------------*/

.tabs li {
    margin-left: 10px;
}

/*  g_nav
------------------------*/

#g_nav {
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: auto;
}

#g_nav ul {
    width: 770px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

#g_nav ul li {
    width: 149px;
    height: 45px;
    line-height: 45px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    transition: .1s;
}

#g_nav ul li:hover {
    box-shadow: 0px 0px 0px 0px transparent;
    transform: translateY(5px);
}

#g_nav .nav_home {
    background: #e7f1f6;
    box-shadow: 0px 5px 0px 0px #c3dce9;
}

#g_nav .nav_category {
    background: #45b9da;
    box-shadow: 0px 5px 0px 0px #3ea9c7;
}

#g_nav .nav_area {
    background: #39c998;
    box-shadow: 0px 5px 0px 0px #29af81;
}

#g_nav .nav_jobcat {
    background: #ed8ab7;
    box-shadow: 0px 5px 0px 0px #dd78a6;
}

#g_nav .nav_station {
    background: #f2a12d;
    box-shadow: 0px 5px 0px 0px #e2921e;
}

#g_nav ul li a,
#g_nav ul .has_sub {
    display: block;
    color: #fff;
    position: relative;
    padding-left: 25px;
}

#g_nav ul li a::before,
#g_nav ul .has_sub::before {
    font-family: 'icomoon';
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 15px;
}

#g_nav .nav_home a {
    color: #2082d7;
}

#g_nav .nav_home a::before {
    content: '\e90d';
}

#g_nav .nav_category a::before {
    content: '\e90e';
}

#g_nav .nav_area a::before {
    content: '\e91a';
}

#g_nav .nav_jobcat a::before {
    content: '\e90f';
}

#g_nav .nav_station a::before {
    content: '\e90c';
}

#g_nav .h_search {
    width: 400px;
    margin: 0;
    justify-content: space-between;
    padding: 5px;
    box-sizing: border-box;
}

/*  has_sub
------------------------*/

#g_nav .sub_menu {
    display: none;
    position: absolute;
    width: 305px;
    left: 0;
    top: 55px;
    background: #3ea9c7;
    padding: 10px 15px;
    box-sizing: border-box;
}

#g_nav .sub_menu::before {
    content: '';
    height: 10px;
    width: 100%;
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
}

#g_nav .sub_menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 65px;
    border: 10px solid transparent;
    border-bottom: 10px solid #3ea9c7;
}

#g_nav .sub_menu li {
    border-radius: 0;
    font-size: 12px;
    text-align: left;
    line-height: 1;
    height: auto;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#g_nav .sub_menu li:last-child {
    border: none;
}

#g_nav .sub_menu li:hover {
    transform: none;
}

#g_nav .sub_menu li a {
    padding: 10px;
}

#g_nav .sub_menu li a::before {
    content: '\e920';
    font-size: 11px;
    top: 10px;
    left: 0;
}

#g_nav .has_sub {
    cursor: pointer;
}

#g_nav .has_sub:hover .sub_menu {
    display: block;
    animation: show 0.3s linear 0s;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#g_nav .nav_category.has_sub::before {
    content: '\e90e';
}


/*  search
------------------------*/

input[type="text"] {
    padding: 5px 15px;
    width: 425px;
    height: 40px;
    background: #fff;
    box-sizing: border-box;
}

#g_nav .feas-searchform-1 input[type="text"] {
    color: #b9d8e9;
    font-weight: bold;
    font-size: 13px;
    width: 290px;
}

#g_nav .h_search .btn {
    font-size: 13px;
    width: 93px;
    height: 35px;
    line-height: 35px;
}



/* =====================
  container
===================== */

#container {
    margin-top: 30px;
}

/* =====================
  saw / recommended
===================== */

#recommended {
    background: #d3e3eb;
    padding: 45px 25px 25px 25px;
}


#recommended .title_ribbon {
    font-size: 18px;
    width: 100%;
    left: 0;
    border-radius: 4px 4px 0 0;
}

#recommended .title_ribbon::before,
#recommended .title_ribbon::after {
    display: none;
}



#recommended .suggest_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

#recommended .suggest_list {
    position: relative;
}

#recommended .suggest_list li {
    background: #fff;
    width: 162px;
    border-radius: 4px;
}

#recommended .suggest_list li {
    margin-right: 7.5px;
}


#recommended .suggest_list li a {
    display: block;
    padding: 10px;
}

#recommended .suggest_list li dt {
    font-size: 13px;
    font-weight: bold;
    color: #2082d7;
    line-height: 1.4;
    margin-bottom: 10px;
}

.new_post_list li .thumb,
#recommended .suggest_list li .thumb {
    height: 85px;
}

.yarpp-related {
    margin: 0 !important;
}

.recommended_nav {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #2082d7;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 1;
    cursor: pointer;
}

.recommended_nav.prev {
    left: -55px;
}

.recommended_nav.next {
    right: -55px;
}

.recommended_nav::before {
    content: '\e91c';
    font-family: 'icomoon';
    color: #fff;
    font-size: 23px;
    display: inline-block;
}

.recommended_nav.prev::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.recommended_nav.next {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/*  saw_recently_job & .new_post_list
------------------------*/

#side_saw {
    background: #d3e3eb;
    padding: 30px 8px 10px 8px;
}

#side_saw .saw_recently_job li,
.new_post_list li {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 5px;
}

#side_saw .saw_recently_job li:nth-last-of-type(4) {
    margin: 0;
}

#side_saw .saw_recently_job li.empty {
    display: none;
}

#side_saw .saw_recently_job li .thumb,
.new_post_list li .thumb {
    height: 55px;
}

#side_saw .saw_recently_job li a,
.new_post_list li a {
    display: block;
    padding: 5px;
}

#side_saw .saw_recently_job dl,
.new_post_list dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#side_saw .saw_recently_job dt,
.new_post_list dt {
    width: 115px;
    order: 2;
    font-size: 13px;
    font-weight: bold;
    color: #2082d7;
    line-height: 1.4;
}

#side_saw .saw_recently_job dd,
.new_post_list dd {
    width: 90px;
    order: 1;
}

/*  special
------------------------*/

#special .last-month-feature-wrap {
    margin-bottom: 5px;
}

#special .item_nav {
    background: #d3e3eb;
    display: block;
    width: 100%;
    cursor: pointer;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #2082d7;
}

#special .item_nav::before {
    content: '\e91c';
    font-family: 'icomoon';
    font-size: 25px;
    display: inline-block;
}

#special .item_nav.prev {
    margin-bottom: 5px;
}

#special .item_nav.next {
    margin-top: 5px;
}

#special .item_nav.prev::before {
    transform: scale(1, -1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

/* =====================
  pnkz
===================== */

#pnkz {
    width: 1200px;
    margin: 0 auto;
    background: #e7f1f6;
    box-sizing: border-box;
    color: #2082d7;
    padding: 5px 5px 5px 5px;
}

#pnkz p {
    font-size: 12px !important;
}

#pnkz a {
    color: #2082d7;
    text-decoration: underline;
}


/* =====================
  results_info
===================== */

.results_info {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 20px 0 70px 0;
}

.displayed-results {
    width: 255px;
    border-radius: 50px;
    background: #fff;
    height: 45px;
    line-height: 43px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.displayed-results span {
    font-size: 30px;
    color: #ff7979;
    display: inline-block;
    font-weight: bold;
    padding: 0 2px;
    font-family: 'Roboto Condensed', sans-serif;
}

.page-nav {
    width: 630px;
}

/* =====================
  results
===================== */

/*  intro
------------------------*/

#results .box {
    padding: 45px 30px 125px 30px;
    margin: 75px 0;
}

#results .box .intro {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 20px;
}

#results .box .intro .thumb {
    width: 180px;
    height: 110px;
}

#results .box .intro .txt {
    width: 625px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

#results .box .intro .sub_title {
    width: 100%;
}

#results .box .intro .sub_title a {
    text-decoration: underline;
    color: #2082d7;
    display: block;
}

.note {
    font-size: 12px;
    line-height: 1.3;
    margin-top: auto;
    width: 100%;
}

/*  tag_list
------------------------*/

.tag_list {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #d3e3eb;
    border-radius: 4px;
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
    /* margin-bottom: 20px; */
}

.tag_list li {
    background: #fff;
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    margin: 5px;
    display: block;
    padding: 0 10px;
    color: #2082d7;
}

/*  excerpt_list
------------------------*/

.excerpt_list {
    width: 100%;
    font-size: 12px;
    line-height: 1.6;
}

.excerpt_list th,
.excerpt_list td {
    border-bottom: 1px solid #acc8e0;
    box-sizing: border-box;
    padding: 10px 15px;
}

.excerpt_list tr:first-of-type th,
.excerpt_list tr:first-of-type td {
    border-top: 1px solid #acc8e0;
}

.excerpt_list th {
    width: 80px;
    background: #f2f2f2;
    color: #2082d7;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}

.excerpt_list th::before {
    font-family: 'icomoon';
    font-size: 22px;
    font-weight: normal;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.excerpt_list .th_jobcat::before {
    content: '\e90f';
}

.excerpt_list .th_salary::before {
    content: '\e90b';
}

.excerpt_list .th_station::before {
    content: '\e90c';
}

.excerpt_list td {
    width: 740px;
    height: 80px;
}

.excerpt_list td p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*  btn_area
------------------------*/

.btn_area {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0 30px;
    box-sizing: border-box;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 0;
}

#results .btn_area {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0;
}

.btn_area .btn {
    height: 50px;
    line-height: 50px;
}

.btn_area .btn.keep {
    width: 170px;
    margin-right: 15px;
    position: relative;
}

.wpfp-img {
    width: 20px;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
}

.btn_area .btn.more {
    width: 265px;
}

.btn_area .btn a {
    position: relative;
}

.btn_area .btn a::before {
    font-family: 'icomoon';
    font-weight: normal;
}

.btn_area .btn.keep a {
    color: #fff;
}

.btn_area .btn.keep a::before {
    content: '\e900';
    font-size: 20px;
    color: #f8c860;
    padding-right: 5px;
    line-height: 1;
    vertical-align: text-top;
}

.btn.more a::before,
.btn.more-inline a::before {
    font-family: 'icomoon';
    content: '\e91b';
    font-size: 22px;
    color: #ff8400;
    position: absolute;
    right: 10px;
    top: -2px;
}

#single .btn_area .btn.more a::before {
    display: inline-block;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/*  title_ribbon
------------------------*/

#results .title_balloon {
    font-size: 20px;
    background: #ffe000;
    color: #2082d7;
    height: 38px;
    line-height: 38px;
    padding: 0 15px;
    border-top: 2px solid #2082d7;
    border-left: 2px solid #2082d7;
    border-right: 2px solid #2082d7;
    top: -60px;
}

#results .title_balloon::before {
    border-top: 8px solid #ffe000;
}

/* =====================
  wp_pagenavi
===================== */

.wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.wp-pagenavi a,
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
    width: 45px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background: #70b328;
    box-shadow: 0px 5px 0px 0px #5c9a1f;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    margin-left: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: .1s;
    color: #fff;
}

.wp-pagenavi a:hover {
    box-shadow: 0px 0px 0px 0px transparent;
    transform: translateY(5px);
}

.wp-pagenavi span.current {
    border: 2px solid #83b34f;
    background: #e7f1f6;
    box-shadow: 0px 5px 0px 0px #83b34f;
    line-height: 36px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
    font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", 'Hiragino Sans', 'ヒラギノ角ゴシック', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 15px;
    width: 75px;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::after,
.wp-pagenavi .first:before,
.wp-pagenavi .last:after {
    content: '\e91b';
    font-family: 'icomoon';
    font-size: 17px;
    color: #e7f1f6;
    font-weight: normal;
    vertical-align: top;
    display: inline-block;
    padding-left: 8px;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .first:before {
    transform: scale(-1, 1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.wp-pagenavi span.current {
    color: #83b34f;
}

/* =====================
  wp_page_numbers
===================== */

.wp_page_numbers ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.wp_page_numbers ul li {
    width: 45px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background: #70b328;
    box-shadow: 0px 5px 0px 0px #5c9a1f;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    margin-left: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: .1s;
    color: #fff;
}

.wp_page_numbers ul li:hover {
    box-shadow: 0px 0px 0px 0px transparent;
    transform: translateY(5px);
}

.wp_page_numbers a {
    display: block;
    color: #fff;
}

.wp_page_numbers .nextpage,
.wp_page_numbers .prevpage {
    font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", 'Hiragino Sans', 'ヒラギノ角ゴシック', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 15px;
    width: 150px;
}

.wp_page_numbers .nextpage a::after,
.wp_page_numbers .prevpage a::before {
    content: '\e91b';
    font-family: 'icomoon';
    font-size: 17px;
    color: #e7f1f6;
    font-weight: normal;
    vertical-align: top;
    display: inline-block;
    padding-left: 8px;
}

.wp_page_numbers .prevpage a::before {
    transform: scale(-1, 1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.wp_page_numbers .active_page,
.wp_page_numbers .page-numbers li span.current {
    border: 2px solid #2082d7;
    background: #e7f1f6;
    box-shadow: 0px 5px 0px 0px #c3dce9;
    line-height: 36px;
}

.wp_page_numbers .active_page a {
    color: #2082d7;
}

/* =====================
  modal
===================== */

.modal-overlay {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-wrap {
    z-index: 1001;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.remodal-cancel-button {
    position: absolute;
    top: 0;
    right: 0;
}

.lock {
    overflow: hidden;
}

.modal-content {
    position: relative;
    display: none;
}

.modal_inner {
    width: 900px;
    padding: 25px 35px 40px 35px;
    box-sizing: border-box;
    position: relative;
    background: #e7f1f6;
    border-radius: 4px;
}

.detail-wrap {
    height: calc(50vh - 35px);
    overflow-y: scroll;
    background: #fff;
    padding: 30px 35px;
    font-size: 13px;
    box-sizing: border-box;
}

.detail-head {
    text-align: center;
}

.remodal-cancel-button .modal-close {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #e7f1f6;
}

.remodal-cancel-button .modal-close::before,
.remodal-cancel-button .modal-close::after {
    content: '';
    position: absolute;
    display: inline-block;
    top: 9px;
    left: 19px;
    width: 2px;
    height: 20px;
    background: #e7f1f6;
}

.remodal-cancel-button .modal-close::before {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.remodal-cancel-button .modal-close::after {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.remodal-cancel-button .modal-close:hover {
    opacity: 0.8;
}