@charset "UTF-8";

@media only screen and (min-width:1024px) {
    /* フラグ */
    .flg-pc {
        display: block;
    }

    .container {
        /* background: green; */
        /* border: 2px solid red; */
    }

    /* .container > * {
        position: relative;
    } */
    /* box-shadow:水平方向の距離　垂直方向の距離　ぼかし具合 広がり具合（距離）　色指定（任意）; */
    .container > header {
        position: fixed;
        padding: 0 0 1rem;
        background: #ffffff;
        z-index: 1010;
        /*  */
        box-shadow: 0 0 0.5rem 0 #666666;
    }

    /* 幅の設定 */
    .logo-container,
    .container h1 > span,
    .container > main,
    .footer-container {
        width: 1000px;
        margin: auto;
        position: relative;
    }

    /* ヘッダーの中身 */
    .logo-container {
        height: 9rem;
        /* background: url(../img/bg.png) no-repeat top left #ffffff; */
    }

    /* タイトルロゴ */
    .logo {
        padding: 1.75rem 0 0;
    }

    .logo span {
        font-size: 2.2rem;
        font-weight: bold;
        color: #333333;
        display: inline-block;
        margin-left: 3rem;
    }

    /* .logo img {
        width: 37.3rem;
        height: auto;
    } */

    /* ハンバーガーメニュー：PC 用では無効 */
    .menu-btn-check {
        display: none;
    }

    /* メニュー */
    .main-menu > ul {
        position: absolute;
        bottom: 1rem;
    }

    .menu1, .menu2, .menu3, .menu8 {
        display: none;
    }

    .menu4, .menu5, .menu6,
    .menu7 {
        position: relative;
        display: inline-block;
        padding-right: 2.7rem;
        cursor: pointer;
    }

    /* 青い > を付けている */
    /* .menu4::before, .menu5::before, .menu6::before, */
    .menu7::before {
        content: "r ";
        font-family: 'アイコンフォント';
        font-size: 1.3em;
        vertical-align: 0.3em;
        display: inline-block;
        margin-right: 0.8rem;
    }

    .menu4::before,
    .menu5::before,
    .menu6::before {
        content: "D";
        font-family: 'アイコンフォント';
        font-size: 1.4em;
        vertical-align: 0.1em;
        display: inline-block;
        margin-right: 0.8rem;
    }

    /* アクティブになっているメニューの表現 */
    /* .menu4.active,
    .menu5.active,
    .menu6.active {
        border-bottom: 3px solid #cc0000;
    } */

    .menu4.active > a,
    .menu5.active > a,
    .menu6.active > a {
        border-bottom: 4px solid #0044cc;
    }

    .menu7::before {
        content: "w ";
        vertical-align: 0.2em;
    }

    .main-menu a {
        text-decoration: none;
    }

    .main-menu a:hover {
        color: #b40000; /* orange */
    }

    .menu4 > a, .menu5 > a, .menu6 >a,
    .menu7 > a {
        color: #333333;
        font-size: 1.7rem;
        font-weight: bold;
    }

    .menu4.clicked {
        /* padding: 1rem; */
        /* border: 1px solid red; */
    }

    /* .menu4.clicked::before,
    .menu5.clicked::before,
    .menu6.clicked::before {
        content: "D";
        margin-right: 0.15rem;
    } */

    /* サブメニュー */
    .sub-logo {
        display: none;
    }

    .submenu {
        display: none;
        position: absolute;
        left: -0.1rem;
        margin: 1rem 0 0;
        font-size: 1.5rem;
        line-height: 2;
        background: #ffffff;
        padding: 1rem 1.5rem;
        /* border: 1px solid red; */
        width: max-content;
        box-shadow: 1px 1px 5px 0px rgba(62, 53, 80, 0.5);
        /* border-radius: 0 0 5px 5px; */
    }

    .menu4.clicked .submenu,
    .menu5.clicked .submenu,
    .menu6.clicked .submenu {
        display: block;
    }

    .submenu a::before {
        content: "r ";
        font-family: 'アイコンフォント';
        font-size: 1.3rem;
        vertical-align: 0.3rem;
    }

/* イベント情報・エントリーボタン */
.event-entry {
    /* background: #ffffff; */
    /* padding: 0.5rem 0; */
    width: 30rem;
    height: 9rem;
    position: absolute;
    top: 0;
    right: 0;
    /* border: 1px solid blue; */
}

.event-btn,
.entry-btn {
    flex-grow: 1;
    position: relative;
    height: 9rem;
    /* border: 1px solid red; */
}

.event-btn::before,
.entry-btn::before {
    /* content: url(../img/icn_arrow_forward.svg); */
    content: "r";
    font-family: 'アイコンフォント';
    color: #ffffff;
    font-size: 1.5rem;
    position: absolute;
    top: calc(50% - 0.9rem);
    /* bottom: calc(50% - 1rem); */
    left: 10px;
    /* zoom: 0.8; */
}

.entry-btn::before {
    /* content: url(../img/icn_arrow_forward_b.svg); */
    color: #0044cc;
}

.event-btn {
    background: #0037a6;
}

.entry-btn {
    background: #fad000;
}

.event-btn > a,
.entry-btn > a {
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 9rem;
    text-decoration: none;
}

.event-btn > a {
    color: #ffffff;
}

.entry-btn > a {
    color: #0037a6;
}

.event-btn:hover,
.entry-btn:hover {
    background: #b40000; /* orange */
}


/* パンくずリスト */
.breadcrumb {
    font-size: 1rem;
    padding: 0.3rem 0 0;
}

.breadcrumb > a {
    display: inline-block;
    /* padding: 0 1rem; */
}

.breadcrumb > a:after {
    content: "　>　";
    display: inline-block;
}

/* アンカーリスト */
.anchor {
    font-size: 1.75rem;
    padding: 0 0 2rem;
}
.anchor > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin: 0 2rem 0 0;
    color: #333333;
    padding-left: 2rem;
}
.anchor > a:hover {
    color: #b40000; /* orange */
}
.anchor > a::before {
    /* content: "D"; */
    content: "\2794";
    font-family: 'アイコンフォント', sans-serif;
    position: absolute;
    left: 0;
    top: -0.1em;
    font-size: 1em;
    /* margin-right: 0.5rem; */
    color: #003bca;
    transform:rotate(90deg);
}

/* 本文 */
.container main {
    padding: 0 0 2rem;
    margin: 0 auto 20rem;
    position: relative;
    z-index: 10;
}

.contents {
    line-height: 1.8;
}

.contents a {
    text-decoration: none;
}

.contents a:hover {
    text-decoration: underline;
}

/* 文字 */
.container h1 {
    width: 100%;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    height: 9rem;
    padding: 0.2rem 0 0 1.5rem;
    margin: 10rem 0 1.5rem;
    background: linear-gradient(to bottom, #003fcb, #0054fc);
    /* 以下、上下中心の設定 */
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

/* .container h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #0044cc;
    border: 2px solid #0044cc;
    border-width: 2px 2px 2px 0;
    border-radius: 0 2.5rem 2.5rem 0;
    height: 5rem;
    margin: 0 0 2rem;
    padding: 0.2rem 0 0 0.5rem;

    display: flex;

    align-items: center;
} */
.container .h2nd {
    /* font-size: 3rem; */
    font-size: 2.5rem;
    font-weight: bold;
    color: #0044cc;
    border: 2px solid #0044cc;
    border-width: 2px 2px 2px 0;
    border-radius: 0 2.5rem 2.5rem 0;
    /* height: 5rem; */
    height: 4.5rem;
    /* line-height: 5rem; */
    line-height: 4.3rem;
    padding: 0 0 0 1rem;
    margin: 0 0 4rem 0;
}

/* .container .h2nd > span {
    vertical-align: middle;
} */


/* .container h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 2rem;
}
.container h3::before {
    content: "";
    display: inline-block;
    border: 3px solid #0044cc;
    border-radius: 2px;
    margin-right: 0.5rem;
    width: 1.6rem;
    height: 1.6rem;
} */

.container h2 {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 2rem;
    color: #333333;
}
.container h2::before {
    content: "";
    display: inline-block;
    /* width: 4px; */
    /* border: 3px solid #0044cc; */
    /* border-width: 0 0 0 5px; */
    /* border-radius: 2px; */
    border-radius: 2px;
    margin-right: 2.5rem;
    /* width: 2rem; */
    width: 5px;
    /* height: 2rem; */
    height: 3rem;
    background: #0044cc;
    vertical-align: -0.75rem;
}

.container p {
    padding-bottom: 2rem;
}

/* h3 にぶら下がる最後の p の修飾 */
.container h3~p:last-child {
    padding-bottom: 2rem;
    /* border-bottom: 1px solid #cccccc; */
}

.container h3~p.no-border:last-child {
    border: 0px;
}


/* フッター */
.container footer {
    padding: 3rem 2.5rem 0;
    background: #0044cc;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.footer-nav li {
    font-size: 1.3rem;
    line-height: 3;
}

.footer-nav.column {
    justify-content: flex-start;
}

.footer-nav.column > li {
    flex-basis: auto;
    padding: 0 2rem 0 0;
}

/* .footer-nav.column > li:nth-child(6) {
    padding: 0 15rem 0 0;
} */

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
}

/* .footer-nav a::before {
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.9em;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: 0.15rem;
}

.footer-nav a[target]::before {
    content: "w";
    font-family: 'アイコンフォント';
    display: inline-block;
    margin-right: 0.5rem;
} */

.footer-nav a:hover {
    color: #b40000; /* orange */
}

/* pマーク */
.pmark {
    position: absolute;
    top: 0;
    right: 0;
}

.copyright {
    font-size: 1.3rem;
    color: #ffffff;
    padding: 4rem 0 0.5rem;
}

/*  */
.br_pc {
    display: block;
}

/*  */
/* .container a.btn_a::before {
    margin: 0.4rem 0 0 0.3rem;
} */

.container a {
    vertical-align: baseline;
}

.container button.btn_a::before {
    top: -0.1rem;
    /* bottom: calc(50% - 0.75rem); */
}


/* +++++++++++++++++++++++++++++
 * 合同企業説明会
*/

.detail {
    /* display: block; */
    width: 100%;
    border: 1px solid #cccccc;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 3rem;
}

.detail th[colspan] {
    width: 100%;
    background: #bbd3fa;
    border-bottom: 1px solid #cccccc;
}

.detail th {
    width: 15%;
    background: #edf2fa;
    text-align: left;
    vertical-align: top;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid #cccccc;
}

.detail td {
    width: 85%;
    padding: 0.5rem 2rem 0.5rem 2.5rem;
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.detail tr:last-child th, 
.detail tr:last-child td {
    border-bottom: none;
}

.detail .btn_a {
    margin: 1.2rem 0 1.5rem;
}

/* マイナビ */
.cmt_mynav::before {
    white-space: pre;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社マイナビの運営するウェブサイトをご確認ください。\a";
}

/* サーナ */
.cmt_if::before {
    white-space: pre;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社イフの運営するウェブサイトをご確認ください。\a";
}

/* クローバー */
.cmt_jay::before {
    white-space: pre;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社ジェイ・ブロードの運営するウェブサイトをご確認ください。\a";
}

/*  */
.anchor_offset {
    /* position: absolute; */
    position: relative;
    top: -10rem;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
}


/* +++++++++++++++++++++++++++++
 * エントリーフォーム
*/

.container label[for=yes], 
.container label[for=no] {
    font-size: 1.8rem;
    font-weight: bold;
    vertical-align: 0;
}

.entryform_table {
    font-size: 1.4rem;
    border: 1px solid #cccccc;
    margin-bottom: 2.5rem;
}

.entryform_table th {
    text-align: left;
    font-weight: 300;
    width: 35%;
    background: #edf2fa;
}

.entryform_table tr > * {
    padding: 1rem;
    border-bottom: 1px solid #cccccc;
}

.entryform_table td {
    line-height: 2.7;
}

.entryform_table tr:last-child > * {
    border-bottom: none;
}

.entryform_table small {
    color: rgb(200, 0, 0);
}

.entryform_table input[type=text] {
    padding: 0.5rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.entryform_table select {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 0.4rem 0.6rem;
}

.inputarea03 {
    width: 100%;
}

textarea.inputarea03 {
    margin: 0;
    display: block;
    height: max-content;
    border: 1px solid #dddddd;
}

/* +++++++++++++++++++++++++++++
 * インデックス
*/

.offset_img {
    display: block;
    margin: auto;
    height: 10rem;
}

.container h1.index_h1 {
    position: relative;
    width: 100%;
    height: auto;
    font-size: 3rem;
    font-weight: normal;
    color: #ffffff;
    padding: 0;
    margin: 0 0 1.5rem;
    background: #ffffff;
    display: block;
}

.container h1.index_h1 span {
    position: absolute;
    top: 6rem;
    left: 0;
    width: 42.5rem;
    height: 9rem;
    background: #0044cc;
    display: inline-block;
    padding: 1rem 0 0 2.5rem;
    
    font-size: 2rem;
    line-height: 1.3;

    /* display: flex;
    align-items: center; */
}

.container h1.index_h1 span::first-line {
    font-size: 3.2rem;
}

.whats_new {
    font-size: 1.6rem;
    margin: 0 0 4rem;
    display: table;
    table-layout: fixed;
}

.whats_new > * {
    display: table-cell;
}



.whats_new > *:first-child {
	width: 11rem;
    font-size: 1.8rem;
    color: #0044cc;
    font-weight: bold;
    padding: 0 2rem 0 0;
}

.whats_new > *:last-child {
	width: calc(100% - 13rem);
}


.whats_new_list {
	width: 100%;
	display: flex;
}

.whats_new_list > *:first-child {
	width: 15rem;
}

.whats_new_list > *:last-child {
	width: calc(100% - 13rem);
	text-indent: -0.5em;
	padding-left: 0.5em;
}




.column.index {
    justify-content: space-between;
    margin: 0 0 4rem;
}

.column.index > * {
    position: relative;
    overflow: hidden;
    /* border: 1px solid red; */
    flex-basis: 49rem;
    border-radius: 0.5rem;
}

.column.index > *:first-child img,
.column.index > *:last-child img {
    display: block;
    width: 100%;
    height: 100%;
}

.column.index > *:last-child .br_pc,
.column.index > *:last-child .br_tablet,
.column.index > *:last-child .br_sp {
    display: none;
}

.column.index > *:last-child .br_pc {
    display: block;
    width: 100%;
    height: auto;
}

.index_ex, .index_ex3 {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.index_ex2 {
    position: absolute;
    bottom: 1rem;
    left: 0;
}

.link_ex {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
}

.column.index > *.additional_content {
    position: relative;
    padding-bottom: calc(4rem + 2em);
    border-radius: initial;
    /* height: 26rem; */
    /* border: 1px solid red; */
}

.column.index > *.extra_item {
    border-radius: initial;
}

.column.index > *.extra_item > .btn_a {
    width: 100%;
}

/* a[target].btn_a.icon_w::before {
    content: url(../img/icn_window_mw.svg);
} */

/* +++++++++++++++++++++++++++ 
  個人情報の取り扱いについて */

/* .contents dl {
    
} */

/* +++++++++++++++++++++++++++++
 * 採用活動における個人情報の取り扱いについて
*/

.privacy_policy dl {
    font-size: 1.6rem;
    line-height: 1.6;
}

.privacy_policy dt {
    font-weight: bold;
}

.privacy_policy dd {
    padding: 0 0 1em 0;
}

.this-table {
    font-size: 1.6rem;
    border: 1px solid #333333;
    border-width: 0 0 0 1px;
    width: max-content;
    margin: 0 auto 2em;
}

.this-table * {
    padding: 0.5rem 1rem;
    border: 1px solid #333333;
    border-width: 0 1px 1px 0;
}

.this-table th {
    background: #666666;
    color: #ffffff;
}

.link-icon::before {
    content: "w";
    font-family: 'アイコンフォント';
    display: inline-block;
    margin-right: 0.5rem;
}


/* 
 * 生活相談員対談
 ++++++++++++++++++++++++++++++ */
.column.sp {
    justify-content: flex-start;
    gap: 2rem;
    align-items: flex-end;
}

.column.sp > * {
    flex-basis: initial;
}

.prof_box {
    font-size: 1.6rem;
    line-height: 1.6;
}

.prof_box dt {
    font-weight: bold;
}

.conversation_body {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-bottom: 2rem;
}

.conversation_body > dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-bottom: 1rem;
}

.conversation_body > dl > dt {
    width: min-content;
    white-space: nowrap;
    font-weight: bold;
}

.moji_ai {
    color: green;
}

.moji_am {
    color: brown;
}

/* 
 * 採用フロー
 ++++++++++++++++++++++++++++++ */
.aplicanse_flow_enclose {
    background: #e6edf5;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.flow_step {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    width: 60%;
    margin: auto;
}


/* 
 * よくあるご質問・お問い合わせ
 ++++++++++++++++++++++++++++++ */
.contents_block {
    font-size: 1.6rem;
    line-height: 1.6;
}

.faq_a {
    border-bottom: 1px dashed #cccccc;
}

.faq_a a::before {
    content: "r ";
    font-family: 'アイコンフォント';
}

.faq_a.last {
    border-bottom: none;
}

.Q {
    border-top: 1px dotted #cccccc;
    line-height: 1.6;
    padding: 1rem 0;
    position: relative;
    cursor: pointer;
}

.A {
    line-height: 1.6;
    padding: 1rem 3rem 1rem 2.8rem;
    position: relative;
    display: none;
    /* text-indent: -2.7rem; */
}

.Q.open+.A {
    display: block;
}

.Q::before {
    content: "Q ";
    font-family: 'アイコンフォント';
    color: #003dca;
    font-size: 2.2rem;
    vertical-align: -0.15rem;
}

.Q::after {
    content:"p";
    font-family: 'アイコンフォント';
    color: #003dca;
    font-size: 2.2rem;
    position: absolute;
    right: 0;
}

.Q.open::after {
    content:"m";
    font-family: 'アイコンフォント';
    color: #003dca;
    font-size: 2.2rem;
    position: absolute;
    right: 0;
}

.A::before {
    content: "A ";
    font-family: 'アイコンフォント';
    color: #e76b00;
    font-size: 2.2rem;
    position: absolute;
    top: 0.8rem;
    left: 0;
    vertical-align: -0.25rem;
}

.inquiry_list {
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: 1.6;
}


/* 
 * 社員インタビュー
 ++++++++++++++++++++++++++++++ */

.flex_columns.columns_gap_in_interview {
    flex-wrap: wrap;
}

.interview_card {
    position: relative;
    width: calc(50% - 1rem);
    border: 3px solid #003dca;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.interview_title {
    /* position: absolute; */
    /* top: 1.5rem; */
    /* width: 100%; */
    display: block;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.btn_a.interview_btn {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
}

.portrait {
    height: 100%;
}

/* 
 * 社員インタビュー詳細ページ
 ++++++++++++++++++++++++++++++ */
.profile_area {
    background: #e9f2fc;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.flex_columns.interview_detail {
    justify-content: flex-start;
}

.profile_title {
    display: block;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.portrait2 {
    border: 3px solid #ffffff;
    width: 45rem;
    height: 100%;
}

.flex_columns.exexex {
    width: 100%;
    justify-content: center;
}


/*  */

.none_pc {
    display: none;
}



}
