﻿@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}

body {
    line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

/*================================================
 *  一般・共通設定
 ================================================*/

body {
    width: 100%;
    margin: 0 auto;
    font-size: 100%;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.6;
}

header {
    width: 1200px;
    margin: 10px auto;
}

#contents {
    width: 960px;
    margin: 10px auto;
}

/* パンくず　*/

.breadcrumb li {
    display: inline-block;
    font-size: 0.8em;
}

.breadcrumb li:after {
    content: " ＞ ";
}

.breadcrumb li:last-child:after {
    content: "";
}


#main {
    width: 100%;
    clear: both;
    padding: 40px 0;
}

a {
    color: #000;
}

a.hover {
    font-weight: bold;
    text-decoration: none;
}

h1 {
    margin: 20px 0 10px 0;
    margin-bottom: 2em;
    position: relative;
    padding: .75em 1em .75em 1.5em;
    background-color: #3E47C0;
    color: #fff;
    border-radius: 6px;
    font-size: 1.3em;
}

h1:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
    background-color: #6d5dc8;
}

h1 a {
    color: #000;
    text-decoration: none;
}

h1 a:hover {
    color: #e78f00;
    text-decoration: underline;
}

h2 {
    margin-bottom: 2em;
    padding-left: 10px;
    font-size: 1.2em;
    color: #000;
    clear: left;
}

#contents h2,
.main h2,
.catemenu h2 {
    position: relative;
    padding: .75em 1em .75em 1.5em;
    background-color: #eeefef;
    color: #333;
    border-top: 2px solid #c6c6c6;
    border-bottom: 2px solid #c6c6c6;
}

#contents h2:after,
.main h2:after,
.catemenu h2:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
    background-color: #6d5dc8;
}

h3 {
    margin: 2em 0;
    padding: 2px 0;
    color: #333333;
    font-size: 1.2em;
    border-bottom: solid 3px #D0D0D0;
    position: relative;
}

h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #405FBE;
    bottom: -3px;
    width: 10%;
}

h4 {
    margin-bottom: 1em;
    font-size: 100%;
    color: #333;
}

h4:before {
    content: "\002605";
    color: #f19500;
}

h5 {
    margin-bottom: 1em;
    padding: 2px;
    color: #000;
    font-size: 100%;
    border-top: 1px dotted #999;
    border-bottom: 1px dotted #999;
    background: #f1f1f1;
}

h6 {
    margin-bottom: 1em;
    color: #382400;
    font-size: 80%;
    font-weight: bold;
}

p {
    margin: 0 0 1em 0;
}

img {
    vertical-align: bottom;
}

em {
    font-weight: bold;
}

strong {
    font-weight: bold;
}

pre {
    margin: 1em 0;
    padding: 1em;
}

blockquote {
    margin-bottom: 1em;
    padding: 1em;
    border: 1px dotted #ddd;
    border-left: 5px solid #ddd;
}

ul,
ol,
dl {
    margin: 0 0 2em 0;
}

ul li {
    list-style: disc;
}

ol li {
    list-style: decimal;
}

li {
    margin-left: 1em;
}

dt {
    margin-bottom: 0.5em;
    border-bottom: 1px dotted #ddd;
}

dd {
    margin-bottom: 1em;
}

table {
    width: 100%;
    margin-bottom: 2em;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

th {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    background: #f5f5f5;
}

td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.entrydate {
    white-space: nowrap;
}

/*================================================
 *  ヘッダー
 ================================================*/

header {
    position: relative;
}

header h1 {
    margin-bottom: 20px;
}

#sitesearch {
    margin: 0;
    float: right;
    display: block;
    clear: left;
}

#acc_box {
    width: auto;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #dddddd;
    position: absolute;
    top: 18px;
    right: 0;
}

#font-tool {
    display: block;
    float: right;
    margin: 0 10px 0 10px;
}

#accesivility-tool {
    display: block;
    float: right;
    width: 50;
}

.square_btn01 {
    position: relative;
    display: inline-block;
    padding: 0.1em 1.3em !important;
    text-decoration: none !important;
    color: #000 !important;
    background: #fff !important;
    /*色*/
    border: solid 1px #333333 !important;
    /*線色*/
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
}

.square_btn01:active {
    /*押したとき*/
    border: solid 1px #333333 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.square_btn02 {
    position: relative;
    display: inline-block;
    padding: 0.1em 1.3em !important;
    text-decoration: none !important;
    color: #FFF !important;
    background: #0000ff !important;
    /*色*/
    border: solid 1px #333333 !important;
    /*線色*/
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
}

.square_btn02:active {
    /*押したとき*/
    border: solid 1px #333333 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.square_btn03 {
    position: relative;
    display: inline-block;
    padding: 0.1em 1.3em !important;
    text-decoration: none !important;
    color: #333 !important;
    background: #ffff00 !important;
    /*色*/
    border: solid 1px #333333 !important;
    /*線色*/
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
}

.square_btn03:active {
    /*押したとき*/
    border: solid 1px #333333 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.square_btn04 {
    position: relative;
    display: inline-block;
    padding: 0.1em 1.3em !important;
    text-decoration: none !important;
    color: #FFF !important;
    background: #000000 !important;
    /*色*/
    border: solid 1px #333333 !important;
    /*線色*/
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
}

.square_btn04:active {
    /*押したとき*/
    border: solid 1px #333333 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.square_btn001 {
    position: relative;
    display: inline-block;
    padding: 0.1em 1.3em !important;
    text-decoration: none !important;
    color: #FFF !important;
    background: #3240ea !important;
    /*色*/
    border: solid 1px #333333 !important;
    /*線色*/
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
    margin-right: 5px !important;
}

.square_btn001:active {
    /*押したとき*/
    border: solid 1px #333333 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.square_btn002 {
    position: relative;
    display: inline-block;
    padding: 0.1em 1.3em !important text-decoration: none !important;
    color: #FFF !important;
    background: #222222 !important;
    /*色*/
    border: solid 1px #333333 !important;
    /*線色*/
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
}

.square_btn002:active {
    /*押したとき*/
    border: solid 1px #333333 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

#fontsize {
    display: block;
    float: right;
    margin: 0 10px 0 10px;
}

#inverse {
    display: block;
    float: right;
    width: 50;
}

.inverse-red {
    background-color: #ffff00 !important;
    color: #000 !important;
}

.inverse-blue {
    background-color: #00f !important;
    color: #fff !important;
}

.inverse-normal {
    background-color: #fff !important;
    color: #000 !important;
}

iframe.inverse-red,
iframe.inverse-blue,
iframe.inverse-default {
    background-color: #fff !important;
    color: #000 !important;
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/

#gnav_bg {
    clear: both;
    position: relative;
    z-index: 1000;
    padding: 0;
    height: 50px;
    margin: 0 auto;
    background: #3E47C0;
}

#gnav_bg ul {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

#gnav_bg ul li {
    margin: 0;
}

#gnav_bg ul,
#gnav_bg ul li {
    list-style: none;
}

/* 親メニュー - Parent nav */

#gnav_bg nav > ul > li {
    position: relative;
    float: left;
    margin: 0;
    width: 14.1%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

#gnav_bg nav > ul > li a:hover {
    color: #000;
    text-decoration: none;
    background: #ddd;
}

#gnav_bg nav ul:last-child li {
    border-left: 0;
}

#gnav_bg nav > ul > li a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

#gnav_bg nav a {
    color: #333;
    text-decoration: none;
}

#gnav_mob {
    display: none;
}

@media screen and (min-width:768px) {
    #gnav_bg {
        margin-bottom: 20px;
    }
    #gnav_bg nav ul.nav {
        list-style: none;
        text-align: center *zoom: 1;
    }
    #gnav_bg nav ul.nav:before,
    #gnav_bg nav ul.nav:after {
        content: " ";
        display: table;
    }
    #gnav_bg nav ul.nav:after {
        clear: both;
    }
    #gnav_bg nav ul.nav li {
        position: relative;
    }
    #gnav_bg nav ul.nav > li {
        float: left;
    }
    /* global navi dropdown */
    #gnav_bg nav ul.nav > li > a {
        display: block;
    }
    #gnav_bg nav ul.nav ul {
        list-style: none;
        width: 150%;
        border: 2px solid #3E47C0;
        z-index: 200;
    }
    #gnav_bg nav ul.nav li.hover:last-child ul {
        left: -50%;
    }
    #gnav_bg nav ul.nav li ul {
        position: absolute;
        left: -9999px;
    }
    #gnav_bg nav ul.nav > li {
        text-align: left;
    }
    #gnav_bg nav ul.nav > li.hover > ul {
        left: 0px;
        background: #003366;
        background: none;
        color: #3E47C0;
    }
    #gnav_bg nav ul.nav > li > ul > li a {
        text-align: left;
        padding: 10px;
    }
    #gnav_bg nav ul.nav > li.hover > ul > li.hover {
        background: #003366;
    }
    #gnav_bg nav ul.nav > li.hover > ul > li.hover a {
        color: #3E47C0;
    }
    #gnav_bg nav ul.nav > li.hover > ul > li a {
        color: #3E47C0;
    }
    #gnav_bg nav ul.nav > li.hover > ul > li.hover > ul > li.hover {
        background: #003366;
        color: #3E47C0;
    }
    #gnav_bg nav ul.nav > li.hover > ul > li.hover > ul > li.hover a {
        color: #3E47C0;
    }
    #gnav_bg nav ul.nav > li.hover > ul > li > ul > li.hover a {
        color: #3E47C0;
    }
    #gnav_bg nav ul.nav li li.hover ul {
        left: 100%;
        top: 0;
    }
    #gnav_bg .nav li li a {
        display: block;
        background: #fff;
        opacity: 0.9;
        position: relative;
        z-index: 200;
        border-bottom: 1px dotted #ddd;
        text-indent: 0px;
    }
    #gnav_bg .nav li li.submenu_last a {
        border-bottom: none;
    }
    #gnav_bg .nav li li li a {
        background: #fff;
        opacity: 0.9;
        z-index: 200;
        border-bottom: 1px dotted #ddd;
        text-indent: 0px;
    }
}

/*================================================
 *  フッター
 ================================================*/

footer {
    clear: both;
    background-color: #3E47C0;
}

.footmenu {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.footmenu a {
    color: #ffffff;
    font-size: 0.9em;
    text-decoration: none;
}

.footmenu a:hover {
    color: #e78f00;
}

.footmenu ul {
    position: relative;
    float: left;
    left: 50%;
    margin: 0;
}

.footmenu li {
    position: relative;
    left: -50%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    border-left: 1px solid #ffffff;
}

.copyright {
    color: #ffffff;
    font-size: 0.8em;
    clear: both;
    padding: 20px 0;
    text-align: center;
}

.address {
    color: #ffffff;
    text-align: center;
}


/*================================================
 *  ページトップへの戻り
 ================================================*/

.totop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    color: #ffffff;
    border: 1px solid #eeeeee;
}

.totop a {
    display: block;
    text-decoration: none;
}

.totop img {
    background: #3E47C0;
}

.totop img:hover {
    background: #e78f00;
}

/*================================================
 *  クラス
 ================================================*/

.textL {
    text-align: left;
}

.textR {
    text-align: right;
}

.list {
    padding: 0 0 0 0.5em;
}

.list li {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: none;
    background: url(../images/check.png) 0 5px no-repeat;
}

.list01 {
    width: 100%;
    margin-bottom: 30px;
}

.list01 li {
    border-bottom: 1px dotted #666666;
    padding: 20px;
}

.list01 ol li {
    padding: 10px;
    border: none;
}

}

.list02 dl {
    width: 100%;
    padding: 2%;
    box-sizing: border-box;
}

.list02 dl dt {
    border-bottom: 1px dotted #666666;
    float: left;
    width: 50%;
    padding: 1% 0;
}

.list02 dl dd {
    border-bottom: 1px dotted #666666;
    padding: 1% 0;
    margin-left: 25%;
    text-align: right;
}

.list02 dl dt:first-child {
    border-top: none;
}

.list02 dl dt:first-child + dd {
    border-top: none;
}


.photo {
    overflow: hidden;
    margin: 20px 0;
    padding: 10px;
    border: 5px solid #ddd;
    background: #fff;
}

.imgL {
    float: left;
    margin: 0 0.5em 0.5em 0;
}

.imgR {
    float: right;
    margin: 0 0 0.5em 0.5em;
}

.item01 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    min-height: 130px;
}

.item01:after {
    clear: both;
}

.item02 {
    float: left;
    width: 25%;
    margin: 0 auto;
    text-align: center;
}

.container:after {
    clear: both;
}

.roundbox {
    margin: 0 auto 10px;
    width: 170px;
    border-radius: 16px;
    border: 1px solid #333333;
    align-content: center;

}

.roundbox p {
    padding-top: 8px;
    line-height: 0.8em;
}


ul.price-flex {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

ul.price-flex ul {
    display: flex;
}

ul.price-flex ul.ul01 {
    border-bottom: 0;
}

ul.price-flex ul li {
    flex-grow: 1;
    width: 25%;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    text-align: center;
    padding: 5px;
}

ul.price-flex ul li:last-child {
    border-right: none;
}

ul.price-flex ul.ul01 li {
    background-color: #ffeaea;
}

ul.price-flex ul.ul01 li.li01 {
    background-color: #ff9191;
}


section table {
    width: 100%;
}

section th,
section td {
    padding: 10px;
    border: 1px solid #ddd;
}

section th {
    background: #f4f4f4;
}

.addlist th,
.addlist td {
    width: 20%;
    text-align: left;
}

.addlist th {
    text-align: center;
    background-color: #3E47C0;
    color: #fff;
}

.addlist01 th,
.addlist01 td {
    width: 20%;
    text-align: center;
}

.addlist01 th {
    text-align: center;
    background-color: #3E47C0;
    color: #fff;
}

.imgbox {
    min-height: 160px;
    clear: left;
    margin-bottom: 20px;
}

.imgbox_l {
    display: inline-block;
    margin-right: 8px;
    width: 75%;
}

.imgbox_r {
    display: inline-block;
    vertical-align: top;
}

.imgbox01 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    clear: left;
}

.imgbox02 {
    width: 100%;
    margin: 0 auto;
    display: inline-block;
}

.imgbox02 ul li {
    width: 100%;
    display: inline-block;
    margin: 10px;
}

.imgbox02 img {
    width: 45%;
}

.addbox {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
}

.addbox li {
    display: inline-block;
    text-align: center;
    width: 200px;
    min-height: 100px;
    padding: 0px;
    margin-bottom: 20px;
}

.addbox img {
    display: inline-block;
    padding: 5px;
    border: 1px solid #333333;
}

.addbox p {
    margin: 10px 0 0 0;
    font-size: 0.8em;
    line-height: 1.0em;
}

.addbox a {
    color: #3E47C0;
    font-weight: bold;
}

.addbox:after {
    clear: left;
}

.charalist {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
}

.charalist li {
    display: inline-block;
    text-align: center;
    width: 200px;
    min-height: 100px;
    padding: 0px;
    margin-bottom: 20px;
    vertical-align: text-top;
}

.charalist img {
    display: inline-block;
    padding: 5px;
    background-color: #ffffcc;
    border-radius: 100px;
    min-height: 130px;
}

.charalist p {
    margin: 10px 0 0 0;
    font-size: 0.8em;
    line-height: 1.3em;
}

.charalist span {
    font-weight: bold;
    font-size: 16px;
    color: #3E47C0;
}

.charalist a {
    color: #3E47C0;
    font-weight: bold;
}

.charalist:after {
    clear: left;
}

.emblist {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.emblist li {
    display: inline-block;
    text-align: center;
    width: 200px;
    min-height: 100px;
    padding: 0px;
    margin-bottom: 20px;
    vertical-align: text-top;
}

.emblist img {
    display: inline-block;
    padding: 5px;
    min-height: 130px;
}

.emblist p {
    margin: 10px 0 0 0;
    font-size: 0.8em;
    line-height: 1.3em;
}

.emblist:after {
    clear: left;
}

.bbs_h4 {
    margin-bottom: 10px;
    border-bottom: 1px solid #3E47C0;
}

.rec_bg {
    width: 100%;
    border: 1px solid #333333;
    border-radius: 12px;
    background-image: url(../images/pat_rec.jpg);
    overflow: hidden;
}

.main_rec {
    width: 90%;
    margin: 0 auto;
}

.main_rec h4 {
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #ff6600;
}

.balloon_gr {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 15px 10px;
    width: 390px;
    max-width: 100%;
    max-height: 90px;
    color: #fff;
    font-size: 16px;
    background: #088f77;
}

.balloon_gr:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #088f77;
}

.balloon_gr p {
    margin: 7px auto;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    padding: 0;
}

.balloon_gr:after {
    clear: left;
}

.flowbox_gr {
    width: 90%;
    height: 90px;
    margin: 0 auto;
    border-top: 10px solid #088f77;
    background-color: #eeeeee;
    clear: left;
}

.flowbox_gr p {
    vertical-align: middle;
    padding: 20px;
    text-align: center;
}


.arr_gr {
    display: block;
    width: 18px;
    height: 18px;
    border-top: 4px solid #088f77;
    border-right: 4px solid #088f77;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin: 10px auto;
}

.arr_gr:after {
    clear: left;
}




.h2_rec {
    position: relative;
    padding: .75em 1em .75em 1.5em;
    color: #088f77;
    font-weight: bold;
    border-top: 2px solid #088f77;
    border-bottom: 2px solid #088f77;
}

.h2_rec:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
}

/* 採用情報 FAQ */

.faq_h2 {
    position: relative;
    padding: .75em 1em .75em 1.5em;
    color: #088f77;
    font-weight: bold;
    border-top: 2px solid #088f77;
    border-bottom: 2px solid #088f77;
}

.faq_h2:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
}

h3.faq_h3 {
    margin-bottom: 1em;
    font-size: 100%;
    color: #333;
}

h3.faq_h3:before {
    content: "\002605";
    color: #f19500;
}

.main_rec h3.faq_h3 {
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #ff6600;
}

.h2_rec span {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.h2_rec01 {
    width: 85%;
    position: relative;
    padding: .75em 1em .75em 1.5em;
    color: #088f77;
    font-weight: bold;
    text-align: center;
    border-top: 2px solid #088f77;
    border-bottom: 2px solid #088f77;
}

.h2_rec01:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
}

.h2_rec03 {
    width: 85%;
    position: relative;
    padding: .75em 1em .75em 1.5em;
    color: #007FB1;
    font-weight: bold;
    text-align: center;
    border-top: 2px solid #007FB1;
    border-bottom: 2px solid #007FB1;
}

.h2_rec03:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
}

.h2_rec03 span {
    text-align: center;
}

/* 採用情報メッセージ */

.rec_box {
    vertical-align: top;
    margin: 0 auto;
    display: inline-block;
    padding: 20px;
    text-align: center;
}

.rec_box ul {
    margin-top: 20px;
}

.rec_box li {
    list-style: none;
    line-height: 1.2em;
    font-size: 0.8em;
}

.rec_box p {
    text-align: left;
}

.h2_rec01 span {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.h2_rec02 {
    width: 100%;
    position: relative;
    padding: .75em 1em .75em 1.5em;
    color: #A96716;
    font-weight: bold;
    text-align: center;
    border-top: 2px solid #A96716;
    border-bottom: 2px solid #A96716;
}

.h2_rec02:after {
    position: absolute;
    top: .5em;
    left: .5em;
    content: '';
    width: 6px;
    height: -webkit-calc(100% - 1em);
    height: calc(100% - 1em);
}

.h2_rec02 span {
    text-align: center;
}

.balloon_kh {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 15px 10px;
    width: 60%;
    max-width: 100%;
    max-height: 100px;
    color: #fff;
    font-size: 1.3em;
    background: #A96716;
}

.balloon_kh:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #A96716;
}

.balloon_kh p {
    margin: 7px auto;
    width: 100%;
    text-align: center;
    font-size: 1.0em;
    padding: 0;
}

.balloon_kh:after {
    clear: left;
}

.rec_img {
    border: 1px solid #333333;
    padding: 5px;
    margin-top: 10px;
    float: left;
    margin-right: 10px;
}

.main span a {
    color: #ff0000;
    font-weight: bold;
}

/* 採用情報スケジュール */

.rec_box_sche {
    width: 45%;
    vertical-align: top;
    margin: 0 auto;
    display: inline-block;
    padding: 20px;
    text-align: center;
}

.balloon_bl {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 15px 10px;
    width: 90%;
    max-height: 100px;
    color: #fff;
    font-size: 16px;
    background: #007FB1;
}

.balloon_bl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #007FB1;
}

.balloon_bl p {
    margin: 7px auto;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    padding: 0;
}

.balloon_bl:after {
    clear: left;
}

.flowbox_bl {
    width: 90%;
    min-height: 90px;
    margin: 0 auto;
    border-top: 10px solid #007FB1;
    background-color: #eeeeee;
    clear: left;
}

.flowbox_bl p {
    vertical-align: middle;
    padding: 20px;
    text-align: center;
}

.arr_bl {
    display: block;
    width: 18px;
    height: 18px;
    border-top: 4px solid #007FB1;
    border-right: 4px solid #007FB1;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin: 10px auto;
}

.arr_bl:after {
    clear: left;
}





/*================================================
 *  トップページ
 ================================================*/

/* スライドショー */

.slide {
    display: none;
    position: relative;
    overflow: hidden;
    clear: both;
}

.slidePrev {
    position: absolute;
    cursor: pointer;
    z-index: 100;
}

.slideNext {
    position: absolute;
    cursor: pointer;
    z-index: 100;
}

.slidePrev img {
    position: absolute;
    width: 50px !important;
    height: 60px !important;
}

.slideNext img {
    position: absolute;
    width: 50px !important;
    height: 60px !important;
}

.slideInner {
    position: relative;
    margin: 0 0 5px 0;
    padding: 0;
}

.slideInner li {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slideInner li img {
    margin: 0 5px;
    padding: 0;
}

.filterPrev {
    position: absolute;
    left: 0;
    opacity: 0.5;
    filter: alpha(opacity=50);
    background-color: #fff;
}

.filterNext {
    position: absolute;
    right: 0;
    opacity: 0.5;
    filter: alpha(opacity=50);
    background-color: #fff;
}

.controlNav {
    position: relative;
    float: left;
    left: 50%;
}

.controlNav span {
    position: relative;
    left: -50%;
    float: left;
    margin: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 10px;
    height: 10px;
    overflow: hidden;
    background: #ccc;
    text-indent: -9999px;
    vertical-align: middle;
}

.controlNav span:hover {
    background: #999;
    cursor: pointer;
}

.controlNav span.current {
    background: #f19500;
}

/* トップナビ */

* html .topNavi {
    height: 1em;
    overflow: visible;
}

.topNavi {
    overflow: hidden;
    position: relative;
    margin-right: -1.030%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.topNaviColumn {
    display: inline;
    width: 32.302%;
    float: left;
    margin-right: 1.030%;
}

.topNaviCon {
    position: relative;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    color: #000;
    transition: background 0s ease 0s, border 0.5s ease-out 0s;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
}

.topNaviCon:hover {
    color: #000;
    background: #fff9f5 none repeat scroll 0 0;
    border: 1px solid #f19500;
    transition: background 0s ease 0s, border 0.5s ease-out 0s;
}

.topNaviCon h2 {
    margin: 10px;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    color: #f19500;
    border: none;
}

.topNaviCon:hover h2 {
    color: #f19500;
}

.topNaviCon p {
    margin: 10px;
}

.topNaviPhoto img {
    width: 100%;
}

/* 新着情報欄 */

h2.tab-index {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 4px solid #3E47C0 !important;
    color: #ffffff !important;
    background-color: #ffffff !important;
}

h2.tab-index span {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3E47C0;
}

dl.info {
    padding: 40px 20px;
    list-style: none;
}

.info dt {
    border-bottom: none;
    float: left;
    margin-right: 20px;
}

.info dd {
    padding-bottom: 1em;
    border-bottom: 1px solid #ddd;
}

/* NEWマーク */

span.new {
    background-color: #C00000;
    padding: 3px 10px;
    color: #fff;
    margin-right: 1em;
}

/* カテゴリトップボタン */

ul.cate-box {
    margin: 0 0 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.btn-cate {
    display: inline-block;
    text-align: center;
    width: 250px;
    min-height: 100px;
    background-color: #ffffff;
    border: 4px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    background: url(images/arrow02.png);
    position: relative;
}

.btn-cate:after {
    clear: left;
}

.btn-cate p {
    margin: 10px 0 0 0;
    font-size: 0.8em;
    line-height: 1.0em;
}

.btn-cate span {
    margin: 0;
    font-size: 0.7em;
}

.btn-cate span:after {
    clear: left;
}

.btn-cate br {
    line-height: 0.3;
}

.btn_arrow {
    text-align: center;
    display: inline-block;
    width: 120px;
    font-size: 0.9em;
    height: 26px;
    padding: 5px;
    border-radius: 6px;
    background: #3E47C0;
    bottom: 15px;
    left: 85px;
    position: absolute;
}

.btn_arrow a {
    color: #ffffff;
    text-decoration: none;
}

/* ボタン */

.inner {
    width: 100%;
    margin: 0 auto;
}

.inner ul {
    list-style: none;

}

.btn_bg {
    display: inline-block;
    text-align: center;
    width: 250px;
    min-height: 100px;
    background-color: #ffffff;
    border: 4px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    background: url(images/arrow02.png);
}

.btn_bg:after {
    clear: left;
}

.btn_bg p {
    margin: 10px 0 0 0;
    font-size: 0.8em;
    line-height: 1.0em;
}

.btn_bg span {
    margin: 0;
    font-size: 0.7em;
}

.btn_bg span:after {
    clear: left;
}

.btn_bg br {
    line-height: 0.3;
}

.btn_arrow {
    margin-top: 30px;
    text-align: center;
    display: inline-block;
    width: 120px;
    font-size: 0.9em;
    height: 26px;
    padding: 5px;
    border-radius: 6px;
    background: #3E47C0;
}

.btn_arrow a {
    color: #ffffff;
    text-decoration: none;
}




/*  丸付き矢印02  */

.arrow02 {
    content: "";
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    text-decoration: none;
    font-size: 0.8em;
}

.arrow02:before,
.arrow::after {
    content: "";
    position: absolute;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    vertical-align: middle;
}

.ar02:before {
    content: "";
    width: 13px;
    height: 13px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #f79d23;
}

.ar02:after {
    content: "";
    left: 3px;
    width: 3px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*  組織図img 20180627  */

.soshiki_img {
    width: 475px;
    height: 557px;
}

/*================================================
 *  タブレット向けデザイン
 ================================================*/

/* スクロールバーを考慮して20px大きいサイズで切り替え */

@media screen and (max-width:979px) {
    body {
        box-sizing: border-box;
        width: 100%;
        padding: 0 10px;
    }

    header {
        width: 100%;
    }
    < !-- #sitesearch {
        display: none;
    }
    #font-tool {
        display: none;
    }
    #accesivility-tool {
        display: none;
    } //-->
    #acc_box {
        display: none;
    }

    nav ul {
        width: 100%;
    }

    #contents {
        width: 100%;
    }

}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/

@media screen and (max-width:767px) {
    #logo {
        text-align: center;
    }
    #logo img {
        width: 80%;
    }
    .contact {
        position: relative;
        float: right;
        margin: 10px 0;
    }
    header h1 {
        margin-bottom: 0;
    }
    #main {
        float: none;
        width: 100%;
    }
    /* メインメニュー */
    nav {
        display: block;
        position: relative;
        width: 100%;
    }
    nav h2 {
        cursor: pointer;
        margin-bottom: 0;
        color: #fff;
        background: #999;
        border: none;
    }
    nav h2:after {
        position: absolute;
        content: "\0025bc";
        top: 3px;
        right: 5px;
    }
    nav h2.menuOpen:after {
        position: absolute;
        content: "\0025b2";
        top: 3px;
        right: 5px;
    }
    nav ul {
        width: 100%;
    }
    nav li {
        width: 33.33%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    nav li:first-child a {
        width: 100%;
    }
    nav li a {
        display: block;
        width: 100%;
        border-bottom: 1px dotted #ddd;
        text-decoration: none;
    }
    /* トップナビ */
    .topNavi {
        margin-right: 0;
    }
    .topNaviColumn {
        display: block;
        box-sizing: border-box;
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
    #sitesearch {
        text-align: center;
        width: 100%;
        margin: 5px auto;
    }
    #font-tool {
        display: none;
    }
    #accesivility-tool {
        display: none;
    }
    .breadcrumb li {
        display: inline-block;
        font-size: 0.5em;
    }
    .footer {
        width: 100%;
    }
    .footmenu li {
        display: block;
        padding: 5px !important;
        text-align: center;
        margin: 0 0 10px 0;
        width: 100%;
        border-bottom: 1px solid #fff;
        border-left: 0 !important;
    }
    .copyright {
        padding: 10px;
        text-align: center;
        font-size: 0.7em;
    }
    a.toggleMenu {
        text-decoration: none;
        display: block;
        height: 50px;
        width: 100px;
    }
    .toggleMenu .toggle_text {
        color: #fff;
        position: relative;
        top: 14px;
        right: 14px;
    }
    .toggleMenu img {
        padding: 0.5em 0.5em 0 0.75em;
    }
    /* groval_nav */
    #gnav_bg nav ul.nav ul {
        border: none;
    }
    #groval_nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: #666666;
        text-align: right;
        border-bottom: 1px solid #999;
        z-index: 100;
    }
    #gnav_bg ul {
        width: 100%;
    }
    #gnav_bg nav > ul > li {
        width: 100%;
    }
    nav li {
        width: 100%;
    }
    nav li a {
        width: auto;
    }
    #gnav_bg nav ul.nav {
        list-style: none;
        text-align: center;
        *zoom: 1;
        background: #fff;
        position: relative;
        z-index: 10;
    }
    #gnav_bg nav ul.nav li {
        position: relative;
    }
    #gnav_bg nav ul.nav > li {
        float: none;
    }
    #gnav_bg nav ul.nav a {
        color: #333;
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #fff;
        text-decoration: none;
    }
    #gnav_bg nav ul.nav a.last {
        border-bottom: 1px solid #ddd;
    }
    #gnav_bg nav ul.nav > li > a {
        display: block;
    }
    #gnav_bg nav ul.nav ul {
        display: block;
        width: 100%;
    }
    #gnav_bg nav ul.nav > li.hover > ul,
    #gnav_bg nav ul.nav li li.hover ul {
        position: static;
    }
    #gnav_bg nav ul.nav li ul {
        position: absolute;
        left: -9999px;
    }
    #gnav_bg nav ul.nav > li.hover > ul {
        left: 0;
    }
    #gnav_bg nav ul.nav li li.hover ul {
        position: static;
    }
    #gnav_bg nav ul.nav li {
        background: #efefef;
    }
    #gnav_bg nav ul.nav li li a {
        display: block;
        background: #fff;
        text-indent: 1em;
    }
    #gnav_bg nav ul.nav li li li a {
        background: #fff;
        text-indent: 1em;
    }
    #acc_box {
        display: none;
    }

    /* 新着情報 */
    .info dt {
        display: block;
        width: 100%;
        margin-right: 40px;
    }
    .info dd {
        display: block;

    }

    /* 採用スケジュール20180618 */
    .rec_box_sche {
        width: 100%;
        padding: 10px;
    }
    .rec_bg {
        padding-right: 10px;
    }
    .balloon_bl {
        display: block;
        margin: 0 auto 20px;
    }
    .balloon_bl p {
        width: 100%;
        margin: auto;
    }

    .rec_img {
        width: 100%;
        margin-bottom: 10px;
    }
    .balloon_kh {
        width: 100%;
    }

    .main_rec {
        width: 95%;
        margin: 0 auto;
    }
    .addlist02 {
        width: 100%;
    }
    .addlist02 th,
    .addlist02 td {
        width: 10%;
        font-size: 6px;
    }

    /* 組織図20180627 */
    .soshiki_img {
        width: 100%;
        height: 100%;
    }

}

/*================================================
 *  旧グローバルナビゲーション
 ================================================*/

div.grobal_navi {
    clear: both;
    position: relative;
    z-index: 1000;
    padding: 0;
    height: 45px;
    margin: 0 auto;
    background: #3E47C0;
}

div.grobal_navi ul {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}

div.grobal_navi ul,
div.grobal_navi ul li {
    list-style: none;
}

/* 親メニュー - Parent nav */

div.grobal_navi > ul > li {
    position: relative;
    float: left;
    margin: 0;
    width: 14.1%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

div.grobal_navi > ul > li a:hover {
    color: #000;
    text-decoration: none;
    background: #ddd;
}

div.grobal_navi ul:last-child li {
    border-left: 0;
}

div.grobal_navi > ul > li a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

div.grobal_navi a {
    color: #333;
    text-decoration: none;
}

/* 子メニュー - .sub-menu */

div.grobal_navi .sub-menu {
    position: absolute;
    width: 200%;
    background: #3E47C0;
    top: 46px;
    display: none;
    text-align: left;
}

div.grobal_navi .sub-menu a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    margin: 0;
    text-align: left;
}

div.grobal_navi .sub-menu a:hover {
    color: #fff;
}

/* ホバーで子メニュー表示 */

div.grobal_navi .menu-item-has-children:hover ul,
div.grobal_navi .menu-item-has-children ul.focused {
    display: block;
}

div.grobal_navi li.menu-item-has-children li a:hover,
div.grobal_navi li.menu-item-has-children li a:focus {
    background: #3E47C0;
    text-decoration: underline;
}


/*================================================
 *  印刷用
 ================================================*/

@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
    #groval_nav {
        display: none;
    }
    #gnav_mob {
        width: 100%;
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }
    #gnav_mob ul li {
        width: 33.3%;
        display: inline;
        list-style: none;
        background-color: #3E47C0;
        font-size: 18px;
    }

}
