@charset "UTF-8";
/* CSS Document */
/*////////////////////////////////////////////////////////

Base Setting

////////////////////////////////////////////////////////*/
/*parameter
------------------------------------------------------- */
/*create arrow*/
/*////////////////////////////////////////////////////////

RESET CSS

////////////////////////////////////////////////////////*/
@import url("irp.css");
html, body, div, span, object, iframe, f 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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 150%;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0;
}

p {
  margin-bottom: 1.2em;
}

a {
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

a:hover {
  color: #666;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*space
--------------------------------------------------------*/
.pt20 {
  padding-top: 20px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

/*text 
--------------------------------------------------------*/
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-red {
  color: #FF0000;
}

.text_link {
  color: #1374A4;
  text-decoration: underline;
}

.caution {
  display: inline-block;
  font-size: 11px;
  color: #FF0004;
  font-weight: bold;
  margin: 0 15px;
}

/*img float
--------------------------------------------------------*/
.img-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.img-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.img-center {
  display: block;
  margin: 0 auto 10px;
}

/*clearfix
--------------------------------------------------------*/
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.disp_sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .disp_sp {
    display: block;
  }
  .disp_pc {
    display: none;
  }
}
/*////////////////////////////////////////////////////////

COMMON LAYOUT

////////////////////////////////////////////////////////*/
html, body {
  height: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #666;
  font-size: 14px;
  background-color: #FFF;
}

body {
  padding-top: 65px;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  body {
    padding-top: 0;
  }
}
/*header
--------------------------------------------------------*/
header {
  display: block;
  width: 100%;
  min-width: 1000px;
  height: 65px;
  margin: 0;
  padding: 15px 10px;
  background: #FFF;
  box-sizing: border-box;
  box-shadow: 2px 2px 3px #666;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
header #site_logo {
  position: absolute;
  top: 5px;
  left: 10px;
}
header #site_logo img {
  width: 180px;
}
header #menupc {
  display: block;
  text-align: right;
}
header #menupc li {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
header #menupc li a:hover {
  opacity: 0.8;
}
header #menupc li:last-child {
  background: #0c3f90;
}
header #menupc li:last-child a {
  display: block;
  padding: 6px 25px 4px 15px;
  color: #FFF;
}
header #menupc li:last-child a:after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
}
header #menusp {
  display: none;
}

@media screen and (max-width: 640px) {
  header {
    min-width: 100%;
    height: 55px;
    padding: 5px;
  }
  header #site_logo {
    margin: 0;
    position: relative;
    top: 3px;
    left: 0;
  }
  header #site_logo img {
    width: 150px;
  }
  #menupc {
    display: none;
  }
  #btn_group {
    display: inline-block;
    padding: 3px 8px;
    color: #FFF;
    font-size: 0.8rem;
    text-align: center;
    border-radius: 5px;
    background: #0c3f90;
    position: absolute;
    top: 15px;
    right: 60px;
  }
}
/*container
--------------------------------------------------------*/
#container {
  width: 100%;
  min-width: 1000px;
  margin-top: -5px;
  background-color: #fff;
}

/*main visual*/
#main_visual {
  height: 350px;
  background: url(../images/main_visual.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
#main_visual h1 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100px;
}
#main_visual h1 img {
  width: 656px;
}

.company_visual {
  background: url(../images/bg_company.jpg) center;
  background-size: cover;
}

.servise_visual {
  background: url(../images/bg_service.jpg) center;
  background-size: cover;
}

.ir_visual {
  background: url(../images/bg_ir.jpg) center;
  background-size: cover;
}

.recruit_visual {
  background: url(../images/bg_recruit.jpg) center;
  background-size: cover;
}

.other_visual {
  background: url(../images/bg_other.jpg) center;
  background-size: cover;
}

#contents_visual h1 {
  font-size: 32px;
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  color: #fff;
}

@media screen and (max-width: 640px) {
  #container {
    min-width: 100%;
    height: 100%;
    padding-top: 55px;
    box-sizing: border-box;
  }
  /*main visual*/
  #main_visual {
    height: 130px;
    background-size: 150% auto;
    position: relative;
  }
  #main_visual h1 {
    top: 20px;
  }
  #main_visual h1 img {
    width: 90%;
    max-width: 320px;
  }
  #contents_visual {
    margin-bottom: 30px;
  }
  #contents_visual h1 {
    width: 100%;
    padding: 30px 10px;
    font-size: 1.5rem;
    box-sizing: border-box;
  }
}
/* contents
--------------------------------------------------------*/
#contents {
  background: #FFF;
}

.inner_box {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 50px;
}
.inner_box .inner_space {
  margin: 0 0 50px;
  position: relative;
}

h2 {
  margin-bottom: 30px;
  color: #0c3f90;
  font-size: 28px;
}

h3 {
  margin-bottom: 20px;
  color: #444;
  font-size: 24px;
}

h4 {
  margin-bottom: 20px;
  color: #0c3f90;
  font-size: 18px;
}

.subtitle {
  display: inline-block;
  margin-bottom: 3px;
  color: #666;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  #contents {
    min-height: 100%;
    padding-bottom: 283px;
    box-sizing: border-box;
  }
  .inner_box {
    width: 100%;
    /*padding: 0 5px $CONTENT_SPACE_SP;*/
    padding: 0 0 30px;
    box-sizing: border-box;
  }
  .inner_box .inner_space {
    margin: 0 5px 30px;
  }
  .inner_box .inner_space.full {
    margin: 0 0 30px;
  }
  h2 {
    margin-bottom: 20px;
    padding: 5px 10px;
    color: #FFF;
    font-size: 1.2rem;
    background: #0c3f90;
  }
  h3 {
    margin: 0 0 20px;
    color: #0c3f90;
    font-size: 1.2rem;
    border-bottom: 1px solid #0c3f90;
  }
  h4 {
    margin: 0 0 10px;
    padding-left: 5px;
    color: #0c3f90;
    font-size: 1rem;
    border-left: 3px solid #0c3f90;
  }
  .inner_box:last-child {
    margin-bottom: 0;
  }
}
/* contents navigation
--------------------------------------------------------*/
.nav-list {
  margin-bottom: 50px;
  padding: 25px 0;
  background: url(../images/gear_bg.gif) no-repeat center, #FFF;
  box-shadow: 2px 2px 3px #CCC;
}
.nav-list ul {
  width: 1000px;
  margin: 0 auto;
}
.nav-list ul li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}
.nav-list ul li a {
  display: inline-block;
  padding: 10px 3px 10px 13px;
  color: #0c3f90;
  background: url(../images/arrow-small.png) no-repeat 3px center;
}
.nav-list ul li a:hover {
  opacity: 0.8;
}
.nav-list .active strong {
  display: inline-block;
  padding: 2px 8px;
  border-bottom: 2px solid #0c3f90;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .nav-list {
    display: none;
  }
}
/* footer 
--------------------------------------------------------*/
footer {
  width: 100%;
  min-width: 1000px;
  color: #666;
  text-align: center;
  background: url(../images/gear-set.png) no-repeat center bottom, #F7F7F7;
  border-bottom: 10px solid #0c3f90;
  /* sitemap */
  /* gear image */
  /* copyright */
}
footer nav {
  width: 100%;
  min-width: 1000px;
  padding: 70px 0;
  border-top: 1px solid #CCC;
  background: #FFF;
}
footer ul {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* group company */
}
footer ul li {
  float: left;
  width: 22%;
  color: #0c3f90;
  font-size: 18px;
  text-align: left;
  position: relative;
}
footer ul li:last-child {
  width: 12%;
}
footer ul li ul {
  margin-top: 20px;
}
footer ul li ul li {
  float: none;
  margin-bottom: 10px;
  font-size: 14px;
}
footer ul li ul li a {
  color: #0c3f90;
}
footer ul.company_list {
  margin-bottom: 30px;
  text-align: center;
}
footer ul.company_list li {
  display: inline-block;
  float: none;
  width: auto;
  margin: 10px 20px;
}
footer ul.company_list li a {
  color: #888;
}
footer #footer_logo {
  width: 199px;
}
footer #gear {
  position: absolute;
  top: -300px;
  left: 20px;
  z-index: 1;
}
footer small {
  display: block;
  padding-bottom: 10px;
  color: #999;
  font-size: 0.8em;
}

#privacymark {
  position: relative;
  top: 10px;
}

/* banner */
#banner_space {
  margin-bottom: 70px;
  padding: 30px 0;
  text-align: center;
  border-top: 1px dotted #CCC;
  background: #FFF;
}
#banner_space p {
  display: inline-block;
  margin: 0 20px;
}
#banner_space p img {
  height: 62px;
}

@media screen and (max-width: 640px) {
  footer {
    min-width: 100%;
    margin-top: -243px;
    background-size: 100% auto;
    border-bottom: 5px solid #0c3f90;
    /* copyright */
  }
  footer ul {
    width: 100%;
    /* group company */
  }
  footer ul.company_list {
    margin-bottom: 10px;
  }
  footer ul.company_list li {
    margin: 10px 5px;
  }
  footer ul.company_list li img {
    width: 85px;
  }
  footer nav {
    display: none;
  }
  footer #footer_logo {
    width: 120px;
  }
  footer small {
    color: #777;
    font-size: 0.6em;
  }
  /* banner */
  #banner_space {
    margin-bottom: 30px;
  }
  #banner_space p {
    margin: 0 10px;
  }
  #banner_space p img {
    height: 35px;
  }
}
/*////////////////////////////////////////////////////////

COMMON PARTS

////////////////////////////////////////////////////////*/
.exlink {
  padding-right: 10px;
}

.exlink:after,
footer .exlink a:after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/icon_exlink.png) no-repeat center;
  background-size: 10px 10px;
  position: absolute;
  top: 5px;
  left: 60px;
}

.outerLink {
  color: #0c3f90;
  font-weight: bold;
  text-decoration: underline;
}

/* marker box
--------------------------------------------------------*/
.marker_box {
  margin-bottom: 20px;
}
.marker_box dt {
  display: inline-block;
  margin: 0 0 5px;
  color: #0c3f90;
  font-size: 16px;
  font-weight: bold;
}
.marker_box dd {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.marker_box dd .left,
.marker_box dd .right {
  float: left;
  width: 47%;
  margin-right: 3%;
}

@media screen and (max-width: 640px) {
  .marker_box dd {
    margin-bottom: 30px;
  }
  .marker_box dd .left,
  .marker_box dd .right {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
/* table
--------------------------------------------------------*/
.table-default, .table-ir {
  width: 100%;
  border-bottom: 1px dotted #ccc;
  font-size: 14px;
}
.table-default tr, .table-ir tr {
  border-top: 1px dotted #ccc;
  vertical-align: top;
}
.table-default tr th, .table-ir tr th {
  background-color: #e9f5ff;
  width: 200px;
  padding: 10px 0;
  vertical-align: top;
}
.table-default tr td, .table-ir tr td {
  padding: 10px;
}
.table-default tr dt, .table-ir tr dt {
  font-weight: bold;
  color: #000;
  margin-top: 20px;
}
.table-default tr dt:first-child, .table-ir tr dt:first-child {
  margin-top: 0;
}

/* inner table */
.table-default td table, .table-ir td table {
  width: 98%;
  margin-bottom: 1.2em;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
}

.table-default td table th, .table-ir td table th,
.table-default td table td,
.table-ir td table td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}

.table-default td table th, .table-ir td table th {
  width: 100px;
  padding: 10px;
  text-align: left;
  background: #F3FAFF;
}

.list_ir_head {
  width: 200px !important;
}

@media screen and (max-width: 640px) {
  .table-default, .table-ir {
    font-size: 0.9rem;
  }
  .table-default tr th, .table-ir tr th {
    display: block;
    width: 100%;
    padding: 5px;
    text-align: left;
    box-sizing: border-box;
  }
  .table-default tr td, .table-ir tr td {
    display: block;
    padding: 5px;
    box-sizing: border-box;
  }
  .table-default tr table th, .table-ir tr table th,
  .table-default tr table td,
  .table-ir tr table td {
    display: table-cell;
    font-size: 0.8rem;
  }
}
/* list 
--------------------------------------------------------*/
.list-free {
  margin-bottom: 20px;
}
.list-free li {
  padding-left: 25px;
  position: relative;
}
.list-free li span {
  position: absolute;
  top: 0;
  left: 0;
}

.border_box {
  padding: 15px;
  border: 1px dotted #999;
  position: relative;
}
.border_box p:last-child,
.border_box dd:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .border_box {
    padding: 10px;
  }
  .border_box img {
    width: 100%;
  }
}
/* tab
--------------------------------------------------------*/
#box-tab {
  text-align: center;
}
#box-tab li {
  display: inline-block;
  width: 32%;
  margin: 0 1% 20px 0;
  padding: 10px 0;
  color: #FFF;
  text-align: center;
  background: #0065B7;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
#box-tab li.active {
  opacity: 1;
}
#box-tab li:after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  margin-left: -10px;
  background: #0065B7;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: rotate(45deg);
  z-index: -1;
}
#box-tab li:hover {
  cursor: pointer;
}
#box-tab.tab2 li {
  width: 48%;
}

@media screen and (max-width: 640px) {
  #box-tab li {
    width: 31%;
    margin: 0 0.5% 20px 0.5%;
    padding: 8px;
    box-sizing: border-box;
  }
  #box-tab li.line2 {
    min-height: 4.2rem;
    vertical-align: top;
  }
}
/*////////////////////////////////////////////////////////

TOP PAGE

////////////////////////////////////////////////////////*/
/* ir info 
--------------------------------------------------------*/
#ir_list {
  padding: 50px 0 70px;
  background: url(../images/gear_bg.gif) no-repeat center;
}
#ir_list h2 {
  margin-bottom: 15px;
  padding-left: 15px;
  color: #0c3f90;
  font-size: 18px;
}

@media screen and (max-width: 640px) {
  #ir_list {
    padding: 30px 0 30px;
  }
  #ir_list h2 {
    margin-bottom: 0;
    padding-left: 8px;
    font-size: 1rem;
    background: none;
  }
  #ir_list .irp-item {
    width: 100%;
    padding: 10px 8px;
    box-sizing: border-box;
  }
  #ir_list .irp-date {
    display: block;
    position: relative;
  }
  #ir_list .irp-title-block {
    padding: 5px 0 0;
  }
}
/* drawing box
--------------------------------------------------------*/
.drawing_box {
  padding: 70px 0 20px;
  background: url(../images/drawing_bg.png) no-repeat center, #e6ebf4;
}

#contents_link ul {
  width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
#contents_link ul li {
  float: left;
  width: 480px;
  height: 200px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
#contents_link ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
#contents_link ul li:nth-child(1) {
  background: url(../images/btn_service.jpg) no-repeat center;
  background-size: 100% auto;
}
#contents_link ul li:nth-child(2) {
  background: url(../images/btn_recruit.jpg) no-repeat center;
  background-size: 100% auto;
}
#contents_link ul li:nth-child(3) {
  background: url(../images/btn_career.jpg) no-repeat center;
  background-size: 100% auto;
}
#contents_link ul li:nth-child(4) {
  background: url(../images/btn_education.jpg) no-repeat center;
  background-size: 100% auto;
}
#contents_link ul li:nth-child(1), #contents_link ul li:nth-child(3) {
  margin-right: 40px;
}
#contents_link ul li span {
  display: block;
  width: 100%;
  height: 120px;
  padding: 15px;
  color: #FFF;
  font-size: 24px;
  text-align: right;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: -55px;
  z-index: 1;
}
#contents_link ul li span i {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-style: normal;
}
#contents_link ul li span:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #0c3f90;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.65;
  z-index: -1;
}
#contents_link ul li a:hover span {
  animation: translate 0.3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation: translate 0.3s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
}

@keyframes translate {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -50px);
  }
}
@media screen and (max-width: 640px) {
  .drawing_box {
    padding: 30px 0 10px;
    background: #e6ebf4;
  }
  #contents_link ul {
    width: 100%;
    padding: 0 10px;
    text-align: center;
  }
  #contents_link ul li {
    float: none;
    width: 100%;
    height: 100px;
    margin: 0 auto 10px !important;
    background-size: 100% auto;
    position: relative;
  }
  #contents_link ul li:before, #contents_link ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contents_link ul li:before {
    background: -moz-linear-gradient(top left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7) 50%, rgb(255, 255, 255));
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0.7)), to(rgb(255, 255, 255)));
  }
  #contents_link ul li:after {
    background: #FFF;
    opacity: 0.3;
  }
  #contents_link ul li span {
    height: 2em;
    padding: 5px 8px;
    font-size: 1.2em;
    text-align: left;
    top: 0;
  }
  #contents_link ul li span i {
    color: #333;
    font-size: 0.8rem;
    text-align: right;
  }
  #contents_link ul li span:before {
    opacity: 0.8;
  }
  #contents_link ul li a:hover span {
    animation: none;
    -webkit-animation: none;
  }
}
/* news box
--------------------------------------------------------*/
#news_list h2 {
  margin-bottom: 15px;
  padding-left: 15px;
  color: #0c3f90;
  font-size: 18px;
}
#news_list ul {
  border-top: 1px dotted #93b2da;
}
#news_list ul li {
  padding: 10px 15px;
  border-bottom: 1px dotted #93b2da;
}
#news_list ul li a {
  display: inline-block;
}
#news_list ul li a:hover {
  text-decoration: none;
}
#news_list ul li a span {
  margin-right: 15px;
}
#news_list ul li a i {
  color: #0c3f90;
  font-style: normal;
  text-decoration: underline;
}

.btn_link {
  padding: 10px 0 0;
  text-align: right;
}
.btn_link a {
  display: inline-block;
  padding-left: 12px;
  background: url(../images/arrow-small.png) no-repeat left 5px;
}
.btn_link a:hover {
  color: #0c3f90;
}

@media screen and (max-width: 640px) {
  #news_list h2 {
    margin-bottom: 0;
    padding-left: 8px;
    font-size: 1rem;
    background: none;
  }
  #news_list ul li {
    padding: 0;
    position: relative;
  }
  #news_list ul li a {
    width: 100%;
    padding: 6px 20px 8px 10px;
    text-decoration: none;
    box-sizing: border-box;
  }
  #news_list ul li a span {
    display: block;
  }
  #news_list ul li a i {
    text-decoration: none;
  }
  #news_list ul li a:after {
    content: "";
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    border-top: 2px solid #0c3f90;
    border-right: 2px solid #0c3f90;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
  }
  .btn_link {
    margin-right: 5px;
  }
}
/* overseas 
--------------------------------------------------------*/
#overseas {
  width: 100%;
  height: 300px;
  padding-top: 80px;
  text-align: center;
  background: url(../images/overseas_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
}
#overseas .page_title {
  font-family: "Arial Unicode MS";
  color: #fff;
  font-size: 3.1em;
  font-weight: 500;
  margin-bottom: 30px;
}

#profile {
  height: 350px;
  padding: 100px 0 0 270px;
  position: relative;
}
#profile #photo {
  width: 240px;
  position: absolute;
  top: 70px;
  left: 0;
}
#profile .overseas_trainee {
  padding-top: 20px;
}
#profile .overseas_trainee .phrase {
  font-size: 1.3rem;
}
#profile .overseas_trainee .kanji_name {
  font-size: 1.9em;
}
#profile .overseas_trainee .roman_name {
  font-size: 1rem;
  margin-left: 1.5em;
}

#interview {
  padding-right: 320px;
  position: relative;
}

.image_box {
  width: 300px;
  position: absolute;
  top: 0;
  right: 0;
}

/* ghost button */
.btn_ghost {
  display: block;
  width: 180px;
  margin: 0 auto;
  padding: 10px;
  color: #FFF;
  font-size: 1.5em;
  border: 3px solid #FFF;
  position: relative;
}
.btn_ghost:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.btn_ghost:hover {
  color: #0c3f90;
  background: #FFF;
  opacity: 1;
}

@media screen and (max-width: 640px) {
  #overseas {
    height: 120px;
    margin-bottom: 30px;
    padding-top: 25px;
  }
  #overseas img {
    width: 70%;
    max-width: 200px;
    margin-bottom: 10px;
  }
  #profile {
    height: auto;
    padding: 0 0 20px 0;
    position: relative;
    overflow: hidden;
  }
  #profile #info {
    width: 60%;
    position: relative;
    top: 0;
  }
  #profile #photo {
    float: left;
    width: 35%;
    margin-right: 10px;
    position: relative;
    top: 0;
    left: 0;
  }
  #interview {
    padding-right: 0;
    position: relative;
  }
  #interview .image_box {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
  }
  /* ghost button */
  .btn_ghost {
    width: 120px;
    padding: 5px 10px;
    font-size: 1.2em;
    border: 2px solid #FFF;
  }
}
/*////////////////////////////////////////////////////////

company

////////////////////////////////////////////////////////*/
/* message
--------------------------------------------------------*/
#message #photo {
  float: left;
  width: 200px;
  margin: 0 20px 10px 0;
}
#message #sign {
  width: 267px;
}

@media screen and (max-width: 640px) {
  #message #photo {
    display: block;
    float: none;
    width: 150px;
    margin: 0 auto 10px;
  }
  #message #sign {
    width: 200px;
  }
}
/* idea
--------------------------------------------------------*/
#vision {
  margin-bottom: 50px;
  position: relative;
}
#vision h2 {
  display: none;
}
#vision div {
  width: 100%;
  height: 400px;
  padding-top: 80px;
  text-align: center;
  background: url(../images/vision_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
#vision div img {
  width: 800px;
  margin: 0 auto 80px;
}
#vision p {
  width: 700px;
  margin-left: -350px;
  color: #FFF;
  font-size: 16px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 80px;
}

#logo_info {
  margin-bottom: 70px;
  padding: 15px;
  text-align: center;
  box-shadow: 1px 1px 5px #DDD, -1px -1px 5px #DDD;
}

@media screen and (max-width: 640px) {
  #vision {
    margin-bottom: 30px;
  }
  #vision h2 {
    display: block;
  }
  #vision div {
    height: 100px;
    margin-bottom: 10px;
    padding-top: 40px;
    background-size: 100% auto;
  }
  #vision div img {
    width: 95%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  #vision p {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 5px;
    color: #333;
    font-size: 0.9rem;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
  }
  #logo_info {
    margin: 0 10px 30px;
    box-sizing: border-box;
    font-size: 0.8rem;
  }
}
/* directors
--------------------------------------------------------*/
.font-position {
  font-weight: bold;
  color: #0c3f90;
}

.font-name {
  font-weight: bold;
  color: #000;
  font-size: 22px;
}

.font-kana {
  color: #000;
  font-size: 12px;
}

.directors dl {
  width: 100%;
}
.directors dl dt,
.directors dl dd {
  float: left;
  margin: 0;
  padding: 5px 0 3px;
  font-weight: normal;
}
.directors dl dt.last,
.directors dl dd.last {
  border: none;
}
.directors dl dt {
  width: 15%;
}
.directors dl dd {
  width: 85%;
}

@media screen and (max-width: 640px) {
  .directors dl dt {
    width: 30%;
  }
  .directors dl dd {
    width: 70%;
  }
}
/* chart
--------------------------------------------------------*/
#chart_image {
  width: 900px;
}

@media screen and (max-width: 640px) {
  #chart_image {
    width: 100%;
  }
}
/* location
--------------------------------------------------------*/
.box-location {
  padding: 20px 0;
  border-top: 1px dotted #ccc;
  position: relative;
  overflow: hidden;
}
.box-location img {
  float: left;
  margin: 0 20px 0 0;
}
.box-location .left {
  float: left;
  width: 500px;
  margin: 0 30px 0 0;
}
.box-location .right {
  float: left;
  width: 400px;
}
.box-location .right a {
  display: inline-block;
  width: 100px;
  margin: 0 0 5px;
  padding: 5px 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #0c3f90;
}
.box-location .link {
  position: absolute;
  bottom: 15px;
}

@media screen and (max-width: 640px) {
  .box-location {
    padding: 0 5px 50px;
    border: none;
  }
  .box-location img {
    margin: 0 5px 0 0;
  }
  .box-location .left {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
    position: relative;
    overflow: hidden;
  }
  .box-location .right {
    width: 100%;
  }
  .box-location .link {
    position: absolute;
    bottom: 20px;
  }
}
/* history 
--------------------------------------------------------*/
#history dl {
  width: 100%;
}
#history dl dt,
#history dl dd {
  float: left;
  margin: 0;
  padding: 5px 0 3px;
  font-weight: normal;
}
#history dl dt.last,
#history dl dd.last {
  border: none;
}
#history dl dt {
  width: 7%;
}
#history dl dd {
  width: 93%;
}

@media screen and (max-width: 640px) {
  #history dl dt,
  #history dl dd {
    padding: 0 0 5px;
  }
  #history dl dt {
    width: 15%;
  }
  #history dl dd {
    width: 85%;
  }
}
/*////////////////////////////////////////////////////////

service

////////////////////////////////////////////////////////*/
/* flow 
--------------------------------------------------------*/
#flow_image1,
#flow_image2 {
  width: 459px;
}

div.flow_switch {
  width: 550px;
}
div.flow_switch .left {
  float: left;
  margin-right: 10px;
}

div.flow_contA {
  position: relative;
  background: url(../images/service/flow_cont_a_bg.gif) left top no-repeat;
  width: 537px;
  height: 766px;
}

div.flow_contB {
  position: relative;
  background: url(../images/service/flow_cont_b_bg.gif) left top no-repeat;
  width: 537px;
  height: 766px;
}

img.flow_imgL {
  position: absolute;
  left: 51px;
}

img.flow_imgR {
  position: absolute;
  right: 52px;
}

div.flow_commentL {
  position: absolute;
  left: 78px;
  font-size: 12px;
  color: #1460a6;
  z-index: 100;
}

div.flow_commentR {
  position: absolute;
  font-size: 12px;
  right: 78px;
  color: #1460a6;
  z-index: 100;
}

div.flow_commentL_head {
  background: url(../images/service/flow_comment_left_head.png) top left no-repeat;
  width: 261px;
  height: 18px;
}

div.flow_commentL_bottom {
  background: url(../images/service/flow_comment_left_bottom.png) top left no-repeat;
  width: 261px;
  height: 5px;
}

div.flow_commentR_head {
  background: url(../images/service/flow_comment_right_head.png) top left no-repeat;
  width: 261px;
  height: 17px;
}

div.flow_commentR_bottom {
  background: url(../images/service/flow_comment_right_bottom.png) top left no-repeat;
  width: 261px;
  height: 4px;
}

div.flow_comment_middle {
  background: url(../images/service/flow_comment_left_middle.png) top left repeat-y;
  width: 241px;
  padding: 7px 10px;
}

@media screen and (max-width: 640px) {
  #flow_image1,
  #flow_image2 {
    width: 100%;
  }
}
/* results 
--------------------------------------------------------*/
#result .tab-inner {
  padding: 15px;
  border: 1px solid #0065B7;
}

/* result4 */
#result_main {
  height: 250px;
  margin-bottom: 50px;
  position: relative;
}
#result_main h3 {
  margin-left: -500px;
  color: #073c9c;
  font-size: 30px;
  position: absolute;
  bottom: 10px;
  left: 50%;
}

.result_system {
  background: url(../images/result4/visual_system.jpg) no-repeat center;
  background-size: cover;
}

.result_app {
  background: url(../images/result4/visual_app.jpg) no-repeat center;
  background-size: cover;
}

.result_control {
  background: url(../images/result4/visual_control.jpg) no-repeat center;
  background-size: cover;
}

.result_robot {
  background: url(../images/result4/visual_robot.jpg) no-repeat center -580px;
  background-size: cover;
}

.result_plan {
  background: url(../images/result4/visual_plan.jpg) no-repeat center;
  background-size: cover;
}

.result_consulting {
  background: url(../images/result4/visual_consulting.jpg) no-repeat center -500px;
  background-size: cover;
}

.circle_text {
  color: #0e4194;
  font-size: 36px;
  text-align: center;
  line-height: 120%;
  position: absolute;
  top: 30px;
  left: 967px;
  z-index: 9;
}

.circle {
  width: 300px;
  height: 300px;
  border: 1px solid #4c93d0;
  border-radius: 100%;
  position: absolute;
  top: -75px;
  left: 900px;
}
.circle:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 100%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
.circle li {
  width: 110px;
  height: 110px;
  padding-top: 38px;
  color: #FFF;
  font-size: 0.8rem;
  text-align: center;
  background: #4c93d0;
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
}
.circle li:after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 15px;
}
.circle li:hover {
  background: #0e4194;
  cursor: pointer;
}
.circle li.active {
  background: #0e4194;
  cursor: default;
}
.circle li:nth-child(1) {
  margin-top: -55px;
  margin-left: -55px;
  top: 0;
  left: 50%;
}
.circle li:nth-child(2) {
  margin-top: -55px;
  margin-left: 0;
  top: 25%;
  left: 75%;
}
.circle li:nth-child(3) {
  margin-top: -55px;
  margin-left: 0;
  top: 75%;
  left: 75%;
}
.circle li:nth-child(4) {
  margin-top: -55px;
  margin-left: -55px;
  padding-top: 48px;
  top: 100%;
  left: 50%;
}
.circle li:nth-child(5) {
  margin-top: -55px;
  margin-left: -110px;
  padding-top: 48px;
  top: 75%;
  left: 25%;
}
.circle li:nth-child(6) {
  margin-top: -55px;
  margin-left: -110px;
  top: 25%;
  left: 25%;
}

.result_box {
  margin-bottom: 30px;
  position: relative;
}
.result_box h4 {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #CCC;
}
.result_box p {
  float: right;
  width: 650px;
}
.result_box p.full {
  float: none;
  width: 100%;
}
.result_box .image {
  float: left;
  width: 290px;
  margin-left: 10px;
}
.result_box .image_robot {
  position: absolute;
  top: -30px;
  right: 100px;
}
.result_box .subtitle {
  font-size: 16px;
  font-weight: normal;
}
.result_box .subtext {
  padding-left: 80px;
  position: relative;
}
.result_box .subtext img {
  position: absolute;
  top: 0;
  left: 0;
}
.result_box table {
  margin-bottom: 20px;
}
.result_box table td {
  vertical-align: top;
}

.result_data {
  display: none;
}

@media screen and (max-width: 640px) {
  #result .tab-inner {
    padding: 5px;
  }
  #result_main h3 {
    display: none;
  }
  .result_robot {
    background: url(../images/result4/visual_robot.jpg) no-repeat center;
    background-size: cover;
  }
  .result_consulting {
    background: url(../images/result4/visual_consulting.jpg) no-repeat center;
    background-size: cover;
  }
  .circle_text {
    font-size: 1.4rem;
    margin-left: -2.2em;
    position: absolute;
    top: 90px;
    left: 50%;
  }
  .circle {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    position: absolute;
    top: 20px;
    left: 50%;
  }
  .circle li {
    width: 90px;
    height: 90px;
    padding-top: 30px;
    font-size: 0.7rem;
  }
  .circle li:nth-child(1) {
    margin-top: -45px;
    margin-left: -45px;
  }
  .circle li:nth-child(2) {
    margin-top: -45px;
  }
  .circle li:nth-child(3) {
    margin-top: -45px;
  }
  .circle li:nth-child(4) {
    margin-top: -45px;
    margin-left: -45px;
    padding-top: 40px;
  }
  .circle li:nth-child(5) {
    margin-top: -45px;
    margin-left: -90px;
    padding-top: 40px;
  }
  .circle li:nth-child(6) {
    margin-top: -45px;
    margin-left: -90px;
  }
  .result_box {
    padding: 0 5px;
  }
  .result_box h4 {
    font-size: 1.2rem;
    border-left: none;
  }
  .result_box p {
    float: none;
    width: 100%;
    box-sizing: border-box;
  }
  .result_box .image {
    float: none;
    text-align: center;
    margin: 0 auto 10px;
  }
  .result_box img {
    max-width: 100%;
  }
  .result_box #ccrc_logo {
    width: 200px;
  }
  .result_box .image_robot {
    position: relative;
    top: 0;
    left: 0;
  }
  .result_box .subtext {
    padding-left: 60px;
  }
}
@media screen and (max-width: 640px) {
  #structure img {
    width: 100%;
  }
  .education .img-left {
    width: 130px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
/* seminar 
--------------------------------------------------------*/
#seminar {
  background: url(../images/seminar/seminar_visual.jpg) no-repeat top;
}
#seminar .text_box {
  margin-bottom: 180px;
}

/* list */
.smeinar_list ul {
  position: relative;
  overflow: hidden;
}
.smeinar_list ul li {
  float: left;
  width: 25%;
  padding-right: 25px;
  font-size: 1.1rem;
  box-sizing: border-box;
}
.smeinar_list ul li:last-child {
  padding-right: 0;
}
.smeinar_list ul li a {
  display: block;
}
.smeinar_list ul li a:hover {
  opacity: 0.8;
}
.smeinar_list ul li img {
  width: 230px;
}
.smeinar_list ul li .date {
  margin-bottom: 5px;
  font-size: 0.8rem;
}

.seminar_past {
  border-top: 1px solid #CCC;
}
.seminar_past li {
  min-height: 120px;
  border-bottom: 1px solid #CCC;
  position: relative;
}
.seminar_past li a {
  display: block;
  padding: 10px 10px 10px 120px;
}
.seminar_past li a:hover {
  opacity: 0.8;
}
.seminar_past li a:after {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: -11px;
  background: url(../images/arrow.jpg) no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
}
.seminar_past li img {
  width: 100px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.seminar_past li span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.after {
  margin-bottom: 10px;
  border-top: 1px dotted #CCC;
}
.after li {
  padding: 10px;
  border-bottom: 1px dotted #CCC;
}

.entry li {
  margin-bottom: 15px;
  padding-left: 70px;
  position: relative;
}
.entry li img {
  position: absolute;
  top: 0;
  left: 0;
}
.entry li span,
.entry li span a {
  color: #f27979;
  font-size: 30px;
  line-height: 35px !important;
}
.entry li span a {
  text-decoration: underline;
}

#seminar_data {
  position: relative;
}
#seminar_data #seminar_image {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 9;
}
#seminar_data table {
  width: 100%;
}
#seminar_data table th {
  width: 180px;
  padding: 12px 5px 5px 5px;
  font-size: 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #CCC;
}
#seminar_data table td {
  padding: 15px 10px 10px;
  border-bottom: 1px solid #CCC;
}
#seminar_data .data th {
  padding-top: 25px !important;
}
#seminar_data .data td {
  font-size: 24px;
}
#seminar_data .location th {
  padding-bottom: 10px !important;
}
#seminar_data .location td {
  padding-top: 22px !important;
}
#seminar_data .num {
  display: inline-block;
  margin: 0 5px;
  color: #f27979;
  font-size: 36px;
}
#seminar_data .week {
  color: #4285af;
}
#seminar_data .schedule {
  line-height: 2rem;
}

@media screen and (max-width: 640px) {
  #seminar {
    background: none;
  }
  #seminar .text_box {
    margin-bottom: 20px;
  }
  .smeinar_list ul li {
    float: left;
    width: 48%;
    max-width: 200px;
    padding-right: 1%;
    font-size: 0.8rem;
  }
  .smeinar_list ul li:nth-child(odd) {
    padding-right: 0;
  }
  .smeinar_list ul li img {
    width: 100%;
  }
  .seminar_past li {
    min-height: 90px;
  }
  .seminar_past li a {
    padding: 5px 18px 5px 90px;
  }
  .seminar_past li a:after {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #0c3f90;
    border-right: 2px solid #0c3f90;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
  }
  .seminar_past li img {
    width: 80px;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .seminar_past li span {
    font-size: 1rem;
  }
  .after li {
    padding: 5px 0;
  }
  .after li span {
    display: block;
    margin-bottom: 3px;
    font-size: 0.8rem;
    position: relative;
    left: -5px;
  }
  .entry li {
    padding-left: 40px;
  }
  .entry li img {
    width: 30px;
  }
  .entry li span,
  .entry li span a {
    font-size: 1.2rem;
    line-height: 1.4 !important;
  }
  #seminar_data #seminar_image {
    width: 130px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
  }
  #seminar_data table {
    width: 100%;
  }
  #seminar_data table th {
    display: block;
    width: 100%;
    padding: 5px 5px 0;
    font-size: 0.7rem;
    border: none;
    box-sizing: border-box;
  }
  #seminar_data table td {
    display: block;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
  }
  #seminar_data .data th {
    padding-top: 0 !important;
  }
  #seminar_data .data td {
    font-size: 1.2rem;
  }
  #seminar_data .location th {
    padding-bottom: 0 !important;
  }
  #seminar_data .location td {
    padding-top: 5px !important;
    padding-right: 120px;
  }
  #seminar_data .num {
    margin: 0 3px;
    font-size: 1.2rem;
  }
  #seminar_data .schedule {
    line-height: 1.5rem;
  }
  .seminar_select label {
    display: inline-block;
    padding-left: 20px;
    box-sizing: border-box;
    position: relative;
  }
  .seminar_select label input {
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*////////////////////////////////////////////////////////

ir

////////////////////////////////////////////////////////*/
.ir-left {
  width: 420px;
  float: left;
}

.ir-right {
  width: 420px;
  float: right;
}

.table-ir tr {
  border-top: 1px dotted #ccc;
  vertical-align: top;
}
.table-ir tr th {
  background-color: #e9f5ff;
  width: 80px;
  padding: 10px 0;
  vertical-align: top;
}

/* top
--------------------------------------------------------*/
.irp-press-list .irp-item .irp-title-block {
  width: 640px;
}

#btn-news li.active a {
  color: #fff;
  background-color: #0c3f90;
}

.irp-info-sort {
  display: flex;
}
.irp-info-sort #new {
  margin-right: 10px;
}

@media screen and (max-width: 640px) {
  #btn-news #new {
    width: 103px;
  }
  .irp-info-sort {
    display: block;
  }
  .irp-press-list .irp-item {
    padding: 10px 5px;
  }
  .irp-press-list .irp-item .irp-date {
    float: none;
    margin-left: 0;
    position: absolute;
  }
  .irp-press-list .irp-item .irp-title-block {
    width: 100%;
    padding-top: 25px;
    padding-left: 0;
    background-position: 125px 3px;
  }
}
/* management plan 
--------------------------------------------------------*/
#text_catch {
  margin-bottom: 40px;
  padding: 15px 0;
  font-size: 16px;
  text-align: center;
  box-shadow: 1px 1px 5px #DDD, -1px -1px 5px #DDD;
}
#text_catch span {
  font-size: 22px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

#ir_goal {
  text-align: center;
}

#ir_goal > ul {
  position: relative;
  overflow: hidden;
}

#ir_goal > ul > li {
  float: left;
  width: 330px;
  height: 260px;
  margin-right: 5px;
  padding: 10px;
  text-align: left;
  border: 1px dotted #CCC;
  box-sizing: border-box;
}

#ir_goal > ul > li:last-child {
  margin-right: 0;
}

#ir_goal > ul > li span {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

#plan_text {
  font-size: 20px;
}

#management_graph {
  position: relative;
  overflow: hidden;
}
#management_graph .title {
  display: inline-block;
  padding: 5px 20px;
  color: #FFF;
  background: #0c3f90;
  border-radius: 5px;
}
#management_graph .left {
  float: left;
  margin-right: 50px;
}
#management_graph .left .graph {
  width: 322px;
}
#management_graph .right {
  float: left;
}
#management_graph .right .graph {
  width: 322px;
}

@media screen and (max-width: 640px) {
  #ir_goal > ul {
    padding: 5px;
    border: 1px solid #0c3f90;
  }
  #ir_goal > ul > li {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 5px 0;
    padding: 5px 5px 0;
    text-align: left;
    border: 1px dotted #0c3f90;
  }
  #ir_goal > ul > li span {
    font-size: 1.2rem;
  }
  #plan_text {
    font-size: 1.2rem;
  }
  table.management_table {
    width: 100%;
  }
  table.management_table th, table.management_table td {
    display: table-cell;
    width: auto;
    font-size: 0.8rem;
    vertical-align: middle;
  }
  table.management_table th {
    text-align: center;
  }
  table.management_table tr td:first-child {
    width: 70px;
  }
  #management_graph {
    /*.left {
    	float: none;
    	margin-right: 0;
    	margin-bottom: 10px;
    }

    .right {
    	float: left;

    	.graph {
    		width: 90%;
    	}
    }*/
  }
  #management_graph .title {
    height: 2.5rem;
    padding: 5px;
    font-size: 0.8rem;
  }
  #management_graph .left, #management_graph .right {
    width: 50%;
    margin: 0;
  }
  #management_graph .left .graph, #management_graph .right .graph {
    width: 100%;
  }
}
/* financial 
--------------------------------------------------------*/
.financial_sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .financial_pc {
    display: none;
  }
  .financial_sp {
    display: block;
  }
  .financial_sp img {
    margin-bottom: 20px;
  }
}
/* stocks 
--------------------------------------------------------*/
.distribution {
  text-align: center;
}
.distribution li {
  display: inline-block;
  width: 49%;
}
.distribution li p {
  text-align: left;
}
.distribution li p span {
  display: inline-block;
  padding: 5px 10px;
  color: #FFF;
  border-radius: 3px;
  background: #507fb5;
}
.distribution .graph {
  width: 400px;
}

@media screen and (max-width: 640px) {
  .distribution li {
    width: 100%;
  }
  .distribution .graph {
    width: 100%;
  }
}
/*////////////////////////////////////////////////////////

recruit

////////////////////////////////////////////////////////*/
/* index
--------------------------------------------------------*/
.education_image {
  width: 579px;
}

.system_table {
  width: 600px;
}

.system_text img {
  float: right;
  width: 360px;
  margin-left: 10px;
  position: relative;
  top: -50px;
}

.system_image {
  width: 360px;
  position: absolute;
  bottom: 9px;
  right: 15px;
}
.system_image img {
  width: 100%;
}

.lecture_table {
  margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
  .education_image {
    width: 100%;
  }
  .system_table {
    width: 100%;
  }
  .system_text img {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    top: 0;
  }
  .system_image {
    width: 100%;
    padding-top: 10px;
    position: relative;
    top: 0;
    right: 0;
  }
  .lecture_table tr:first-child {
    display: none;
  }
}
/* outline 
--------------------------------------------------------*/
.photo {
  width: 612px;
  margin-bottom: 10px;
}

.recruit_banner .jtec {
  float: left;
  margin: 0 10px 10px 0;
  padding: 19px 10px 18px 45px;
  border: 1px solid #1DABFF;
  position: relative;
}
.recruit_banner .jtec img {
  height: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.recruit_banner .banner_images {
  letter-spacing: -0.4em;
}
.recruit_banner .banner_images * {
  letter-spacing: normal;
}
.recruit_banner .banner_images a {
  margin: 0 10px 10px 0;
}
.recruit_banner .banner_images .recruit {
  float: left;
  padding: 6px 0;
  border: 1px solid #1DABFF;
}
.recruit_banner .banner_images .recruit img {
  width: 200px;
  height: 40px;
}
.recruit_banner .mynavi {
  display: inline-block;
}

.btn_default li, #btn-qa li,
#btn-margin li, #btn-news li {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.btn_default li a, #btn-qa li a,
#btn-margin li a, #btn-news li a {
  display: block;
  margin: 0 3px 3px 0;
  padding: 10px 5px;
  color: #0c3f90;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #0c3f90;
}
.btn_default li a:hover, #btn-qa li a:hover,
#btn-margin li a:hover, #btn-news li a:hover {
  cursor: pointer;
  opacity: 0.8;
}

#btn-qa {
  margin-bottom: 50px;
}
#btn-qa li {
  width: 220px;
}

#btn-margin li {
  width: 140px;
  text-align: center;
}

#btn-qa li.active a {
  color: #fff;
  background-color: #0c3f90;
}

@media screen and (max-width: 640px) {
  .photo {
    width: 100%;
  }
  .recruit_banner .mynavi {
    display: inline-block;
  }
  #btn-qa,
  #btn-margin {
    margin-bottom: 20px;
  }
  #btn-qa li,
  #btn-margin li {
    width: 49%;
  }
}
/* career 
--------------------------------------------------------*/
.slides img {
  width: 240px;
}

/* interview */
.interview_head {
  height: 380px;
  margin: 0 auto 50px;
  padding: 20px 0 0 260px;
  border-bottom: 1px solid #CCC;
  box-sizing: border-box;
  position: relative;
}
.interview_head #info {
  width: 350px;
  position: absolute;
  top: 150px;
  left: 260px;
}
.interview_head #photo {
  width: 240px;
  position: absolute;
  top: 0;
  left: 0;
}

.interview_body {
  margin-bottom: 30px;
}
.interview_body p {
  margin-bottom: 1em;
}

/* career */
.career_box {
  width: 100%;
  min-height: 320px;
  margin-bottom: 20px;
  padding: 20px;
  background: url(../images/career_step.png) no-repeat 120px 30px, #FFF;
  box-shadow: 1px 1px 5px #DDD, -1px -1px 5px #DDD;
  box-sizing: border-box;
  position: relative;
}
.career_box .info {
  margin-bottom: 15px;
  font-size: 1.2em;
}
.career_box .text {
  font-size: 0.9em;
}
.career_box ul {
  width: 100%;
}
.career_box ul li {
  padding: 10px 0 10px 145px;
  color: #999;
  position: absolute;
}
.career_box ul li span {
  width: 130px;
  padding: 22px 0;
  color: #FFF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.career_box ul li p {
  margin-bottom: 3px;
  color: #666;
  font-size: 1.1em;
}
.career_box ul li:nth-child(1) {
  top: 223px;
  left: 120px;
}
.career_box ul li:nth-child(2) {
  top: 138px;
  left: 213px;
}
.career_box ul li:nth-child(3) {
  padding: 0 0 5px 145px;
  top: 44px;
  left: 305px;
}

@media screen and (max-width: 640px) {
  .slides_box {
    overflow: hidden;
  }
  .career_box {
    min-height: 320px;
    padding: 10px;
    background: url(../images/career_step.png) no-repeat 10px 100px, #FFF;
    background-size: 100% auto, 100% 100%;
  }
  .interview_head {
    height: auto;
    min-height: 260px;
    margin: 0 auto 10px;
    padding: 0 0 10px 0;
    border: none;
    position: relative;
    overflow: hidden;
  }
  .interview_head #info {
    width: 60%;
    position: relative;
    top: 0;
    left: 0;
  }
  .interview_head #photo {
    float: left;
    width: 35%;
    margin-right: 10px;
    position: relative;
    top: 0;
    left: 5px;
  }
}
/*////////////////////////////////////////////////////////

contact

////////////////////////////////////////////////////////*/
#contact input[type=text],
#contact input[type=tel],
#contact input[type=email],
#contact textarea {
  width: 80%;
  padding: 3px;
  font-size: 1em;
}

#contact select {
  font-size: 0.9rem;
}
#contact label {
  display: inline-block;
  margin-right: 10px;
}
#contact textarea {
  border: 1px solid #CCC;
}
#contact .input_s {
  width: 3em !important;
}
#contact .input_m {
  width: 15em !important;
}
#contact .other {
  margin-top: 5px;
}

#agree_box {
  margin: 0 auto 30px;
  padding: 20px;
  border: 1px dotted #F00;
  box-sizing: border-box;
}
#agree_box .-title {
  color: #0c3f90;
  font-size: 1.2rem;
}
#agree_box .-scrollArea {
  background: #f3f9ff;
  padding: 20px 20px 0;
  margin-bottom: 5px;
  height: 200px;
  box-sizing: border-box;
  overflow-y: scroll;
}
#agree_box .-scrollArea + p {
  text-align: right;
}
#agree_box .-check p {
  text-align: center;
  font-size: 1.1rem;
}
#agree_box .-check label {
  display: block;
  font-size: 1.2rem;
  width: 70px;
  margin: 15px auto 0;
}

#btn_box {
  padding-top: 30px;
  text-align: center;
}
#btn_box form {
  display: inline-block;
}
#btn_box input {
  width: 200px;
  margin: 0 10px;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background-color: #5db580;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
#btn_box input:hover {
  opacity: 0.8;
}
#btn_box #reset,
#btn_box #revision {
  background-color: #d58e6f;
}

@media screen and (max-width: 640px) {
  #contact input[type=text],
  #contact input[type=tel],
  #contact input[type=email],
  #contact textarea {
    width: 90%;
    font-size: 16px;
    border: 1px solid #888;
  }
  #contact select {
    font-size: 1rem;
  }
  #contact label {
    display: block;
  }
  #agree_box {
    width: 95%;
    padding: 10px;
  }
  #agree_box .-title {
    font-size: 1.1rem;
  }
  #agree_box .-scrollArea {
    font-size: 0.9rem;
    padding: 10px 10px 0;
    height: 180px;
  }
  #agree_box .-scrollArea + p {
    text-align: right;
  }
  #agree_box .-check p {
    text-align: left;
    font-size: 1rem;
  }
  #agree_box .-check label {
    margin: 0px auto 10px;
  }
  #btn_box input {
    width: 100px;
    margin: 0 10px;
    padding: 10px 0;
    font-size: 1rem;
  }
}
/*////////////////////////////////////////////////////////

etc

////////////////////////////////////////////////////////*/
#anchor01,
#anchor02,
#anchor03,
#anchor04,
#anchor05,
#anchor06,
#anchor07,
#anchor08 {
  margin-top: -70px;
  padding-top: 70px;
}

@media screen and (max-width: 640px) {
  #anchor01,
  #anchor02,
  #anchor03,
  #anchor04,
  #anchor05,
  #anchor06,
  #anchor07,
  #anchor08 {
    margin-top: 0;
    padding-top: 5px;
  }
}
/* page top
------------------------------------------------------- */
#page_top {
  margin-bottom: 0;
  position: fixed;
  right: 30px;
  bottom: 0;
  z-index: 99;
}
#page_top a {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  padding: 0;
  text-indent: -9999px;
  background: rgba(60, 101, 166, 0.8);
  border-radius: 100%;
  border: 1px solid #FFF;
}
#page_top a:after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin: -3px 0 0 -5px;
  top: 50%;
  left: 50%;
}
#page_top a i {
  display: none;
}

@media screen and (max-width: 640px) {
  #page_top {
    position: fixed;
    right: 10px;
    bottom: 0;
  }
  #page_top a {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=common.css.map */