/*------------------------------------------------------------------------------------------------
 * 基本設定
 *------------------------------------------------------------------------------------------------*/
/* スマホ判定サイズ設定 */
@media (min-width: 768px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media (max-device-width:768px) {
    .rfs {
        font-size: 2rem;
    }
    .rfs2 {
        font-size: 3rem;
    }
    .rfs3 {
        font-size: 4rem;
    }
}

/* 全体基本設定 */
html {
    overflow-y: scroll;
    white-space: nowrap;
}

/* navサイズ調整 */
body{
    padding-top: 65px;
}

/* 追加色 */
.bg-skyblue{
    background: #87ceeb;
}

.bg-orange{
    background: #ffa500;
}

.bg-yellowgreen{
    background: #9ACD32;
}

/*------------------------------------------------------------------------------------------------
 * pタグ関係
 *------------------------------------------------------------------------------------------------*/
 /* 共通(子クラス p.xxx は、再定義しない限りこの値を継承する) */
p {
}

/*------------------------------------------------------------------------------------------------
 * aタグ関係(リンク)
 *------------------------------------------------------------------------------------------------*/
 /* 共通(子クラス a.xxx は、再定義しない限りこの値を継承する) */
a {
    text-decoration: none;
    color:inherit;
    decoration: none;
}

a.site{
    

}

/* 画面左上部会社ロゴ */
#mini-logo{
    max-width: 75px;
}

/*------------------------------------------------------------------------------------------------
 * divタグ関係
 *------------------------------------------------------------------------------------------------*/
 /* 共通(子クラス div.xxx は、再定義しない限りこの値を継承する) */
div {
}

/* 通常画像リサイズ */
div.resizeimage img {
 width: 100%; 
}

/* indexトップ画像表示設定 margin-bottom: 16px;*/
div.jumbotron{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    
}

div.jumbotron-recruit{
    background-image: url('../img/top.jpg');
}

/* 文章改行 */
div.sentence_break{
    white-space: normal;
}

/* トップ各拠点新着物件一覧 */

div.d-frame {
border: 2px solid #333;
border-radius: 5px;
padding: 30px;
position: relative;
}

div.d-frame:before {
color: #333;
font-weight: bold;
left: 30px;
padding: 3px 10px;
position: absolute;
top: -15px;
}

div.new:before {
background-color: #ffa500;
}

div.recommend:before {
background-color: #87ceeb;
}

div.kanagawa:before {
content: "神奈川";
}

div.tokyo:before {
content: "東京";
}

div.saitama:before {
content: "埼玉";
}

div.chiba:before {
content: "千葉";
}

div.sizuoka:before {
content: "静岡";
}

div.sendai:before {
content: "仙台";
}

/* ページトップ */
#page_top{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #198754;
    opacity: 0;
    border-radius: 50%;
}
#page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}
#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*------------------------------------------------------------------------------------------------
 * tableタグ関係
 *------------------------------------------------------------------------------------------------*/
 /* 共通(子クラス table.xxx は、再定義しない限りこの値を継承する) */
table {
    white-space: normal;
}
/* 会社概要
table.company_profile tr {
  border-bottom: 1px solid #b5b1b1;
}

table.company_profile th {
  width: 30%;
} */

table.company_profile th,
table.company_profile td {
  padding: 24px 0;
  border: none;
}


/*------------------------------------------------------------------------------------------------
 * spanタグ関係
 *------------------------------------------------------------------------------------------------*/
 /* 共通(子クラス span.xxx は、再定義しない限りこの値を継承する) */
span {
}

/* 注力募集要件用 */
span.emphasis_article{
    color: red;
    font-size: 1.5em;
}
span.normal{
    display: inline-block;
}

span.display_none{
    display:none;
}
