@charset "utf-8";

@media only screen and (max-width: 461px) {

    /* フラグ */
    .flg-sp {
        display: block;
    }

    .container header {
        position: fixed;
        z-index: 1000;
    }

    .logo-container {
        background: #ffffff;
        padding: 1.6rem 0 0;
    }

    /*  */
    .logo {
        padding: 0.3rem 1.2rem 0;
        zoom: 0.7;
    }
    
    .logo span {
        font-size: 2.2rem;
        font-weight: bold;
        color: #333333;
        display: inline-block;
        margin-left: 1rem;
    }

/* メインメニュー */
.main-menu {
    top: 0;
    /* right: 0; */
    right: -500px;
    position: fixed;
    /* width: 0; */
    width: 90%;
    height: 100%;
    visibility: hidden;
    background: #444444;
    z-index: 1080;
    box-shadow: -5px 0 15px #2a1b45 ;
}

@keyframes slideIn {
    from {
        visibility: hidden;
        /* width: 0; */
        right: -500px;
    }

    to {
        visibility: visible;
        /* width: 90%; */
        right: 0;
    }
}

@keyframes slideOut {
    from {
        visibility: visible;
        /* width: 90%; */
        right: 0;
    }
    to {
        visibility: hidden;
        /* width: 0; */
        right: -500px;
    }
}

/* メニュー内ロゴ */
.sub-logo {
    /* background: #ffffff; */
    display: inline-block;
    /* padding: 1.55rem 1rem; */
}

/** --------------------
 * ハンバーガーメニュー：label タグにデザインしている
 */
.hamburger-menu {
    position: fixed;
    top: 0;
    right: 5px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 1090;
    /* background-color: #444; */
}

.hamburger-menu::after {
    content: "メニュー";
    color: #222;
    position: relative;
    top: 18px;
}

.hamburger-menu span,
.hamburger-menu span:before,
.hamburger-menu span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #0044cc;
    position: absolute;
}

.hamburger-menu span:before {
    bottom: 8px;
}

.hamburger-menu span:after {
    top: 8px;
}

.menu-btn-check {
    display: none;
}

/** チェックボックスがチェックされている時の設定。
ハンバーガーメニューがタッチされている状態を表す */
.menu-btn-check:checked~.hamburger-menu span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

.menu-btn-check:checked~.hamburger-menu span::before {
    bottom: 0;
    transform: rotate(45deg);
    background: #ffffff;
}

.menu-btn-check:checked~.hamburger-menu span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #ffffff;
}


/** ハンバーガー押下でメインメニューが展開 */
.menu-btn-check:checked~.main-menu {
    animation: slideIn 0.2s ease-in-out 0s forwards;
}

/** 閉じるボタン押下でメインメニューを閉じる */
/* .menu-btn-check:unchecked ~.main-menu {
    animation: slideOut 0.2s ease-in-out 0s forwards;
} */
/* .menu-btn-check ~.main-menu {
    animation: slideOut 0.2s ease-in-out 0s forwards;
} */
.menu-btn-check.closed ~.main-menu {
    animation: slideOut 0.2s ease-in-out 0s forwards;
}

.menu-btn-check:checked~.hamburger-menu::after {
    content: "閉じる";
    color: #ffffff;
}

/**
 * メインメニューのデザイン
 */
.main-menu > ul {
    /* max-width: 80%; */
    height: 100%;
    margin: 2rem 0 0;
}

.main-menu > ul > li {
    border-bottom: 2px dotted #000000;
    /* padding: 0 1rem 1rem 0; */
}

.main-menu a {
    /* 
        text-align: center;
        text-decoration: none; */
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    padding: 1rem;
    text-decoration: none;
    /* vertical-align: baseline; */
    /* transition: none; */
}

.main-menu > ul > li a {
    padding: 0.9rem 1rem 0.9rem 2.5rem;
}

/*  */
.main-menu .menu1 > a::before,
.main-menu .menu3 > a::before,
.main-menu .menu7 > a::before,
.main-menu .menu8 > a::before {
    /* content: url(../img/icn_arrow_forward.svg); */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.8em;
    /* display: inline-block; */
    /* zoom: 0.8; */
    margin-right: 0.5rem;
    vertical-align: 0.2rem;
}

.main-menu .menu7 > a::before {
    content: "w";
}

.main-menu .menu2 > a::before {
    /* content: url(../img/icn_pluse_w.svg); */
    /* display: inline-block; */
    /* zoom: 0.4; */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.5em;
    margin: 0 0.5rem 0 -0.3rem;
    vertical-align: middle;
}

.main-menu .menu2.closed > a::before {
    /* content: url(../img/icn_minace_w.svg);
    display: inline-block;
    zoom: 0.4; */
    content: "m";
    font-family: 'アイコンフォント';
    font-size: 0.5em;
    margin: 0 0.5rem 0 -0.3rem;
    vertical-align: middle;
}

.main-menu .menu4 > a::before,
.main-menu .menu5 > a::before,
.main-menu .menu6 > a::before {
    content: "・";
    /* display: inline-block; */
    margin-right: 0.5rem;
}

.menu1 > a, .menu2 > a, .menu3 > a, .menu4 > a,
.menu5 > a, .menu6 > a, .menu7 > a, .menu8 > a {
    font-weight: bold;
}

/* サブメニュー */
.submenu {
    background: #555555;
}

.submenu > li {
    border-bottom: 2px dashed #444444;
    padding: 0 0 0 2rem;
}

.submenu > li:last-child {
    border-bottom: none;
}

.submenu>li>a::before {
    /* content: url(../img/icn_arrow_forward.svg);
    display: inline-block;
    zoom: 0.8; */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 0.8em;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* サブメニュー：閉じる状態 */
.submenu.closed {
    display: block;
}

/* イベント情報・エントリーボタン */
.event-entry {
    /* background: #ffffff; */
    /* padding: 0.5rem 0; */
    margin: 2rem 0 0;
}

.event-btn, .entry-btn {
    flex-grow: 1;
    position: relative;
    /* border: 1px solid red; */
}

.event-btn::before,
.entry-btn::before {
    /* content: url(../img/icn_arrow_forward.svg); */
    content: "r";
    font-family: 'アイコンフォント';
    font-size: 1.3rem;
    color: #ffffff;
    position: absolute;
    bottom: 39%;
    left: 5px;
}

.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.3rem;
    font-weight: bold;
    display: block;
    text-align: center;
    /* padding: 1.5rem 0; */
    height: 4.5rem;
    line-height: 4.5rem;
    text-decoration: none;
}

.event-btn > a {
    color: #ffffff;
}

.entry-btn > a {
    color: #0037a6;
}


/* パンくずリスト */
.breadcrumb {
    margin: 0;
    padding: 0 2rem 1.5rem;
    /* 三点リーダー */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb > a {
    display: inline-block;
    /* padding: 0 1rem; */
}

.breadcrumb > a:after {
    content: "　>　";
    display: inline-block;
}

/* アンカーリスト */
.anchor {
    width: 100%;
    font-size: 1.6rem;
    margin-top: -1rem;
    padding: 0 0 2rem;
}
.anchor > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin: 0 1.5rem 0 0;
    color: #333333;
    padding-left: 2rem;
}
.anchor > a:last-child {
    margin: 0;
}
.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);
}

.anchor.ex {
    padding: 0 0 1.5rem 0;
}

.anchor.top {
    margin: 0 0 -2rem 2rem;
}

/*  */
.container main {
    margin: 1rem 0 29rem;
    position: relative;
    z-index: 10;
}

.contents {
    padding: 1.5rem 2rem;
    line-height: 1.8;
}

/* フッター */
.container footer {
    padding: 3rem 1rem 0 2rem;
    background: #0044cc;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* フッターリンク */
.footer-nav > li {
    font-size: 1.1rem;
    line-height: 2.5;
}

.footer-nav.column > li:nth-child(odd) {
    /* flex-grow: 3; */
    /* flex-basis: 19.5rem; */
    flex-basis: 60%;
    /* border: 1px solid red; */
}

.footer-nav.column > li:nth-child(even) {
    /* flex-basis: 13rem; */
    flex-basis: 40%;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
}

/* .footer-nav a::before {
    content: url(../img/icn_arrow_forward.svg);
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: -10%;
    zoom: 0.8;
}

.footer-nav a[target]::before {
    content: url(../img/icn_window_mw.svg);
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: -10%;
    zoom: 0.9;
} */

/* ボタン */
.sp-btn {
     width: 95%;
     display: block;
     margin: 1em auto;
     font-size: 1em;
     font-weight: bold;
     padding: 0.5em 0;
     border: 1px solid #bbb;
     border-radius: 0.5em;
     color: #454545;

     background: linear-gradient(to bottom, #fff, #e8e8e8);
 }

 /* PCボタン */
 .pc-btn,
 .pc-btn-ex {
     padding-left: 1rem;
     padding-top: 0.7rem;
     border-width: 2px;
 }

 .pc-btn::before,
 .pc-btn-ex::before {
     content: url(../img/icn-pc.png);
     display: inline-block;
     margin: -0.1rem 0.3rem -0.2rem 0;
     vertical-align: middle;
     -webkit-transform: scale(0.7);
     transform: scale(0.7);
 }

.pmark {
    margin: 1rem 0;
}

.copyright {
    text-align: center;
}

.copyright small {
    display: inline-block;
    font-size: 0.8rem;
    color: #ffffff;
    padding: 0.5rem 0 0;
    zoom: 0.9;
}


/* 文字 */
.container h1 {
    width: 100%;
    font-size: 2.3rem;
    font-weight: 600;
    color: #ffffff;
    height: 6rem;
    padding: 0.2rem 0 0 2.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: 1.8rem;
    font-weight: bold;
    color: #0044cc;
    border: 2px solid #0044cc;
    border-width: 2px 2px 2px 0;
    border-radius: 0 2.5rem 2.5rem 0;
    /* height: 4rem; */
    height: 3.7rem;
    /* line-height: 3.9rem; */
    line-height: 3.6rem;
    margin: 0 0 2rem -2rem;
    padding: 0 0 0 1.5rem;
}

/* .container h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1rem;
}
.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: 2rem; */
    position: relative;
    /* overflow: hidden; */
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 2.5rem;
    color: #333333;
    /* text-indent: -3rem; */
    /* margin-left: 3rem; */
    /* border-left: 5px solid #0044cc; */
    border-image-source: url(../img/h2_border.png);
    border-image-slice: 6;
    border-image-width: 6px;
    border-image-outset: 0;
    border-image-repeat: round;
    padding-left: 2.5rem;
    text-indent: -0.5rem;
    /* border-radius: 2px; */
}
/* .container h2::before {
    content: "";
    display: inline-block;
    border: 3px solid #0044cc;
    border-radius: 2px;
    margin-right: 1rem;
    width: 1.3rem;
    height: 1.3rem;
} */

.container h2::before {
    content: "";
    display: inline-block;
    /* border-radius: 2px; */
    /* margin-right: 2.5rem; */
    width: 5px;
    height: 3rem;
    /* background: #0044cc; */
    vertical-align: -0.75rem;
}

.container p {
    padding-bottom: 1.8rem;
}

/* h3 にぶら下がる最後の p の修飾 */
.container h3 ~ p:last-child {
    padding-bottom: 2rem;
    /* border-bottom: 1px solid #cccccc; */
}

.container h3~p.no-border:last-child {
    border: 0px;
}

/*  */
.return2top {
    left: initial;
    right: 2.5rem;
    bottom: 3.5rem;
    margin: 0;
}


/* ユーティリティ */
.sp_hidden {
    display: none;
}

.sp_visible {
    display: block;
}

.column.sp {
    flex-direction: column;
}

.column.sp > *:first-child {
    margin: 0;
}

/* ボタン */
.btn_a {
    /* font-size: 1.4rem; */
    text-align: center;
    width: 100%;
    height: 3.6rem;
    line-height: 3.8rem;
}
/* ボタン適用の場合 */
.contents button.btn_a {
    height: 3.8rem;
    line-height: 3.6rem;
}

.btn_a::before {
    vertical-align: -0.1rem;
}
/* ボタン適用の場合 */
.contents button.btn_a::before {
    top: -0.01rem;
}

.btn_b {
    display: block;
    width: 100%;
}

.enclose_a .btn_container {
    margin: 0 1rem 2rem;
}


/*  */
.br_sp {
    display: block;
}



/* +++++++++++++++++++++++++++++
 * 合同企業説明会
*/

.detail {
    display: block;
    /* width: 100%; */
    border: 1px solid #cccccc;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 3rem;
}

.detail tr {
    display: block;
}

.detail th[colspan] {
    display: block;
    width: 100%;
    background: #bbd3fa;
    border-bottom: 1px solid #cccccc;
}

.detail th {
    display: block;
    /* background: #edf2fa; */
    text-align: left;
    padding: 0.5rem 1rem;
    /* border-bottom: 1px solid #cccccc; */
}

.detail th:not(th[colspan])::before {
    content: "●";
}

.detail td {
    display: block;
    /* width: 80%; */
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #cccccc;
}

.detail tr:last-child th, 
.detail tr:last-child td {
    border-bottom: none;
}

.detail .btn_a,
.btn_sp {
    display: block;
    /* margin-bottom: 0.5rem; */
    margin: 1.2rem 0 1.5rem;
    height: auto;
    line-height: 1.5;
    padding: 0.5rem 0;
}

.detail a.btn_a[target]::before,
.btn_sp[target]::before {
    /* content: url(../img/icn_window_mw.svg); */
    /* display: inline-block; */
    /* position: absolute; */
    top: initial;
    bottom: calc(50% - 0.75rem);
    /* left: 1rem; */
} 

/* マイナビ */
.cmt_mynav::before {
    white-space: pre-wrap;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社マイナビの運営するウェブサイトをご確認ください。\a";
}

/* サーナ */
.cmt_if::before {
    white-space: pre-wrap;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社イフの運営するウェブサイトをご確認ください。\a";
}

/* クローバー */
.cmt_jay::before {
    white-space: pre-wrap;
    content: "ご来場には予約が必要です。\a詳しくは、株式会社ジェイ・ブロードの運営するウェブサイトをご確認ください。\a";
}

/*  */
.anchor_offset {
    /* position: absolute; */
    position: relative;
    top: -11rem;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
}

/* +++++++++++++++++++++++++++++
 * エントリーフォーム
*/

.enclose_title {
    font-size: 1.4rem;
    font-weight: bold;
    height: 3.5rem;
    /* margin: 0 -2rem; */
    padding: 0.2rem 1rem 0;
    border-bottom: none;
    background: #dddddd;
    
     /* 以下、上下中心の設定 */
     display: flex;
     justify-content: center;
     align-items: center;
}

.container label[for=yes], 
.container label[for=no] {
    font-size: 1.8rem;
    font-weight: bold;
    vertical-align: 0;
}

.arrows_form {
    width: min-content;
    height: auto;
    /* margin: 0 0 -2rem; */
}

.btn_container {
    padding: 0;
}

.entryform_table {
    display: block;
    font-size: 1.4rem;
    border: 1px solid #cccccc;
    margin-bottom: 2.5rem;
}

.entryform_table tr {
    display: block;
}

.entryform_table th {
    display: block;
    text-align: left;
    font-weight: bold;
    /* width: 35%; */
    background: #edf2fa;
}

.entryform_table tr > * {
    padding: 1rem;
    border-bottom: 1px solid #cccccc;
}

.entryform_table td {
    display: block;
    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;
    vertical-align: middle; /* この行ないと iPhone でおかしくなる */
}

.entryform_table select {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 0.4rem 0.6rem;
}

.entryform_table .line_height_sp {
    line-height: 1.5;
}

.inputarea03 {
    width: 100%;
}

.inputarea07 {
    width: 4rem;
}

.inputarea09 {
    width: 5rem;
}

.btn_container_column {
    display: block;
}

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: calc(100% + 4rem);
    height: auto;
    /* font-size: 1%; */
    font-weight: normal;
    color: #ffffff;
    padding: 0;
    margin: -3.5rem -2.2rem 1.5rem;
    background: #ffffff;
    display: block;
}

.container h1.index_h1 span {
    position: absolute;
    overflow: hidden;
    top: 4rem;
    left: 0;
    width: 65%;
    /* height: 20%; */
    background: #0044cc;
    display: inline-block;
    padding: 0.5rem 0 0.5rem 2rem;
    
    font-size: 1.3rem;
    line-height: 1.5;

    /* white-space: nowrap; */

    /* zoom: 0.6; */

    /* display: flex;
    align-items: center; */
}

.container h1.index_h1 > img {
    width: 100%;
    height: auto;
}

.container h1.index_h1 span::first-line {
    font-size: 1.4em;
}

.whats_new {
    display: block;
    font-size: 1.6rem;
    margin: 0 0 3rem;
    table-layout: initial;
}

.whats_new > * {
    display: block;
}

.whats_new > *:first-child {
    font-size: 1.8rem;
    color: #0044cc;
    font-weight: bold;
    padding: 0 5rem 0 0;
}

.whats_new time {
    display: block;
    padding: 0 1rem 0 0;
}

.column.index {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 4rem;
}

.column.index > * {
    position: relative;
    overflow: hidden;
    /* border: 1px solid red; */
    flex-basis: 100%;
    height: fit-content;
    border-radius: 0.5rem;
}

/* .column.index > .index_fig1 {
    height: 30rem;
} */

.column.index > .index_fig2 {
    width: 100%;
    /* height: 12rem; */
}

.column.index > *:first-child {
    /* margin-bottom: 2rem; */
    /* border: 2px solid red; */
}

.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_sp {
    display: block;
    width: 100%;
    height: auto;
}

.column.index > *:last-child .img_sp {
    width: 100%;
    /* height: max-content; */
    height: auto;
}

.img_sp {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}


.index_ex, .index_ex3 {
    position: absolute;
    bottom: 24rem;
    left: 1rem;
    width: 95%;
}

.index_ex3 {
    bottom: 22rem;
}

.index_ex2 {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: max-content;
}

.link_ex {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
}

.column.index > *.additional_content {
    position: relative;
    padding-bottom: 2.5rem;
    margin: 0 0 1rem;
    border-radius: initial;
    height: min-content;
    /* 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);
} */

.btn_a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* +++++++++++++++++++++++++++++
 * 採用活動における個人情報の取り扱いについて
*/

.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: 1px 0 0 1px; */
    width: 100%;
    margin: 0 auto 2em;
    display: block;
}

.this-table * {
    /* padding: 0.5rem 1rem; */
    display: block;
}

.this-table th {
    display: none;
}

.this-table td {
    padding: 0 0 0.5rem 0;
    /* padding: 0.5em; */
    /* border: 1px solid #333333;
    border-width: 0 1px 1px 0; */
}

.this-table td:first-child {
    font-weight: bold;
}

.this-table td:first-child::before {
    content: "●";
}

.link-icon::before {
    content: "w";
    font-family: 'アイコンフォント';
    display: inline-block;
    margin-right: 0.5rem;
}

/* 
 * 生活相談員対談
 ++++++++++++++++++++++++++++++ */
.flex_columns.interview_detail.sp {
    flex-direction: column;
}

.column.sp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

 .portrait3 {
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid #ffffff;
 }

 .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;
}

.flex_columns.exexex.sp > * {
    width: initial;
    height: 10rem;
}

/* 
 * 採用フロー
 ++++++++++++++++++++++++++++++ */
 .aplicanse_flow_enclose {
    background: #e6edf5;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.flow_step {
    background: #ffffff;
    padding: 1rem 0.5rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}


/* 
 * よくあるご質問・お問い合わせ
 ++++++++++++++++++++++++++++++ */
 .contents_block {
    font-size: 1.6rem;
    line-height: 1.6;
}

.contents_block {
    margin-bottom: 2rem;
}

.contents_block.last {
    margin-bottom: 0;
}

.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 3rem 1rem 2.8rem;
    text-indent: -2.8rem;
    position: relative;
    cursor: pointer;
}

.A {
    line-height: 1.6;
    padding: 1rem 3rem 1.5rem 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;
    top: 20%;
    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;
}

.recruit_map {
    width: 100%;
    height: inherit;
    display: block;
}

.inquiry_list {
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: 1.6;
}


/* 募集職種特別 */
.icn_ex3 {
    top: 3rem;
    left: 2.5rem;
    /* display: inline-block; */
}

.icn_ex4 {
    top: 3rem;
    left: 12.5rem;
    /* display: inline-block; */
}

.icn_container {
    position: absolute;
    top: 3.5rem;
    left: 2.5rem;
}


/* 
 * 社員インタビュー
 ++++++++++++++++++++++++++++++ */

 .flex_columns.columns_gap_in_interview {
    display: flex;
    gap: 2rem;
    flex-direction: column;
}

.interview_card {
    position: relative;
    width: 100%;
    border: 3px solid #003dca;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.flex_columns.ex_column {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.spec_column, .spec_column p {
    font-size: 1.3rem;
    padding-bottom: 0;
    /* margin-bottom: 0; */
}

.interview_title {
    /* position: absolute; */
    /* top: 1.5rem; */
    display: block;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.btn_a.interview_btn {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    font-size: 1.3rem;
}

.portrait {
    width: 40%;
    height: 100%;
}

/* 
 * 社員インタビュー詳細ページ
 ++++++++++++++++++++++++++++++ */
 .profile_area {
    position: relative;
    background: #d3dff4;
    padding: 8rem 1rem 1.5rem 1.5rem;
    margin: 0 -2rem 2rem;
}

.flex_columns.interview_detail {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

.flex_columns.interview_detail .icn_shinsotsu,
.flex_columns.interview_detail .icn_chuto {
    /* zoom:0.8; */
    width: 7rem;
    font-size: 1.1rem;
    height: 2rem;
    line-height: 1.6rem;
}

.profile_spec p {
    padding: 0;
}

.profile_title {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: block;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.6;
}

.misc_spec {
    display: inline-block;
    font-size: 1.1rem;
}

.portrait2 {
    border: 3px solid #ffffff;
    width: 50%;
    height: 100%;
}

.flex_columns.exexex {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.flex_columns.exexex > * {
    width: calc(50% - 1rem);
    height: 100%;
}

/* 
 * 生活相談員対談
 ++++++++++++++++++++++++++++++ */
.ex_conversation {
    padding: 1.5rem;
}


/*  */
.none_sp {
    display: none;
}



}

