@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url("components/_root.css");
@import url("components/_label.css");
@import url("components/_button.css");
@import url("components/_badge.css");
@import url("components/_step-status.css");
@import url("components/_input.css?v=250317");

/* リスト要素をリセットする ---------------- */
dl,
dt,
dd,
ol,
ul,
li {
    list-style-position: outside;
    list-style-type: none;
}
/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* floatの解除 ------------- */
.fbox {
    clear: both;
    _display: inline-block;
    min-height: 1%;
}
.fbox:after {
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    content: ".";
    line-height: 0;
}

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

	スタイルの設定

=================================================================== */
html {
    font-size: 14px;
}
body {
    color: #444444;
    line-height: 1.5;
    margin: 0;
    background: #fff;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
    /* 900,700,500,400,300,200 */
}
#contents {
    box-sizing: border-box;
}
#contents * {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}

/* ---------------- 上書き ------------- */
strong {
    font-weight: bold;
}
p,
li,
dl,
dt,
dd {
    line-height: 1.5;
}
.red {
    color: #f40027;
}
.red2 {
    color: #dc0000;
}
.blue {
    color: blue;
}
.blue {
    color: blue;
}
.txt-left {
    text-align: left;
}
.txt-right {
    text-align: right;
}
.txt-center {
    text-align: center;
}

.bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(51, 51, 51, 0.7);
    display: none;
}

/* ===================================================================
	通常のリンク
=================================================================== */
a {
    text-decoration: underline;
}
a:link {
    color: #558bc6;
}
a:visited {
    color: #558bc6;
    /*	text-decoration:none;*/
}
a:hover {
    color: #7ba8db;
    /*	text-decoration:none;*/
}
a:active {
    color: #7ba8db;
    /*	text-decoration:none;*/
}
/* メインエリアはリンクにアンダーライン */
/*#main a{
	text-decoration:underline;
}*/

/* ===================================================================
	#header
	ヘッダー
=================================================================== */
header {
    width: 100%;
    padding: 0;
    background: #444444;
    color: #ffffff;
}
#header_inner {
    width: 98%;
    max-width: 1000px;
    margin: 0 auto;
}

#header_inner a {
    text-decoration: none;
}

#header_inner a.link-back-home {
    color: var(--white);
}

#header_top {
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.header_top_name {
    margin-top: 5px;
    text-align: right;
}

.header-top-download-pdf {
    margin-top: 5px;
    margin-right: 10px;
    padding-right: 10px;
    text-align: right;
    color: var(--white) !important;
    height: 21px;
    font-size: 12px;
    border-right: 1px solid var(--gray);
}

.header-top-download-pdf .fa-download{
    font-size: 16px;
}

.header_top_r {
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

/*	ロゴ
------------------------------------------------------------------ */
h1#top {
    margin: 10px 0;
    line-height: 24px;
}
#top img {
    height: 20px;
    vertical-align: top;
}
h1#top span {
    margin-left: 0.5em;
    padding-left: 0.5em;
    border-left: 1px solid #fff;
}

/*	サブメニュー
------------------------------------------------------------------ */
#submenu {
    margin-left: 15px;
}
#submenu ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
#submenu ul li {
    margin-left: 5px;
    font-size: 12px;
}
#submenu ul li a {
    display: block;
    padding: 5px 10px;
    background: #fff;
    color: #444;
}
#submenu ul li span {
}
#submenu ul li i {
    margin-right: 0.5em;
}

/*	グローバルメニュー
------------------------------------------------------------------ */
#gmenu {
    align-self: flex-end;
}
#gmenu ul {
    margin-top: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
}
#gmenu ul li {
    margin-right: 4px;
    width: 150px;
}
#gmenu ul li a {
    display: block;
    padding: 10px;
    background: #f1f1f1;
    color: #444;
    text-align: center;
    border-top: 5px solid #f1f1f1;
    border-bottom: 5px solid #f1f1f1;
}
#gmenu ul li a.current {
    border-top: 5px solid #00797e;
    border-bottom: 5px solid #fff;
    background: #fff;
}

/* タブレット */
@media (max-width: 960px) {
    #top img {
        /*
		width: 100px;
		height: auto;*/
    }
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
    #gmenu ul li {
        width: auto;
        font-size: 0.9rem;
    }
    #gmenu ul li a {
        padding: 5px 10px;
    }
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
    .header_contact_tel {
        font-size: 1.4rem;
    }
}

/* ===================================================================
	#footer
	フッター
=================================================================== */
footer {
    padding: 0;
    background: #f1f1f1;
}

footer.footer-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

footer.footer-layout address {
    padding-top: 0;
}

/* -------------- address -------------- */
address {
    margin: 0;
    padding: 10px 0;
    text-align: center;
    font-style: normal;
    font-size: 11px;
}

/* ===================================================================
	共通CSS
=================================================================== */
#main {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

#main h2 {
    margin: 0 0 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* タブレット */
@media (max-width: 960px) {
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}

/*	タイトル
----------------------------------------------------------------- */
#page_title {
    padding: 80px 0 0;
    background: url(../img/header_img.png) no-repeat top center;
    background-size: cover;
    color: #ffffff;
}
#page_title h1 {
    margin: 0 auto;
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 900;
}
#page_title h1 span {
    display: block;
    font-size: 1.4rem;
    color: #00797e;
    font-family: "Open Sans", Open Sans, sans-serif;
    font-weight: 800;
}

h2.title {
    text-align: center;
    margin: 0 0 30px;
}
h2.title span {
    display: block;
    font-size: 25px;
    font-weight: 900;
}
h2.title span.title_en {
    margin: 0.5em 0 0;
    font-size: 16px;
    color: #00797e;
    font-family: "Open Sans", Open Sans, sans-serif;
    font-weight: 800;
}

.title_under {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}
.title_under span {
    padding: 0 0.5em;
    background: linear-gradient(transparent 70%, rgba(255, 197, 21, 0.5) 70%);
}

br.sp {
    display: none;
}

/* タブレット */
@media (max-width: 960px) {
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
    #page_title {
        padding: 60px 0 0;
        background: url(../img/header_img.png) no-repeat top center;
        background-size: cover;
        color: #ffffff;
    }
    #page_title h1 {
        margin: 0 auto;
        padding: 20px 0;
        font-size: 1.6rem;
        font-weight: 600;
    }
    #page_title h1 span {
        font-size: 1rem;
        font-weight: 700;
    }

    h2.title span {
        font-size: 20px;
    }
    h2.title span.title_en {
        font-size: 13px;
    }
    br.sp {
        display: inline-block;
    }
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
    h2.title {
        margin-bottom: 20px;
    }
}

/*	ぱんくず
----------------------------------------------------------------- */
#breadcrumb {
    margin-bottom: 40px;
    font-size: 0.9rem;
}
#breadcrumb ul li {
    display: inline-block;
}
#breadcrumb ul li:after {
    content: ">";
    margin: 0 0.5em;
}
#breadcrumb ul li:last-child:after {
    display: none;
}

/*	共通設定
----------------------------------------------------------------- */

/* ボタン */
a.btn_edit,
button.btn_edit {
    display: inline-block;
    /*	height: 3em; */
    margin: 0 1em;
    padding: 0.8em;
    background: #00797e;
    color: #444444;
    font-weight: 600;
    /*	line-height: 3em;*/
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
}
a.btn_edit i,
button.btn_edit i {
    margin-right: 0.5em;
}

/* 20190709 ohayashi 右側にアイコンを置きたかったので、右側バージョンを追加 */
a.btn.icon_right i,
button.btn.icon_right i {
    margin-left: 0.5em;
    margin-right: 0;
}

/* inputとか */
input[type="text"],
input[type="password"] {
    width: 100%;
    height: 2.4em;
    border: 1px solid #cad3da;
    padding: 0 0.2em;
    line-height: 2.4em;
}
input[type="checkbox"] {
    margin-right: 0.2em;
}
input[type="radio"] {
    margin: 0 0.5em 0 0;
    /*	margin-right: 0.5em;*/
}

.input.radio label {
    margin-right: 1em;
}
/* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
:placeholder-shown,
::-webkit-input-placeholder {
    color: #949da6;
}
:-moz-placeholder,
::-moz-placeholder {
    color: #949da6;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #949da6;
}
::-ms-input-placeholder {
    color: #949da6;
}
::placeholder {
    color: #949da6;
}

input[type="text"].form_zip {
    width: 8em;
}
input[type="text"].form_tel {
    width: 15em;
}
input[type="text"].form_school {
    width: 20em;
}
input[type="text"].form_mail {
    width: 25em;
}

textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #cad3da;
    padding: 0.5em;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
    resize: none;
}

.input.select {
    width: 100%;
}
select {
    padding: 0.5em;
    border: 1px solid #cad3da;
    line-height: 1;
}
.select_box {
    /*	width: 750px;*/
    width: 100%;
    display: inline-block;
    background: #ffffff;
    position: relative;
}
.select_box select {
    width: 100%;
    height: 2.4em;
    padding: 0 30px 0 0.6em;
    border: 1px solid #cad3da;
    background: transparent;
    position: relative;
    z-index: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select_box select::-ms-expand {
    display: none;
}
.select_box::before {
    content: "\f107";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background: #fff;
    border: 1px solid #cad3da;
    border-left: none;
    height: 100%;
    line-height: 2.2em;
    width: 2em;
    text-align: center;
    font-family: "Font Awesome 5 Free";
    color: #949da6;
    font-weight: 900;
    font-size: 1rem;
}

table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    clear: both;
}

/* 20190710 ohayashi 新規登録ボタンとかを設置するエリアを追加 */
.add_recruits {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}
#main .add_recruits h2 {
    margin-bottom: 0;
}
.add_recruits p.add_receruit_rightbox {
    display: block;
    margin-left: auto;
}

/* 20190710 ohayashi ヘッダーの下に前のページに戻るようのリンクが欲しかったため追加
主に、地点一覧のページ
 */
.page_head_sec {
    margin-top: -10px;
    margin-bottom: 30px;
}
.page_head_sec a.head_prevlink {
}

/* 20190710　おはやし 一覧の中にあるボタンの大きさを調整 */
.tbl_data a.btn {
    padding: 0.5em 0.8em;
}

/* 20190710 ohayashi　一覧の編集ボタン用に青色が欲しかったので追加 */
a.btn.btn_edit {
    background: #1767a4;
    color: #fff;
}

/* 20190709 ohayashi　キャンセル用の灰色のボタンが欲しかったため追加 */
a.btn.btn_cancel,
button.btn.btn_cancel {
    background: #e3e3e3;
    color: #444;
}

/* バリデーションエラーのメッセージ　20190704　おはやし */
form .form-error-message {
    color: #ff0000;
    font-weight: bold;
}

/* 採用・不採用のボタン */
button.btn_fusaiyou,
button.btn_fusaiyou_cancel {
    display: inline-block;
    width: 100%;
    margin: 0.5em 0 0;
    padding: 0.5em 0.8em;
    background: #00797e;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
}
button.btn_fusaiyou_cancel {
    /*	background: #f7931e;*/
}

tr.not_adopted td {
    background: #f6f6f6;
}

/* エラーメッセージ系
===================================================== */

/* 大元になるもの ------------------- */
.message {
    font-size: 120%;
    font-weight: bold;
    padding: 5px 10px;
    margin: 10px 0;
}
/* 追加（緑） ------------------- */
.message.success,
.message.add {
    color: #009933;
    border: 1px dashed #009933;
}
/* 編集（青） ------------------- */
.update-message {
    color: #0099ff;
    border: 1px dashed #0099ff;
}
/* 削除（赤） ------------------- */
.message.error {
    color: #ff0000;
    border: 1px dashed #ff0000;
}

/* タブレット */
@media (max-width: 960px) {
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
    input[type="text"].form_tel,
    input[type="text"].form_school,
    input[type="text"].form_mail {
        width: 100%;
    }
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}

/*	ページャー
----------------------------------------------------------------- */
.paging_wrapper {
    margin: 5px 0;
    text-align: center;
}

.paging span {
    margin: 0 2px;
}
.paging span:first-child {
    margin: 0 8px 0 0;
}
.paging span:last-child {
    margin: 0 0 0 8px;
}
.paging span a {
    display: inline-block;
    padding: 2px 2px;
    color: #00797e;
    background: #ffffff;
    text-decoration: none;
}
.paging span.current {
    padding: 2px 5px;
    color: #ffffff;
    background: #444444;
    border: 1px solid #444444;
}
.paging span.disabled,
.paging span.next {
    padding: 5px;
    background: #c9c9c9;
    border: none;
}
.paging span a.disabled,
.paging span a.next {
    padding: 5px;
    background: #00797e;
    color: #fff;
    border: none;
}

/* タブレット */
@media (max-width: 960px) {
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
    #breadcrumb {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .pager_area {
        display: block;
    }
    .paging_wrapper {
        text-align: center;
    }
    .result_counts {
        margin-bottom: 10px;
    }
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}

/* ===================================================================
	ログイン
=================================================================== */

#login {
    width: 50%;
    margin: 0 auto 50px;
    padding: 40px;
    background: #f1f1f1;
}
.login_input {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 10px;
}
.login_input dt {
    width: 6em;
    flex-shrink: 0;
}
.login_input dd {
    flex-grow: 1;
}
.login_btn {
    margin: 20px 0 20px;
    text-align: center;
}
.btn_login {
    display: inline-block;
    margin: 0;
    padding: 0.8em 1.5em;
    background: #00797e;
    /*color: #444444; 210809 shirafuji 見やすく変更*/
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
}
.login_forget {
    text-align: center;
}
.login_forget i {
    margin-right: 0.5em;
}

/* タブレット */
@media (max-width: 960px) {
    #login {
        width: 80%;
    }
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}

/* ===================================================================
	一覧表示
=================================================================== */

/* サーチパネル
--------------------------------------- */
#search_pnl {
    border: 1px solid #e1e1e1;
    margin: 0 0 20px;
    padding: 15px;
}
#search_pnl h3 {
    margin: -15px -15px 15px;
    padding: 5px 10px;
    background: #444444;
    color: #fff;
    font-weight: 400;
}
.search_clm2 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.search_clm2 dl {
    width: 50%;
}
.search_clm {
    /*	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;*/
}
input#date_s,
input#date_e,
input.date_input {
    width: 8em;
}
.pnl_item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 10px;
}
.pnl_item dt {
    /*	width: 12em;*/
    width: 8em;
    padding-right: 0.5em;
    flex-shrink: 0;
    align-self: center;
    text-align: right;
}
.search_clm .pnl_item dt {
    width: 8em;
    flex-shrink: 0;
    /*	text-align: left;*/
}
.pnl_item dd {
    align-self: center;
    flex-shrink: 1;
    flex-grow: 1;
}
.pnl_item #text {
    padding-right: 20px;
}
.search_btn {
    text-align: center;
}
a.btn,
.btn {
    display: inline-block;
    margin: 0;
    padding: 0.8em 1em;
    background: #00797e;
    color: #f1f1f1;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
}
.btn i {
    margin-right: 0.5em;
}

/* 表示件数
--------------------------------------- */
.num {
    display: flex;
}

.date_num {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 5px;
    justify-content: space-between;
}
.date_num > div {
    align-self: center;
}
.date_num .select_box {
    width: auto;
}
.list_num {
    padding: 10px 10px 10px 0;
    text-align: center;
}
.num_change {
    padding-left: 10px;
}
/* 操作ボタン
--------------------------------------- */
.sousa_pnl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.sousa_pnl > div {
    align-self: center;
    margin-right: 1em;
}
.sousa_btn_list {
}
.btn_sousa,
a.btn_sousa {
    display: inline-block;
    margin: 0 6px 0 0;
    padding: 0.6em 1em 0.7em;
    background: #1767a4;
    color: #ffffff;
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
}

/* 一覧テーブル
--------------------------------------- */
table.tbl_data {
    margin: 10px auto;
}
table.tbl_data th,
table.tbl_data td {
    padding: 10px;
    border: 1px solid #e1e1e1;
    vertical-align: middle;
}
table.tbl_data th {
    white-space: nowrap;
    background: #00797e;
    color: #fff;
}
table.tbl_data td {
    text-align: center;
}
table.tbl_data td.nowrap {
    white-space: nowrap;
    text-align: center;
}
.tbl_id {
    width: 3em;
}
.tbl_check {
    width: 1.5em;
}

.tbl_status {
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px dashed #e1e1e1;
}
.tbl_memo {
    padding-top: 10px;
}
table.tbl_data textarea {
    font-size: 13px;
}
table.tbl_data select {
    width: 80px;
    margin-bottom: 10px;
}
.tbl-wrapper {
    width:100%;
    overflow-x: auto;
}

table.tbl_data {
    max-width: 1000px;
}

table.tbl_data th {
    min-width: 100px;
}

.tbl-wrapper .gray{
    background-color: #666666 !important;
}

.empty_title {
    font-size: 80%;
    color: #969696;
}
.toukei {
    background-color: #f5f5f5;
}

/* ===================================================================
	ホーム
=================================================================== */

#home {
}
.home_sec {
    margin-bottom: 30px;
    border: 1px solid #e1e1e1;
    border-top: 2px solid #00797e;
}
.home_sec h3 {
    padding: 10px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #f1f1f1;
    border-bottom: 1px solid #e1e1e1;
}
.home_box {
    padding: 20px;
}

.home_2clum {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.home_2clum section {
    width: 48%;
}

.home_link_list li a i {
    margin-right: 0.3em;
}
/* 応募者管理 */
#home_oubosya {
}

.home_alert {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.home_alert a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fe6064;
}
.home_alert a i {
    margin-right: 0.3em;
}

.home_sec h3.info-sec-title {
    padding: 15px;
    font-size: 24px;
    font-weight: 700;
    background: #ffffff;
    color: #444444;
    border-bottom: 1px solid #e1e1e1;
}

.home_info_alert {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    word-break: break-all;
}

.home_info_alert a {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.home_info_alert .info_inactive_link:hover {
    color: #444444;
}

.home_info_alert p {
    font-size: 1.2rem;
    font-weight: 700;
}

.home_info_alert a i {
    margin-left: 8px;
    font-size: 18px;
    color: #999999;
    font-weight: 900;
}

.home_info_alert a.info_inactive_link {
    display: block;
    text-decoration: none;
}

.home_info_alert a.info_active_link {
    display: block;
    padding-bottom: 10px;
}

/*
20210823 shirafuji 既読用追加
*/
.home_alert div.read a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #797979;
}

/* 求人原稿選考状況 */
#home_senkou {
}
table.tbl_home_senkou {
    margin: 0;
}
table.tbl_home_senkou th,
table.tbl_home_senkou td {
    padding: 5px;
    border: 1px solid #e1e1e1;
    vertical-align: middle;
    font-size: 0.9rem;
    font-weight: normal;
}
table.tbl_home_senkou th {
    white-space: nowrap;
    background: #f1f1f1;
}
table.tbl_home_senkou th.th_num {
    white-space: normal;
    max-width: 6em;
}

/* お知らせ */
.home_news li {
    padding: 10px;
    border-bottom: 1px dotted #ccc;

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.home_news li:last-child {
    border-bottom: none;
}
.home_news li .news_date {
    width: 7em;
    flex-shrink: 0;
}

/* お知らせ情報 */
.swiper {
    width: 100%;
}

.swiper.swiper-custom .swiper-pagination {
    position: static;
    margin-top: 10px;
}

.swiper.swiper-custom .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #e1e1e1;
    opacity: 1;
}

.swiper.swiper-custom
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #00797e;
}

.swiper.swiper-custom .swiper-button-next,
.swiper.swiper-custom .swiper-button-prev {
    width: 48px;
    height: 48px;
    top: 42%;
}

.swiper.swiper-custom .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper.swiper-custom .swiper-button-next {
    background: url(../../img/cadmin/btn_next.svg) no-repeat center;
    right: 2px;
}

.swiper.swiper-custom .swiper-button-prev {
    background: url(../../img/cadmin/btn_prev.svg) no-repeat center;
    left: 0;
}

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

body.modal-open {
    overflow: hidden;
}

.home-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 740px;
    width: 100%;
    display: none;
    z-index: 10;
    overflow-y: auto;
}

.modal-content-home .modal-title-home {
    font-size: 24px;
    font-weight: 700;
    color: #00797e;
}

.modal-content-home .modal-description-home {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #333;
    font-family: Noto Sans JP;
}

.modal-content-home .modal-description-home span {
    display: block;
    font-size: 14px;
    margin-top: 7px;
}

.modal-content-home {
    background: #ffffff;
    padding: 30px 50px;
    border-radius: 16px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.modal-image img {
    margin: auto;
    max-width: 100%;
}

.modal-checkbox {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 28px;
    user-select: none;
}

.modal-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    width: 20px;
    height: 20px;
    border: 1px solid #cad3da;
    z-index: 1;
    border-radius: 2px;
    transform: translateY(-50%);
}

#dontShowAgain:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 5.5px;
    left: 6.5px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 2;
}

#dontShowAgain:checked + label:before {
    border-color: #0079bf;
    background-color: #0079bf;
}

#dontShowAgain {
    border: 1px solid #999999;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: -2px 8px 0 0;
    display: none;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

#confirmButton {
    border: 1px solid #e4e8ec;
    color: var(--black);
    background: #e1e1e1;
    cursor: pointer;
}

#confirmButton span:last-child {
    display: none;
}

#confirmButton i {
    font-size: 12px;
    margin-right: 4px;
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
    .modal-content-home {
        padding: 20px;
        border-radius: 8px;
    }

    .modal-content-home .modal-title-home {
        font-size: 20px;
    }

    .modal-content-home .modal-title-home span {
        display: block;
    }

    .modal-content-home .modal-description-home {
        margin-bottom: 10px;
        text-align: justify;
    }

    .modal-checkbox {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #confirmButton span:last-child {
        display: inline-block;
    }

    #confirmButton span:nth-child(2),
    .swiper.swiper-custom .swiper-button-next,
    .swiper.swiper-custom .swiper-button-prev {
        display: none;
    }
}

/* ===================================================================
	応募者詳細
=================================================================== */

.oubo_pager {
    margin: 20px 0 10px 0;
    text-align: right;
    display: flex;
    justify-content: space-between;
}
.oubo_pager a:link {
    color: #00797e;
    text-decoration: none;
}
.oubo_pager a:visited {
    color: #00797e;
    text-decoration: none;
}
.oubo_pager a:hover {
    color: #00797e;
    text-decoration: none;
}
.oubo_pager a:active {
    color: #00797e;
    text-decoration: none;
}

#oubo_header {
    margin-bottom: 40px;
    border: 1px solid #e1e1e1;
    border-top: 2px solid #00797e;
}
#oubo_no {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f1f1f1;
    border-bottom: 1px solid #e1e1e1;
}
#oubo_prof {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
#oubo_prof > div {
    padding: 20px;
}
#oubo_prof_detail {
    width: 40%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}
.oubo_prof_img {
    width: 100px;
    margin-right: 20px;
    padding: 20px 0;
    flex-shrink: 0;
    text-align: center;
    background: #f1f1f1;
    align-self: flex-start;
}
.oubo_prof_img i {
    font-size: 70px;
}
.oubo_btn a {
    font-weight: bold;
    border: #00797e 1px solid;
    border-radius: 5px;
    padding: 5px 20px;
}
.oubo_btn a:link {
    color: #00797e;
    text-decoration: none;
}
.oubo_btn a:visited {
    color: #00797e;
    text-decoration: none;
}
.oubo_btn a:hover {
    color: #00797e;
    text-decoration: none;
}
.oubo_btn a:active {
    color: #00797e;
    text-decoration: none;
}

.oubo_prof_btn {
    width: 100%;
}
.oubo_prof_name {
    font-size: 26px;
    font-weight: 600;
}
.oubo_prof_sex {
    margin-right: 10px;
    font-weight: 600;
}
.oubo_prof_age {
    font-weight: 600;
}
#oubo_joukyou {
    width: 58%;
}

#oubo_joukyou dl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}
#oubo_joukyou dl:last-child {
    border-bottom: none;
}
#oubo_joukyou dl dt {
    width: 10em;
    flex-shrink: 0;
    font-weight: bold;
}

a.btn_memo_edit {
    display: inline-block;
    margin-left: 0.8em;
    padding: 0.4em 0.8em 0.5em;
    background: #1767a4;
    color: #ffffff;
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
}

table.tbl_oubo_detail {
    margin: 10px auto;
}
table.tbl_oubo_detail th,
table.tbl_oubo_detail td {
    padding: 10px;
    border: 1px solid #e1e1e1;
    vertical-align: middle;
}
table.tbl_oubo_detail th {
    width: 150px;
    white-space: nowrap;
    background: #f1f1f1;
    text-align: left;
}
table.tbl_oubo_detail td.nowrap {
    white-space: nowrap;
}
table.tbl_oubo_detail td label {
    display: inline-block;
    width: 10em;
    margin: 0.2em;
}
.help-block {
    margin-top: 0.5em;
    color: #666;
}

/* ===================================================================
	原稿管理
=================================================================== */

.notice_genkou {
    margin: 10px 0 30px;
    padding: 10px;
    background: #fff8e1;
    font-size: 1.1rem;
    font-weight: 400;
}

/*	詳細
----------------------------------------------------------------- */
.job_icon {
    margin: 0 0 10px;
}
.job_icon span {
    display: inline-block;
    margin-right: 10px;
    border-radius: 3px;
    padding: 2px 7px;
    box-sizing: border-box;
    font-size: 0.8rem;
}
.job_icon span:last-child {
    margin-right: 0;
}
.job_icon_type {
    background: #ffffff;
    border: 2px solid #00797e;
}
.job_icon_new {
    background: #ff1d25;
    border: 2px solid #ff1d25;
    color: #ffffff;
}

#job_detail {
    background: #ffffff;
    border-top: 2px solid #00797e;
}

#job_detail_header {
    padding: 30px;
    border-bottom: 1px solid #00797e;
}
#job_detail_header h2 {
    margin-bottom: 5px;
    font-size: 2rem;
    font-weight: bold;
}
.job_detail_company {
    color: #808080;
}

#job_detail_body {
    padding: 30px;
}
.job_detail_maintxt h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#job_detail_main {
    margin-bottom: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

/* ギャラリー */
#job_photo_gallery_sp {
    display: none;
}
#job_photo_gallery {
    width: 400px;
    margin-left: 20px;
    flex-shrink: 0;
}
#gallyer_img {
    position: relative;
    margin-bottom: 10px;
}
#gallyer_img img {
    position: absolute;
    top: 0;
    width: 100%;
}

#gallry_thum {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
#gallry_thum a {
    display: block;
    padding: 3px;
}
#gallry_thum li.current a {
    border: 1px solid #00797e;
    padding: 1px;
}

/* レーダーグラフ */
#job_graph {
    margin: 10px 0 40px;
    padding: 20px;
    background: #fff8e1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
#job_radar_chart {
    width: 360px;
    margin-right: 30px;
    flex-shrink: 0;
}
#job_graph_txt {
    align-self: center;
    flex-shrink: 1;
    flex-grow: 1;
}
#myChart {
    width: 360px;
    padding: 1px;
    height: auto;
}

/* 募集要項 */
.job_summary {
}
.job_summary_tbl {
    border-top: 1px dotted #c9c9c9;
}
.job_summary_tbl th,
.job_summary_tbl td {
    padding: 1em;
    text-align: left;
    border-bottom: 1px dotted #c9c9c9;
}
.job_summary_tbl th {
    background: #fff7e6;
    width: 11em;
    font-weight: 600;
}

/* コメント */
#job_comment {
    margin: 40px 0;
    background: #fff8e1;
    padding: 20px;
}
#job_comment h4 {
    font-size: 1.2rem;
    margin: 0 0 10px;
}
.job_comment_body {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.job_comment_img {
    width: 30%;
}
.job_comment_txt {
    width: 68%;
}

/* ボタン */
.job_detail_btn {
    margin: 40px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}
.job_detail_btn a {
    display: block;
    width: 30%;
    min-width: 15em;
    margin: 0 1%;
    text-align: center;
    border-radius: 3px;
    padding: 0.8em;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
}
.job_detail_btn a i {
    margin-right: 0.5em;
}
.job_detail_btn a.job_unit_btn_fav {
    background: #e3e3e3;
    color: #969696;
}
.job_detail_btn a.job_unit_btn_fav.fav {
    background: #ffe7b3;
    color: #444444;
}
.job_detail_btn a.job_unit_btn_fav.fav i {
    color: #00797e;
}
.job_detail_btn a.job_unit_btn_apply {
    background: #fe6064;
    color: #ffffff;
}
.job_detail_btn a.job_unit_btn_tel {
    background: #fe6064;
    color: #ffffff;
    display: none;
}
.job_detail_btn a.job_unit_btn_more {
    background: #558bc6;
    color: #ffffff;
}
/* 応募専用TEL */
.oubo_senyou_tel {
    margin-bottom: 0.5em;
    font-size: 1.2rem;
}
.oubo_senyou_tel i {
    margin-right: 0.2em;
}
.oubo_senyou_tel .num {
    font-weight: bold;
    color: #fe6064;
    font-size: 120%;
}

/* ページ内リンク */
.job_detail_pagelink {
    display: flex;
    flex-wrap: wrap;
}
.job_detail_pagelink li {
    margin-right: 1em;
}
.job_detail_pagelink li a i {
    margin-right: 0.3em;
}

.page_top_link {
    text-align: right;
}

/* 原稿管理ステータス */
/* 共通設定 */
.status_icon {
    display: inline-block;
    padding: 0.3em 0.4em 0.4em;
    line-height: 1;
    color: #fff;
    font-size: 11px;
    vertical-align: middle;
}
/* 作成中 */
.status_sakuseichu {
    background: #539bd5;
}
/* 容認待ち */
.status_syouninmachi {
    background: #f2a016;
}
/* 公開中 */
.status_koukaichu {
    background: #ea5c7f;
}
/* 公開終了 */
.status_end {
    background: #c9c9c9;
}
/* 雑誌 */
.status_zasshi {
    background: #00797e;
}
/* 指定なし */
.status_none {
    border: solid 1px #00797e;
    color: #00797e;
}

/* タブレット */
@media (max-width: 960px) {
    #job_detail_header {
        padding: 20px;
    }
    #job_detail_header h2 {
        font-size: 1.5rem;
    }
    #job_detail_body {
        padding: 20px;
    }
    #job_detail_maintxt h3 {
        font-size: 1.2rem;
    }
    #job_photo_gallery {
        width: 40%;
    }
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
    #job_detail_header {
        padding: 10px;
    }
    #job_detail_body {
        padding: 10px;
    }
    #job_detail_main {
        display: block;
    }
    .job_detail_maintxt {
        margin-bottom: 20px;
    }
    #job_photo_gallery {
        width: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    /* レーダーグラフ */
    #job_graph {
        display: block;
    }
    #job_radar_chart {
        width: 300px;
        margin: 0 auto 20px;
    }
    #job_graph_txt {
        align-self: center;
    }

    /* ボタン */
    .job_detail_btn {
        margin: 30px 0;
        justify-content: space-between;
    }
    .job_detail_btn a {
        width: 30%;
        min-width: inherit;
        margin: 0;
        padding: 0.6em 0;
        font-size: 1rem;
    }
    .job_detail_btn a i {
        margin-right: 0.3em;
    }
    .job_detail_btn a .pc {
        display: none;
    }
    .job_detail_btn a.job_unit_btn_tel {
        display: block;
    }

    .job_summary_tbl {
        width: 100%;
        border-top: 1px dotted #c9c9c9;
        display: block;
    }
    .job_summary_tbl tbody {
        display: block;
    }
    .job_summary_tbl tr {
        display: block;
    }
    .job_summary_tbl th,
    .job_summary_tbl td {
        display: block;
        width: 100%;
        padding: 0.6em;
        text-align: left;
        border-bottom: 1px dotted #c9c9c9;
    }
    .job_comment_body {
        display: block;
    }
    .job_comment_img {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .job_comment_txt {
        width: 100%;
    }
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
    footer.footer-layout .feedback-box {
        text-align: center;
        padding: 0 40px;
    }
}

/* ===================================================================
	掲載枠購入画面 20190709 おはやし
=================================================================== */
/* 送信ボタンのスタイル */
form .submit_btns_area > a {
    margin-right: 0.5em;
}

form .submit_btns_area div#payjp_checkout_box {
    display: inline;
}

form .submit_btns_area div#payjp_checkout_box input[type="button"] {
    padding: 0.8em 1.5em;
    font-family: Noto Sans Japanese, Noto Sans JP, -apple-system,
        BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, sans-serif;
    font-weight: 600;
    font-size: 100%;
    line-height: 1.5;
    vertical-align: baseline;
    background: #319cd3;
}

/*	モーダル表示
----------------------------------------------------------------- */
.modal_base {
    position: relative;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 2em;
    height: 2em;
    line-height: 2em;
    border-radius: 1em;
    background: #fff;
}
.close a {
    display: block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    background: #00797e;
    font-size: 20px;
    border-radius: 1em;
    cursor: pointer;
    color: #444;
    font-weight: bold;
    text-decoration: none;
}
.iziModal-content {
}
.modal_base .card {
    padding: 0;
}
.modal_base .card h3 {
    padding: 20px 0;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #00797e;
}

.modal_base .card-block {
    padding: 20px;
}
.modal_base .card-block label {
    margin-right: 1em;
}
.modal_base .card-footer {
    padding: 20px;
    text-align: center;
}

/* タブレット */
@media (max-width: 960px) {
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}

/* ===================================================================
	効果測定
=================================================================== */
.suii {
    margin-top: 60px;
}
.suii h4 {
    margin: 0 0 20px;
    font-size: 20px;
    text-align: center;
}
.gurahu {
    width: 100%;
    margin: 0 auto;
    padding: 50px 3%;
    text-align: center;
    border: #444 1px solid;
}
.kouka_btn {
    text-align: center;
    margin: 50px 0;
}
.kouka_btn a {
    display: inline-block;
    min-width: 200px;
    padding: 5px 1em;
    font-weight: bold;
    border: #00797e 1px solid;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.kouka_btn a:link {
    color: #00797e;
    text-decoration: none;
}
.kouka_btn a:visited {
    color: #00797e;
    text-decoration: none;
}
.kouka_btn a:hover {
    color: #00797e;
    text-decoration: none;
}
.kouka_btn a:active {
    color: #00797e;
    text-decoration: none;
}

.loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
}
.loader {
    display: none;
    width: 800px;
    height: 300px;
    background: #fff;
    opacity: 0.5;
    position: fixed;
    top: 50%;
    text-align: center;
    margin-left: -50px;
    margin-top: -250px;
    z-index: 2;
    overflow: auto;
}

table.tbl_data select.select-selection-status {
    width: 100%;
}

@media only screen and ( max-width : 576px ) {
	.login_input {
		flex-direction: column;
	}
}

.login_input:has(.remember_me) label {
	display: flex;
	align-items: center;
}

input[type=checkbox].remember_me {
	margin: 0;
	margin-right: 4px;
	height: 16px;
	width: 16px;
	position: relative;
}

/* Box */
input[type=checkbox].remember_me:before {
	content: '';
	display: block;
	position: absolute;
	background-color: white;
	width: 100%;
	height: 100%; /* Adjust height as needed */
	border: 1px solid #CAD3DA;
	left: 0;
	top: 0;
}
input[type=checkbox].remember_me:checked:before {
	background-color: #005CC8;
}

/* checked */
input[type=checkbox].remember_me:checked:after {
	content: '';
	display: block;
	position: absolute;
	background-color: transparent;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	width: 5px;
	height: 10px;
	left: 5px;
	top: 2px;
	transform: rotate(35deg);
}

.d-block{
    display: block !important;
}

.font-size-11 {
    font-size: 11px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.font-size-16 {
	font-size: 16px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-24 {
	font-size: 24px !important;
}

.text-scout {
	color: var(--scout) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-hunt {
    color: var(--hunt) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-gray-dark {
    color: var(--gray-dark) !important;
}

.text-link {
    color: var(--link) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-link i {
	margin-left: 2px;
}

.text-white {
    color: var(--white) !important;
}

.text-success {
    color: var(--success) !important;
}

.bg-scout {
	background-color: var(--scout) !important;
}

.bg-hunt {
    background-color: var(--hunt) !important;
}

.body-no-scroll {
    overflow: hidden;
}
