@charset "utf-8";

/* ────────────────────── *
 *                                              *
 * コンテンツ                                   *
 *                                              *
 * ────────────────────── */

.contents {
    padding: 40px 20px;
}
.contents h2 {
    font-size: 42px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px #475dbb;
    background: -webkit-repeating-linear-gradient(-45deg, #586fcc, #586fcc 3px,#4f66c8 3px, #4f66c8 6px);
    background: repeating-linear-gradient(-45deg, #586fcc, #586fcc 3px,#4f66c8 3px, #4f66c8 6px);
    padding: 15px;
    margin-bottom: 60px;
    border: 2px solid #475dbb;
    border-radius: 10px;
}
.contents h3 {
    font-size: 32px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 50%, rgba(250,250,250,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(238,238,238,1) 50%,rgba(250,250,250,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(238,238,238,1) 50%,rgba(250,250,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 );
    text-shadow: 1px 1px 1px #fff;
    padding: 20px 25px 20px 35px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.contents h3 span:before {
    content: "";
    background: #475dbb;
    width: 8px;
    height: 80%;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 3px;
}
.contents h3 span:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 5.2px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.contents p.txt {
    font-size: 24px;
    line-height: 1.7;
    margin: 0 20px 30px;
}

/* ────────────────────── *
 *                                              *
 * 求人情報                                     *
 *                                              *
 * ────────────────────── */

.contents dl.recruit {
    font-size: 24px;
    line-height: 1.7;
    margin: 0 20px 100px;
    border: 1px solid #ccc;
}
.contents dl.recruit dt {
    font-weight: bold;
    background: #e1f1f9;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}
.contents dl.recruit dd {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}
.contents dl.recruit dd:last-of-type {
    border-bottom: none;
}
