@charset "UTF-8";
/*-----------------------
 basic
-------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

h1, h2, h3, h4, h5, h6, p, dt, dd, li, input, textarea, button {
  line-height: 1em;
  margin-bottom: 1em; }

section h1, section h2, section h3, section h4, section h5, section h6 {
  line-height: 1.2em;
  letter-spacing: 0.2em;
  font-weight: 700; }
section p, section dt, section dd, section li, section input, section textarea, section button {
  line-height: 1.5em;
  letter-spacing: 0.2em;
  font-weight: 700; }

.content {
  display: table; }
  .content > div {
    display: table-cell;
    vertical-align: middle; }

.caption {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2em;
  position: relative; }
  .caption::before {
    content: "▶▶　";
    display: inline-block; }
  .caption::after {
    content: "　◀◀";
    display: inline-block; }

@media screen and (max-width: 999px) {
  .content {
    display: block; }
    .content > div {
      display: block;
      vertical-align: top; }

  .caption {
    padding: 0 1.2em;
    text-align: center; }
    .caption::before {
      content: "▶ ";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%); }
    .caption::after {
      content: " ◀";
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%); } }
/*-----------------------
 header
-------------------------*/
/*basic*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; }
  .header .header_inner {
    width: 1000px;
    margin: auto;
    display: table; }
    .header .header_inner > div {
      display: table-cell;
      vertical-align: top; }

/*customize*/
.header {
  height: 64px;
  background: #FFF; }
  .header .header_inner {
    padding: 13px 70px 8px; }
  .header .header_logo h1 {
    margin: 0; }
  .header .header_navi ul {
    display: flex;
    justify-content: flex-end;
    margin: 0; }
    .header .header_navi ul li {
      text-align: center;
      margin: 0 0 0 1em; }
      .header .header_navi ul li a {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        font-weight: 700; }
        .header .header_navi ul li a small {
          font-size: 1.1rem;
          display: block;
          color: #3c7bc4; }

#menu-btn-check {
  display: none; }

@media screen and (max-width: 999px) {
  .header {
    height: 60px; }
    .header .header_inner {
      padding: 13px 10px 8px; }
    .header .header_navi ul {
      display: block; }
      .header .header_navi ul li {
        text-align: left; }
        .header .header_navi ul li a small {
          text-align: left;
          color: #FFF; }

  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3c7bc4; }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute; }

  .menu-btn span:before {
    bottom: 8px; }

  .menu-btn span:after {
    top: 8px; }

  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/ }

  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg); }

  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg); }

  #menu-btn-check {
    display: none; }

  .menu-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3c7bc4;
    transition: all 0.5s;
    /*アニメーション設定*/ }

  .menu-content ul {
    padding: 70px 10px 0; }

  .menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none; }

  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative; }

  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px; }

  #menu-btn-check:checked ~ .menu-content {
    left: 50%;
    /*メニューを画面内へ*/ } }
/*-----------------------
 mv
-------------------------*/
.mv {
  /* background: url("../images/mv_bg.png") no-repeat center center; */
  background-size: cover; }
  .mv .wrap {
    padding: 0; }
  .mv .mv_inner {
    height: 517px;
    position: relative; }
    .mv .mv_inner div {
      position: absolute; }
      .mv .mv_inner div.mv_logo {
        top: 50%;
        transform: translateY(-50%);
        left: 130px; }
      .mv .mv_inner div.mv_catch {
        top: calc(50% + 10px);
        transform: translateY(-50%);
        right: 65px; }
        .mv .mv_inner div.mv_catch h2 {
          font-weight: 700;
          letter-spacing: 0.2em;
          font-size: 4.8rem;
          margin: 0;
          text-align: center; }
          .mv .mv_inner div.mv_catch h2 small {
            font-size: 2.4rem;
            display: block;
            letter-spacing: 0.2em;
            margin-right: 1em; }

@media screen and (max-width: 999px) {
  .mv {
    padding-bottom: 5em; }
    .mv .mv_inner {
      height: 100%;
      position: relative; }
      .mv .mv_inner div {
        position: relative; }
        .mv .mv_inner div.mv_logo {
          top: 0;
          transform: translateY(0);
          left: 0px;
          text-align: center;
          padding: 5em 15px 2em; }
        .mv .mv_inner div.mv_catch {
          top: 0;
          transform: translateY(0);
          right: 0; }
          .mv .mv_inner div.mv_catch h2 {
            font-size: 3.0rem; }
            .mv .mv_inner div.mv_catch h2 small {
              font-size: 1.8rem;
              margin-right: 0; } }
/*-----------------------
 onerank
-------------------------*/
.onerank .wrap {
  padding: 85px 65px 70px; }
.onerank h2 {
  font-size: 2.4rem; }

@media screen and (max-width: 999px) {
  .onerank .wrap {
    padding: 85px 15px 70px; }
  .onerank h2 {
    letter-spacing: 0.1em;
    text-align: center; }
  .onerank p {
    text-align: center; } }
/*-----------------------
 service
-------------------------*/
.service .wrap {
  padding: 70px 0 5px 0; }
.service .content {
  padding-bottom: 10px; }
  .service .content .title_service {
    width: 455px;
    /* background: url("../images/title_bg1.png") no-repeat 25px 18px; */
    padding-bottom: 80px; }
    .service .content .title_service h2 {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 0.85em;
      background: url("../images/taitle_bg.png") no-repeat 85px 0px;
      min-height: 52px;
      padding-top: 5px;
      padding-right: 20px;
      margin: 0; }
      .service .content .title_service h2 small {
        display: block;
        font-size: 1.3rem; }
  .service .content .service_inner {
    width: 545px; }
    .service .content .service_inner p {
      font-size: 1.4rem;
      line-height: 2em;
      margin-bottom: 2.5em; }
      .service .content .service_inner p small {
        font-size: 1.2rem; }
      .service .content .service_inner p:last-child {
        margin-top: -1em; }
.service .business {
  border-bottom: 1px solid #a4a1a2;
  border-top: 1px solid #a4a1a2;
  margin-bottom: 65px;
  background: #dcdcdc; }
  .service .business .business_inner {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px; }
    .service .business .business_inner div {
      margin: 0 15px; }
      .service .business .business_inner div ul {
        margin: 0;
        list-style: none; }
        .service .business .business_inner div ul li {
          margin: 0;
          font-size: 1.4rem;
          line-height: 1.8em;
          /*
          padding-left: 1em;
          &::before {
          	content: "・";
          	margin-left: -1em;
          }
          */ }
    .service .business .business_inner div:nth-child(1) ul {
      margin-left: 50px; }
    .service .business .business_inner div:nth-child(2) ul li {
      padding-left: 50px; }

@media screen and (max-width: 999px) {
  .service .wrap {
    padding: 70px 0 5px 0; }
  .service .content {
    padding-bottom: 10px; }
    .service .content .title_service {
      width: 100%;
      /* background: url("../images/title_bg1.png") no-repeat center center; */
      padding-bottom: 0;
      height: 300px;
      background-size: contain;
      padding-top: 130px; }
      .service .content .title_service h2 {
        text-align: center;
        background: url("../images/taitle_bg.png") no-repeat center 0px;
        padding-right: 0;
        margin: 0; }
    .service .content .service_inner {
      width: 100%;
      padding-left: 15px;
      padding-right: 15px; }
  .service .business {
    margin-bottom: 85px; }
    .service .business .business_inner {
      display: block;
      padding-bottom: 20px; }
      .service .business .business_inner div {
        margin: 0 15px; }
      .service .business .business_inner div:nth-child(1) ul {
        margin-left: 0px; }
        .service .business .business_inner div:nth-child(1) ul li {
          letter-spacing: .1em; }
      .service .business .business_inner div:nth-child(2) ul li {
        /*padding-left: 1em;*/
        padding-left: 0;
        letter-spacing: .1em; }
        .service .business .business_inner div:nth-child(2) ul li span {
          letter-spacing: .0em; } }
/*-----------------------
 recrut
-------------------------*/
.recruit .wrap {
  padding: 64px 0 25px 0; }
.recruit .content .title_recruit {
  width: 443px;
  /* background: url("../images/title_bg2.png") no-repeat 30px 156px; */
  padding-bottom: 65px; }
  .recruit .content .title_recruit h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0.85em;
    background: url("../images/taitle_bg.png") no-repeat 80px 0px;
    min-height: 52px;
    padding-top: 5px;
    padding-right: 20px;
    margin: 0; }
    .recruit .content .title_recruit h2 small {
      display: block;
      font-size: 1.3rem; }
.recruit .content .recruit_inner {
  width: 557px; }
  .recruit .content .recruit_inner p {
    font-size: 1.4rem;
    line-height: 1.7em;
    margin-bottom: 2em;
    letter-spacing: 0.1em; }
    .recruit .content .recruit_inner p small {
      font-size: 1.2rem; }

@media screen and (max-width: 999px) {
  .recruit .wrap {
    padding: 64px 0 50px 0; }
  .recruit .content .title_recruit {
    width: 100%;
    /* background: url("../images/title_bg2.png") no-repeat center center; */
    padding-bottom: 0;
    height: 300px;
    background-size: contain;
    padding-top: 130px; }
    .recruit .content .title_recruit h2 {
      text-align: center;
      background: url("../images/taitle_bg.png") no-repeat center 0px;
      padding-right: 0;
      margin: 0; }
  .recruit .content .recruit_inner {
    width: 100%;
    padding: 0 15px; } }
/*-----------------------
 information
-------------------------*/
.infomation .wrap {
  padding-top: 90px;
  padding-bottom: 65px; }
.infomation h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2em; }
.infomation ul {
  width: 770px;
  margin: auto; }
  .infomation ul li {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 7px 0 7px 355px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative; }
    .infomation ul li:nth-child(odd) {
      /* background: url(../images/info_bar1.png) no-repeat 43px center; */
      }
    .infomation ul li:nth-child(even) {
      /* background: url(../images/info_bar2.png) no-repeat 43px center; */
      }
    .infomation ul li time {
      position: absolute;
      top: 50%;
      left: 140px;
      transform: translateY(-50%);
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      display: inline-block;
      width: 182px;
      text-align: center; }

@media screen and (max-width: 999px) {
  .infomation ul {
    width: 100%; }
    .infomation ul li {
      padding: 7px 0 7px 0; }
      .infomation ul li:nth-child(odd) {
        /* background: url(../images/info_bar1.png) no-repeat 43px 5px; */
        }
      .infomation ul li:nth-child(even) {
        /* background: url(../images/info_bar2.png) no-repeat 43px 5px; */
        }
      .infomation ul li time {
        position: absolute;
        top: 5px;
        left: 140px;
        transform: translateY(0);
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        display: inline-block;
        width: 182px;
        text-align: center; }
      .infomation ul li span {
        display: block;
        padding-top: 2em; } }
/*-----------------------
 company
-------------------------*/
.company .wrap {
  padding: 64px 0 25px 0; }
.company .content .title_company {
  width: 480px;
  /* background: url(../images/title_bg3.png) no-repeat 38px 27px; */
  padding-bottom: 16px; }
  .company .content .title_company h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0.85em;
    background: url("../images/taitle_bg.png") no-repeat 88px 0px;
    min-height: 52px;
    padding-top: 5px;
    padding-right: 30px;
    margin: 0; }
    .company .content .title_company h2 small {
      display: block;
      font-size: 1.3rem; }
.company .content .company_inner {
  width: 520px;
  padding-top: 78px;
  padding-bottom: 118px; }
  .company .content .company_inner ul {
    position: relative;
    width: 100%; }
    .company .content .company_inner ul::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 100%;
      display: block;
      height: 2px;
      background: url("../images/border1.gif") repeat; }
    .company .content .company_inner ul li {
      position: relative;
      width: 100%;
      font-size: 1.6rem;
      font-weight: 700;
      padding: 12px 0 12px 15px;
      margin: 0;
      letter-spacing: 0.1em; }
      .company .content .company_inner ul li::before {
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        width: 100%;
        display: block;
        height: 2px;
        background: url("../images/border1.gif") repeat; }
      .company .content .company_inner ul li span {
        display: inline-block;
        width: 110px; }
      .company .content .company_inner ul li small {
        font-size: 1.4rem; }

@media screen and (max-width: 999px) {
  .company .wrap {
    padding: 64px 0 85px 0; }
  .company .content .title_company {
    width: 100%;
    /* background: url("../images/title_bg3.png") no-repeat center center; */
    padding-bottom: 0;
    height: 300px;
    background-size: contain;
    padding-top: 130px; }
    .company .content .title_company h2 {
      text-align: center;
      background: url("../images/taitle_bg.png") no-repeat center 0px;
      padding-right: 0;
      margin: 0; }
  .company .content .company_inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 0px; }
    .company .content .company_inner ul li span {
      display: block; } }
/*-----------------------
 contact
-------------------------*/
.contact .wrap {
  padding: 98px 0 56px 0; }
.contact .content {
  margin-bottom: 63px; }
  .contact .content .title_contact {
    width: 490px;
    /* background: url(../images/title_bg4.png) no-repeat -30px 34px; */
    padding-bottom: 0; }
    .contact .content .title_contact h2 {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 0.85em;
      background: url(../images/taitle_bg.png) no-repeat 78px 0px;
      min-height: 52px;
      padding-top: 5px;
      padding-right: 62px;
      margin: 0; }
      .contact .content .title_contact h2 small {
        display: block;
        font-size: 1.3rem; }
    .contact .content .title_contact p {
      padding: 0 0 0 48px;
      margin-top: 14px;
      margin-bottom: 0;
      font-weight: 700; }
  .contact .content .contact_inner {
    width: 510px; }
    .contact .content .contact_inner .contact_box {
      border: 1px solid #4b4647;
      border-radius: 5px;
      background: #d4d2d2;
      width: 490px;
      padding: 30px 40px; }
      .contact .content .contact_inner .contact_box dl dt {
        font-size: 1.2rem;
        margin: 0;
        font-weight: 700; }
        .contact .content .contact_inner .contact_box dl dt span {
          color: #2290a7;
          display: inline-block;
          margin-left: 1em; }
      .contact .content .contact_inner .contact_box dl dd {
        position: relative;
        margin: 0; }
        .contact .content .contact_inner .contact_box dl dd input {
          width: 100%; }
        .contact .content .contact_inner .contact_box dl dd textarea {
          width: 100%;
          height: 120px; }
      .contact .content .contact_inner .contact_box p {
        font-size: 1.2rem;
        text-align: center;
        font-weight: 700; }
        .contact .content .contact_inner .contact_box p:last-child {
          margin-bottom: 0; }
        .contact .content .contact_inner .contact_box p.contact_form_check {
          position: relative; }
        .contact .content .contact_inner .contact_box p.contact_form_check .formError {
          margin-left: 0px; }
        .contact .content .contact_inner .contact_box p button {
          width: 283px;
          border: 1px solid #000;
          border-radius: 5px;
          padding: 3px 3px 3px 0.5em;
          color: #6da6b5;
          font-weight: 700;
          font-size: 1.8rem;
          margin-bottom: 0;
          letter-spacing: 0.5em; }
.contact .policy {
  padding: 0 42px 0; }
  .contact .policy dl dt {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6da6b5;
    letter-spacing: 0.1em;
    margin-bottom: 5px; }
  .contact .policy dl dd {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    line-height: 1.2em; }
    .contact .policy dl dd ul {
      padding-top: 5px; }
      .contact .policy dl dd ul li {
        margin: 0; }

@media screen and (max-width: 999px) {
  .contact .wrap {
    padding: 40px 0 85px 0; }
  .contact .content .title_contact {
    width: 100%;
    /* background: url("../images/title_bg4.png") no-repeat center center; */
    padding-bottom: 0;
    height: 300px;
    background-size: contain;
    padding-top: 130px; }
    .contact .content .title_contact h2 {
      text-align: center;
      background: url("../images/taitle_bg.png") no-repeat center 0px;
      padding-right: 0;
      margin: 0; }
    .contact .content .title_contact p {
      padding: 0 0 0 0;
      text-align: center;
      letter-spacing: 0.1em; }
  .contact .content .contact_inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
    .contact .content .contact_inner .contact_box {
      width: 100%;
      padding: 30px 15px; }
      .contact .content .contact_inner .contact_box p.contact_form_check .formError {
        margin-left: 130px; }
      .contact .content .contact_inner .contact_box p button {
        max-width: 220px; }
  .contact .policy {
    padding: 0 15px 0; } }
/*-----------------------
 footer
-------------------------*/
.footer {
  background: #f4fef4;
  margin-top: 45px;
  /* background: url("../images/footer_bg.png") top center; */
  background-size: 100%; }
  .footer .wrap {
    padding: 35px 0 50px; }
  .footer .footer_inner {
    display: flex;
    justify-content: space-between;
    padding: 0px 70px 0px; }
    .footer .footer_inner .footer_navi {
      display: flex;
      justify-content: flex-end;
      margin: 0; }
      .footer .footer_inner .footer_navi ul {
        display: flex;
        justify-content: flex-end;
        margin: 0; }
        .footer .footer_inner .footer_navi ul li {
          text-align: center;
          margin: 0 0 0 1em; }
          .footer .footer_inner .footer_navi ul li a {
            font-size: 1.4rem;
            letter-spacing: 0.1em;
            font-weight: 700; }
            .footer .footer_inner .footer_navi ul li a small {
              font-size: 1.1rem;
              display: block;
              color: #3c7bc4; }
  .footer .copyright {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 50px 0 0;
    letter-spacing: 0.2em; }

@media screen and (max-width: 999px) {
  .footer {
    background-size: cover; }
    .footer .footer_inner {
      display: block; }
      .footer .footer_inner .footer_logo {
        text-align: center;
        margin-bottom: 2em; }
      .footer .footer_inner .footer_navi {
        display: block;
        width: 100%; }
        .footer .footer_inner .footer_navi ul {
          display: block; }
          .footer .footer_inner .footer_navi ul li {
            margin-bottom: 1em; }
    .footer .copyright {
      letter-spacing: 0.1em; } }
/*-----------------------
 other
-------------------------*/
hr {
  border-bottom: 1px solid #a4a1a2;
  border-top: 1px solid #a4a1a2;
  background: #dcdcdc;
  height: 10px;
  width: 100%; }

.hr1 {
  border: none;
  background: url("../images/hr1.png") no-repeat center center;
  background-size: cover;
  height: 9px;
  width: 100%; }

.hr2 {
  border: none;
  background: url("../images/hr2.png") no-repeat center center;
  background-size: cover;
  height: 9px;
  width: 100%; }

.ind{
  text-indent: 8em;
  font-size: 14px;
}
@media screen and (max-width: 999px) {
.ind{
  text-indent: initial;
}
}