@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  /*10px(1rem)相当（10px ÷ 16px = 62.5%）*/
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
}

input {
  vertical-align: middle;
}

button {
  cursor: pointer;
}

/* ### initial setting end ### */
/* ### common ### */
body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  /*14px相当*/
  line-height: 1.7;
  background-color: white;
  color: #1a1a1a;
}

#container {
  width: 100%;
  min-width: 1000px;
  height: 100%;
  height: auto;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}

header, footer, #side {
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #000066;
}

a:hover {
  text-decoration: underline;
}

/*
::selection {
	background-color: #505050;
	color: #fff;
}
::-moz-selection {
	background-color: #505050;
	color: #fff;
}
*/
img {
  vertical-align: bottom;
}

ul {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th, table td {
  text-align: left;
  vertical-align: top;
}

.ophv a img, .ophv button {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.ophvall {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.ophv a img:hover, .ophv button:hover {
  opacity: 0.6;
}

.ophvall:hover {
  opacity: 0.6;
}

.ophvall a:hover {
  text-decoration: none;
}

/* responsive ==========*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  #container {
    font-size: 1.3rem;
    min-width: 320px;
  }
  header, footer {
    font-size: 13px;
  }
  img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  input, textarea {
    font-size: 16px !important;
  }
}

/* ### common end ### */
/*----------------------------------------------------
	header
----------------------------------------------------*/
header {
  background-color: #fff;
  border-top: 4px solid #000066;
  border-bottom: 1px solid #cbcbcb;
  width: 100%;
  position: relative;
}

header.is-fixed {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
}

header h1 {
  font-size: 11px;
  font-weight: normal;
  color: #a9a8a8;
  width: 1000px;
  margin: 5px auto 14px;
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
}

#hlogo {
  float: left;
  width: 245px;
}

#gnav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 16px;
}

#gnav li {
  font-size: 16px;
  font-weight: bold;
  margin-left: 50px;
}

#gnav li a {
  display: block;
  color: #303030;
  padding-bottom: 16px;
}

#gnav li a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color: #ff6600;
}

#gnav .submenu {
  background-color: #1a1a1a;
  background-image: url(../img/nav_submenu_bg.jpg);
  background-position: top center;
  width: 100%;
  height: 200px;
  position: absolute;
  z-index: 1;
  left: 0;
  opacity: 0;
  top: 90%;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

#gnav .submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0 0;
}

#gnav .submenu ul li {
  width: 180px;
  margin: 0 25px 0 0;
}

#gnav .submenu ul li:last-child {
  margin-right: 0;
}

#gnav .submenu ul a {
  font-size: 13px;
  font-weight: normal;
  color: #fff;
  padding-bottom: 0;
}

#gnav .submenu ul figcaption {
  background-image: url(../img/triangle_white.png);
  background-repeat: no-repeat;
  background-position: left top 8px;
  padding-left: 12px;
  margin-top: 10px;
}

#gnav li:hover .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

#gnav li:hover a {
  color: #ff6600;
}

#gnav li:hover .submenu a {
  color: #fff;
}

#gnav li:hover .submenu li:hover figcaption {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: auto;
    padding: 0;
  }
  h1 {
    display: none;
  }
  #hlogo {
    width: 61%;
    max-width: 183px;
    margin: 13px;
  }
  #hlogo a {
    display: block;
  }
  #hmenu {
    background-color: #1a1a1a;
    width: 55px;
    height: 55px;
    cursor: pointer;
  }
  #gnav_sp {
    float: left;
    display: none;
    font-size: 14px;
    background-color: #1a1a1a;
    width: 100%;
    position: absolute;
    z-index: 53;
  }
  #gnav_sp a {
    border-top: 1px solid #888;
    background-image: url(../img/triangle_white.png);
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: top 20px left 15px;
    display: block;
    color: #fff;
    padding: 10px 10px 10px 30px;
    text-decoration: none;
    cursor: pointer;
  }
  #gnav_sp a:hover {
    background-color: #1a1a1a;
  }
  #gnav_sp li li {
    background-position: top 20px left 35px;
  }
  #gnav_sp li li a {
    padding-left: 50px;
  }
  #hmenu .hum {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 12px 12px;
  }
  #hmenu .hum span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
  }
  #hmenu .hum span:nth-of-type(1) {
    top: 4px;
  }
  #hmenu .hum span:nth-of-type(2) {
    top: 13px;
  }
  #hmenu .hum span:nth-of-type(3) {
    bottom: 4px;
  }
  #hmenu .hum.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  #hmenu .hum.active span:nth-of-type(2) {
    opacity: 0;
  }
  #hmenu .hum.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer {
  background-color: #1a1a1a;
  background-image: url(../img/f_bg.png);
  background-position: center 0;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .inner {
  width: 1000px;
  padding: 55px 0;
  margin: 0 auto;
  overflow: hidden;
}

#fcontact {
  float: left;
}

#fcontact .logo {
  margin-bottom: 25px;
}

#fnav {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#fnav .nav01 {
  margin-right: 80px;
}

#fnav .nav02 {
  margin-right: 20px;
}

#fnav .ttl {
  margin-bottom: 4px;
}

#fnav li {
  background-image: url(../img/triangle_white.png);
  background-repeat: no-repeat;
  background-position: left 6px center;
  padding-left: 20px;
  margin-bottom: 4px;
}

#fnav li:last-child {
  margin-bottom: 0;
}

#fbanner {
  background-image: url(../img/f_bnr_overlay.png);
}

#fbanner a {
  display: block;
}

#fbanner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;*/
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1000px;
  padding: 22px 10px;
  margin: 0 auto;
}

#fbanner ul li {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: 20px;
}

#fbanner ul li:first-child {
  margin-left: 0;
}

#copyright {
  font-size: 11px;
  text-align: center;
  background-color: #000066;
  color: #fff;
  padding: 6px;
}

#pagetop {
  position: fixed;
  z-index: 2;
  right: 30px;
  bottom: 30px;
}

#pagetop a {
  display: block;
}

@media screen and (max-width: 768px) {
  footer {
    background-size: cover;
  }
  footer .inner {
    width: auto;
    padding: 40px 0 30px;
    margin: 0 15px;
  }
  #fcontact {
    float: none;
    text-align: center;
    border-bottom: 1px solid #6c6c6c;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #fcontact .logo {
    width: 60%;
    margin: 0 auto 20px;
  }
  #fnav {
    float: none;
    display: inline;
  }
  #fnav .nav01 {
    margin-right: 0;
  }
  #fnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #fnav li {
    line-height: 1.2;
    background-image: none;
    border-right: 1px solid #fff;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  #fbanner ul {
    width: auto;
    padding: 15px 10px;
  }
  #fbanner li {
    width: 30.9%;
  }
  #pagetop {
    right: 10px;
    bottom: 20px;
  }
}

/*----------------------------------------------------
	top
----------------------------------------------------*/
.bx-wrapper {
  margin-bottom: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  background-color: transparent !important;
}

.bx-wrapper .bx-controls-auto {
  bottom: 20px !important;
  z-index: 52 !important;
}

.bx-wrapper .bx-pager {
  bottom: 20px !important;
  z-index: 52 !important;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #fff !important;
  border-radius: 6px !important;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4) inset;
          box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4) inset;
  width: 12px !important;
  height: 12px !important;
}

.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #000066 !important;
}

.bx-wrapper h2 {
  width: 628px;
  margin: 0 auto;
  position: absolute;
  z-index: 52;
  top: 40%;
  left: 0;
  right: 0;
}

.bxslider li {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 650px;
}

.top .section {
  overflow: hidden;
}

.top h3 {
  font-weight: normal;
  color: #303030;
}

.top #cashless {
  background-color: #fff;
}

.top #cashless p.pc{
  text-align: center;
  margin: 30px 0;
}

.top #cashless p.sp{
  margin: 5% auto;
  width: 90%;
}

.top #service {
  background-color: #eee;
}

.top #service .inner {
  width: 1000px;
  padding: 80px 0;
  margin: 0 auto;
}

.top #service h3 {
  text-align: center;
  margin-bottom: 30px;
}

.top #service .service_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top #service .content {
  background-color: #fff;
  width: 320px;
}

.top #service .webmedia {
  border-top: 4px solid #5792c9;
}

.top #service .officesolution {
  border-top: 4px solid #e0597f;
}

.top #service .officepark {
  border-top: 4px solid #dba228;
}

.top #service figure {
  position: relative;
}

.top #service figure a {
  display: block;
}

.top #service figcaption {
  position: absolute;
  bottom: -15px;
  left: 15px;
}

.top #service figcaption img:hover {
  opacity: 1;
}

.top #service .body {
  padding: 30px 15px 15px;
}

.top #service h4 {
  font-size: 1.8rem;
}

.top #service .webmedia h4 {
  color: #5792c9;
}

.top #service .officesolution h4 {
  color: #e0597f;
}

.top #service .officepark h4 {
  color: #dba228;
}

.top #service ul {
  margin: 20px 0;
}

.top #company {
  background-color: #fff;
  background-image: url(../img/top/company_bg.png);
  background-repeat: repeat-x;
  background-position: center 0;
  color: #fff;
}

.top #company .inner {
  width: 1000px;
  padding: 80px 0 130px;
  margin: 0 auto;
}

.top #company h3 {
  text-align: center;
  margin-bottom: 42px;
}

.top #company p {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
}

.top #company ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top #company li {
  margin-right: 40px;
}

.top #company li:last-child {
  margin-right: 0;
}

.top #company li a {
  display: block;
}

.top #news {
  background-color: #fff;
}

.top #news .inner {
  width: 1000px;
  padding: 70px 0 80px;
  margin: 0 auto;
}

.top #news h3 {
  text-align: center;
  margin-bottom: 30px;
}

.top #news article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-image: url(../img/top/triangle_red.png);
  background-repeat: no-repeat;
  background-position: right 6px center;
  border-top: 1px solid #cbcbcb;
  padding: 23px 0 23px 10px;
}

.top #news article:last-child {
  border-bottom: 1px solid #cbcbcb;
}

.top #news article .date {
  font-weight: bold;
  color: #000066;
  margin-right: 30px;
}

.top #news article h4 {
  width: 880px;
}

.top #news article a {
  display: block;
  text-decoration: underline;
  color: #1a1a1a;
  width: 100%;
  padding: 0 30px 0 0;
}

.top #news article a:hover {
  text-decoration: none;
}

.top #news .btn {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  background-color: #000066;
  color: #fff;
  width: 280px;
  margin: 30px auto 0;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.top #news .btn:hover {
  background-color: #303030;
}

.top #news .btn a {
  display: block;
  color: #fff;
  padding: 10px;
}

.top #news .btn span {
  margin-right: 15px;
}

.top #news .btn a {
  text-decoration: none;
  background-image: url(../img/top/triangle_white.png);
  background-repeat: no-repeat;
  background-position: right 90px center;
}

.top #contact {
  background-color: #a7a7a7;
  background-image: url(../img/top/contact_bg.jpg);
  background-repeat: repeat-x;
  background-position: center 0;
  color: #fff;
  width: 100%;
}

.top #contact .inner {
  width: 1000px;
  padding: 76px 0;
  margin: 0 auto;
}

.top #contact h3 {
  text-align: center;
  margin-bottom: 48px;
}

.top #contact p {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
}

.top #contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 800px;
  margin: 0 auto;
}

.top #contact li a {
  color: #fff;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .bx-wrapper h2 {
    width: 66.6%;
    margin: 0 auto;
  }
  .bxslider li {
    width: 1000px;
    height: 325px;
    height: 230px;
  }
  .top #service .inner {
    width: auto;
    padding: 40px 10px;
  }
  .top #service h3 {
    width: 46.7%;
    margin: 0 auto 20px;
  }
  .top #service .service_list {
    display: block;
  }
  .top #service .content {
    width: auto;
    margin: 0 auto 25px;
  }
  .top #service .content:last-child {
    margin-bottom: 0;
  }
  .top #service .content h4 {
    font-size: 1.9rem;
  }
  .top #service .btn_slide a {
    width: 100%;
    margin: 0 auto;
  }
  .top #company {
    background-size: cover;
  }
  .top #company .inner {
    width: auto;
    padding: 40px 0 50px;
    margin: 0 10px;
  }
  .top #company h3 {
    width: 37.1%;
    margin: 0 auto 20px;
  }
  .top #company p {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .top #company ul {
    margin: 0 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .top #company li {
    width: 45.4%;
    margin: 0 0 15px 0;
  }
  .top #news .inner {
    width: auto;
    padding: 40px 0;
    margin: 0 10px;
  }
  .top #news h3 {
    width: 55.4%;
    margin: 0 auto 20px;
  }
  .top #news article {
    display: block;
    background-image: none;
    background-repeat: no-repeat;
    border-top: 1px solid #cbcbcb;
    padding: 20px 10px;
  }
  .top #news article h4 {
    width: auto;
  }
  .top #news article a {
    padding: 0;
  }
  .top #news .btn {
    margin: 20px auto 0;
  }
  .top #contact {
    background-size: cover;
  }
  .top #contact .inner {
    width: auto;
    padding: 40px 0;
    margin: 0 10px;
  }
  .top #contact h3 {
    width: 34.3%;
    margin: 0 auto 25px;
  }
  .top #contact p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .top #contact ul {
    display: block;
    width: auto;
    margin: 0 40px;
  }
  .top #contact li {
    width: auto;
    margin-bottom: 20px;
  }
  .top #contact li:last-child {
    margin-bottom: 0;
  }
}

/*----------------------------------------------------
	common
----------------------------------------------------*/
.low #wrapper {
  margin-bottom: 150px;
}

.low #pagehead {
  background-color: #f7f7f7;
  border-bottom: 1px solid #cbcbcb;
  background-image: url(../img/pagettl_bg.png);
  background-position: center 0;
}

.low #pagehead .inner {
  text-align: center;
  width: 1000px;
  padding: 35px 0;
  margin: 0 auto;
}

#lnav {
  position: relative;
}

#lnav::before {
  content: '';
  display: block;
  background-color: #1a1a1a;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#lnav::after {
  content: '';
  display: block;
  background-color: #000066;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#lnav ul {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/lnav_bg.png);
  color: #fff;
  width: 1000px;
  padding: 6px;
  margin: 0 auto;
}

#lnav li {
  background-image: url(../img/triangle_white.png);
  background-repeat: no-repeat;
  background-position: left 2px center;
  padding-left: 16px;
  margin-right: 40px;
}

#lnav a {
  color: #fff;
}

#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 12px;
  color: #a9a8a8;
  width: 1000px;
  padding: 10px 0 50px;
  margin: 0 auto;
}

#breadcrumb a {
  color: #a9a8a8;
}

.low .section {
  margin-bottom: 80px;
}

.low .section .inner {
  width: 1000px;
  margin: 0 auto;
}

.low h3 {
  font-size: 2.1rem;
  border-bottom: 2px solid #404040;
  padding-left: 4px;
  margin-bottom: 26px;
  position: relative;
}

.low h3::before {
  content: '';
  display: block;
  background-color: #ff6600;
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.h4ttl {
  font-size: 1.5rem;
  background-color: #f2f2f2;
  border: 1px solid #cbcbcb;
  padding: 6px 18px;
  margin-bottom: 26px;
  position: relative;
}

.h4ttl::before {
  content: '';
  display: block;
  background-color: #000066;
  width: 4px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 0;
}

/* btn_slide ----------*/
.btn_slide a {
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: right 95px center;
  width: 290px;
  padding: 8px;
  position: relative;
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.webmedia .btn_slide a {
  border: 1px solid #5792c9;
  color: #5792c9;
}

.officesolution .btn_slide a {
  border: 1px solid #e0597f;
  color: #e0597f;
}

.officepark .btn_slide a {
  border: 1px solid #dba228;
  color: #dba228;
}

.businesspartner .btn_slide a {
  border: 1px solid #33b18f;
  color: #33b18f;
}

.btn_slide a::before {
  content: "";
  color: #fff;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.webmedia .btn_slide a::before {
  background-color: #5792c9;
}

.officesolution .btn_slide a::before {
  background-color: #e0597f;
}

.officepark .btn_slide a::before {
  background-color: #dba228;
}

.businesspartner .btn_slide a::before {
  background-color: #33b18f;
}

.btn_slide a:hover:before {
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.webmedia .btn_slide a span {
  background-image: url(../img/top/triangle_blue.png);
}

.officesolution .btn_slide a span {
  background-image: url(../img/top/triangle_pink.png);
}

.officepark .btn_slide a span {
  background-image: url(../img/top/triangle_yellow.png);
}

.businesspartner .btn_slide a span {
  background-image: url(../img/top/triangle_green.png);
}

.btn_slide a:hover span {
  background-image: url(../img/top/triangle_white.png);
  background-repeat: no-repeat;
  background-position: right center;
  color: #fff;
}

.btn_slide span {
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #wrapper .inner {
    width: auto;
    margin: 0 10px;
  }
  .low #pagehead {
    background-size: cover;
  }
  .low #pagehead .inner {
    width: auto;
    padding: 5.33% 0;
    margin: 0 10px;
  }
  .low #pagehead h2 {
    margin: 0 auto;
  }
  #breadcrumb ul {
    width: auto;
    padding: 10px 0 25px;
    margin: 0 10px;
  }
  .low #wrapper {
    margin-bottom: 60px;
  }
  .low .section {
    margin-bottom: 50px;
  }
  .low h3 {
    margin-bottom: 15px;
  }
  .h4ttl {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

/*----------------------------------------------------
	service
----------------------------------------------------*/
#service_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  border: 1px solid #cbcbcb;
  width: 1000px;
  margin: 0 auto 70px;
}

#service_nav li {
  background-image: url(../img/service/service_nav_triangle.png);
  background-repeat: no-repeat;
  background-position: top 40px center;
  border-right: 1px solid #cbcbcb;
  width: 25%;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  flex: 1;
}

#service_nav li:last-child {
  border-right: none;
}

#service_nav li:after {
  content: '';
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #000066;
  width: 0;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
}

#service_nav li:hover:after {
  width: 100%;
  left: 0;
}

#service_nav a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  padding: 12px 10px 25px;
}

.webmedia #service_nav li:nth-child(1)::after, .officesolution #service_nav li:nth-child(2)::after, .officepark #service_nav li:nth-child(3)::after, .businesspartner #service_nav li:nth-child(4)::after {
  content: '';
  display: block;
  background-color: #000066;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .service #pagehead h2 {
    width: 21.4%;
    margin: 0 auto;
  }
}

/*----------------------------------------------------
	service_list01
----------------------------------------------------*/
#service_list .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dotted #909090;
  padding: 50px 0;
  overflow: hidden;
}

#service_list .content:first-of-type {
  padding-top: 0;
}

#service_list figure {
  position: relative;
}

#service_list figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
}

#service_list figure figcaption img {
  opacity: 1;
}

#service_list .txt {
  width: 580px;
  position: relative;
}

#service_list h4 {
  font-size: 2.1rem;
  padding-left: 30px;
  margin: 6px 0 10px;
  position: relative;
}

#service_list h4::before {
  content: '';
  display: block;
  width: 16px;
  height: 4px;
  position: absolute;
  top: 15px;
  left: 0;
}

#service_list .webmedia h4 {
  color: #5792c9;
}

#service_list .officesolution h4 {
  color: #e0597f;
}

#service_list .officepark h4 {
  color: #dba228;
}

#service_list .businesspartner h4 {
  color: #33b18f;
}

#service_list .webmedia h4::before {
  background-color: #5792c9;
}

#service_list .officesolution h4::before {
  background-color: #e0597f;
}

#service_list .officepark h4::before {
  background-color: #dba228;
}

#service_list .businesspartner h4::before {
  background-color: #33b18f;
}

#service_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

#service_list li {
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: left center;
  padding-left: 18px;
  margin: 0 30px 0 0;
}

#service_list .webmedia li {
  background-image: url(../img/service/service_mark_01.png);
}

#service_list .officesolution li {
  background-image: url(../img/service/service_mark_02.png);
}

#service_list .officepark li {
  background-image: url(../img/service/service_mark_03.png);
}

#service_list .businesspartner li {
  background-image: url(../img/service/service_mark_04.png);
}

#service_list .btn_slide {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

#service_list .btn_slide a {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #service_list .content {
    display: block;
    padding: 35px 0;
  }
  #service_list .zoomhv {
    width: auto;
    height: auto;
  }
  #service_list .txt {
    width: auto;
    padding-right: 0;
  }
  #service_list ul {
    display: block;
    margin: 15px 0;
  }
  #service_list h4 {
    font-size: 1.7rem;
    padding-left: 30px;
    margin-top: 20px;
    position: relative;
  }
  #service_list h4::before {
    position: absolute;
    top: 10px;
  }
  #service_list .btn_slide {
    position: static;
  }
}

/*----------------------------------------------------
	service_list02
----------------------------------------------------*/
#service_list02 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #cbcbcb;
  padding: 24px;
  margin-bottom: 26px;
}

#service_list02 .content:last-child {
  margin-bottom: 0;
}

#service_list02 h4 {
  font-size: 2.1rem;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: top 8px left;
  padding-left: 24px;
  margin: 15px 0 10px;
}

.webmedia #service_list02 h4 {
  color: #5792c9;
  background-image: url(../img/service/service_mark_01.png);
}

.officesolution #service_list02 h4 {
  color: #e0597f;
  background-image: url(../img/service/service_mark_02.png);
}

#service_list02 .txt {
  width: 660px;
}

#service_list02 .btn_slide02 {
  float: right;
  margin-top: 35px;
}

.btn_slide02 a {
  display: block;
  font-weight: bold;
  text-align: center;
  background-image: url(../img/top/triangle_white.png);
  background-repeat: no-repeat;
  background-position: right 40px center;
  color: #fff;
  width: 180px;
  padding: 3px;
  position: relative;
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.webmedia .btn_slide02 a {
  background-color: #5792c9;
  border: 1px solid #5792c9;
}

.officesolution .btn_slide02 a {
  background-color: #e0597f;
  border: 1px solid #e0597f;
}

.btn_slide02 a:hover {
  text-decoration: none;
  background-color: #fff;
  background-image: url(../img/top/triangle_pink.png);
  background-repeat: no-repeat;
  background-position: right 40px center;
}

.webmedia .btn_slide02 a:hover {
  background-image: url(../img/top/triangle_blue.png);
}

.officesolution .btn_slide02 a:hover {
  background-image: url(../img/top/triangle_pink.png);
}

.btn_slide02 span {
  margin-right: 15px;
  position: relative;
  z-index: 1;
}

.webmedia .btn_slide02 a:hover span {
  color: #5792c9;
}

.officesolution .btn_slide02 a:hover span {
  color: #e0597f;
}

@media screen and (max-width: 768px) {
  #service_list02 .content {
    display: block;
    padding: 15px 20px;
    margin-bottom: 25px;
  }
  #service_list02 .txt {
    width: auto;
    margin-top: 14px;
  }
  #service_list02 h4 {
    font-size: 1.8rem;
    background-size: 16px;
    background-position: top 6px left;
  }
  #service_list02 .btn_slide02 {
    float: none;
    margin-top: 20px;
  }
  #service_list02 .btn_slide02 a {
    margin: 0 auto;
  }
}

/*----------------------------------------------------
	service_low
----------------------------------------------------*/
#service_lnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

#service_lnav li {
  background-image: url(../img/service/triangle_black.png);
  background-repeat: no-repeat;
  background-position: left 2px center;
  padding-left: 16px;
  margin-right: 36px;
}

#service_lnav a {
  text-decoration: none;
  color: #303030;
}

#service_lnav a:hover {
  text-decoration: underline;
}

.h4ttl_red {
  font-size: 1.5rem;
  background-color: #000066;
  border: 1px solid #000066;
  color: #fff;
  padding: 6px 18px;
  margin-bottom: 26px;
  position: relative;
}

.h4ttl_red::before {
  content: '';
  display: block;
  background-color: #fff;
  width: 4px;
  height: 20px;
  position: absolute;
  left: 0;
}

.service_low .content {
  margin-bottom: 80px;
}

.service_low .content:last-of-type {
  margin-bottom: 0;
}

.service_low .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  overflow: hidden;
}

.service_low .desc .txt {
  width: 660px;
}

.service_low h5 {
  font-weight: bold;
  color: #000066;
  margin-bottom: 10px;
}

.service_low .tip_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service_low .tip_list li {
  border: 1px solid #cbcbcb;
  width: 485px;
  padding: 20px;
  overflow: hidden;
}

.service_low .tip_list h5 {
  font-weight: bold;
  color: #ff6600;
}

.service_low .tip_list figure {
  float: right;
  margin-left: 16px;
}

.service_low .box {
  background-color: #f8f8f8;
  border: 1px solid #cbcbcb;
  padding: 20px;
  margin-top: 30px;
}

.service_low .box h5 {
  font-size: 1.6rem;
  text-indent: -2em;
  padding-left: 2em;
  border-bottom: 1px dotted #959595;
  color: #ff6600;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.service_low .box h5::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #ff6600;
  width: 4px;
  height: 20px;
  margin: 0 10px;
}

.service_low .box .body {
  padding: 0 10px;
}

.service_low .box .body .desc {
  margin-bottom: 20px;
}

.service_low .box .box_white_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service_low .box .box_white {
  background-color: #fff;
  border: 1px solid #cbcbcb;
  width: 460px;
  padding: 20px;
  margin-bottom: 20px;
}

.service_low .box .ttl_check {
  font-weight: bold;
  color: #000066;
  background-image: url(../img/service/officepark/it_mark_check.png);
  background-repeat: no-repeat;
  background-position: top left;
  margin-bottom: 8px;
  padding-left: 26px;
}

.service_low .btn_detail {
  width: 370px;
  margin: 30px auto 0;
}

.service_low .btn_detail a {
  display: block;
}

.service_low .btn_back {
  width: 600px;
  margin: 100px auto 0;
}

.service_low .btn_back a {
  display: block;
}

.service_low .desc_content {
  margin-bottom: 80px;
  overflow: hidden;
}

.service_low .desc_content figure {
  float: right;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  #service_lnav ul {
    margin-bottom: 25px;
  }
  .service_low .content {
    margin-bottom: 50px;
  }
  .h4ttl_red {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .service_low .desc {
    display: block;
    margin-bottom: 20px;
  }
  .service_low .desc figure {
    width: 70.4%;
    margin: 0 auto 20px;
  }
  .service_low .desc .txt {
    width: auto;
  }
  .service_low .tip_list {
    display: block;
  }
  .service_low .tip_list li {
    width: auto;
    padding: 15px;
    margin-bottom: 15px;
  }
  .service_low .tip_list h5 {
    margin-bottom: 15px;
  }
  .service_low .tip_list figure {
    width: 40%;
  }
  .service_low .box {
    padding: 15px;
    margin-top: 30px;
  }
  .service_low .box h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .service_low .box .body {
    padding: 0;
  }
  .service_low .box .body .desc {
    margin-bottom: 15px;
  }
  .service_low .box .box_white {
    width: auto;
    padding: 10px 15px;
    margin-bottom: 13px;
  }
  .service_low .box .box_white:last-child {
    margin-bottom: 0;
  }
  .service_low .btn_detail {
    width: 84.5%;
    margin: 15px auto 0;
  }
  .service_low .btn_back {
    width: auto;
    margin: 50px auto 0;
  }
}

/*----------------------------------------------------
	service webmedia
----------------------------------------------------*/
/* web ----------*/
@media screen and (max-width: 768px) {
  .service_low .desc_content {
    margin-bottom: 20px;
  }
  .service_low .desc_content figure {
    float: none;
    width: 70.4%;
    margin: 0 auto 20px;
  }
}

/*----------------------------------------------------
	service officesolution
----------------------------------------------------*/
/* oa ----------*/
.officesolution .box .logo_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.officesolution .box .logo_area figure {
  width: 215px;
  margin: 0 26px 20px 0;
}

.officesolution .box .logo_area figure a {
  display: block;
}

.officesolution .box .logo_area figure:nth-child(4n) {
  margin-right: 0;
}

.officesolution .box .logo_area figcaption {
  text-align: center;
  margin-top: 10px;
}

.officesolution #security .box .box_white:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.officesolution #security .box .box_white:nth-child(2) figure {
  float: right;
  margin-top: -50px;
}

.officesolution #other .box {
  background-color: #fff;
}

.officesolution #other .box h5 {
  color: #303030;
}

.officesolution #other .box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.officesolution #other .box .txt {
  width: 670px;
}

.officesolution #other .box .btn {
  float: right;
  margin-top: 20px;
}

.officesolution #other .box .btn a {
  display: block;
}

.officesolution .list_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.officesolution .list_set small {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 10px;
}

.officesolution #design .box .box_white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.officesolution #design .box .box_white figure {
  margin-right: 20px;
}

.officesolution #design .box .box_white .logo {
  margin-bottom: 10px;
}

.officesolution #design .box .box_white .ttl {
  font-weight: normal;
  margin-bottom: 10px;
}

.officesolution #design .box .box_white a {
  text-decoration: none;
}

.officesolution #design .box .box_white a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .service_low .box .logo_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .service_low .box .logo_area figure {
    width: 47.6%;
    margin: 0 0 20px 0;
  }
  .officesolution #security .box .box_white:nth-child(1) {
    display: block;
    width: 100%;
  }
  .officesolution #security .box .box_white:nth-child(1) .cont:nth-child(1) {
    margin-bottom: 25px;
  }
  .officesolution #security .box .box_white:nth-child(2) figure {
    float: none;
    width: 48.1%;
    margin: 15px auto 0;
  }
  .officesolution #other .box li {
    display: inline;
  }
  .officesolution #other .box figure {
    width: 70.4%;
    margin: 0 auto 15px;
  }
  .officesolution #other .box .txt {
    width: auto;
  }
  .officesolution #other .box .btn {
    float: none;
    width: 61.5%;
    margin: 20px auto 0;
  }
  .officesolution .list_set {
    display: inline;
  }
  .officesolution .list_set li:first-child {
    margin-bottom: 20px;
  }
  .officesolution #design .box .box_white figure {
    width: 32.7%;
    margin-right: 15px;
  }
  .officesolution #design .box .box_white .logo {
    width: 95px;
  }
}

/*----------------------------------------------------
	service businesspartner
----------------------------------------------------*/
.businesspartner #recruit h5 {
  margin-bottom: 30px;
}

.businesspartner #recruit .txt {
  width: 650px;
}

.businesspartner #recruit .box .box_white {
  background-color: #fff;
  border: 1px solid #cbcbcb;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}

.businesspartner #recruit section {
  margin-top: 60px;
}

.businesspartner #recruit section h5 {
  font-size: 1.6rem;
  color: #000066;
  margin-bottom: 20px;
}

.businesspartner #recruit section h5::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #000066;
  width: 4px;
  height: 20px;
  margin: 0 14px 0 4px;
}

.businesspartner #recruit #outline table tr {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}

.businesspartner #recruit #outline table th, .businesspartner #recruit #outline table td {
  padding: 13px 26px;
}

.businesspartner #recruit #outline table th {
  font-weight: normal;
  vertical-align: middle;
  background-color: #f2f2f2;
  width: 220px;
}

.businesspartner #recruit #outline table p:first-child {
  margin-bottom: 30px;
}

.businesspartner #recruit #outline table .tel a {
  color: #1a1a1a;
}

.businesspartner #recruit #outline table .mail a {
  text-decoration: underline;
}

.businesspartner #recruit #outline table .mail a:hover {
  text-decoration: none;
}

.businesspartner #recruit .btm_txt {
  text-align: center;
  margin-top: 60px;
}

.businesspartner #recruit .btm_txt .btn {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .businesspartner #recruit .txt {
    width: auto;
  }
  .businesspartner #recruit h5 {
    margin-bottom: 15px;
  }
  .businesspartner .desc figure {
    width: 70.4%;
    margin: 20px auto 0;
  }
  .businesspartner #recruit section {
    margin-top: 30px;
  }
  .businesspartner #recruit section h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .businesspartner #recruit #outline table th {
    width: 29.5%;
  }
  .businesspartner #recruit #outline table th,
  .businesspartner #recruit #outline table td {
    padding: 10px;
  }
  .businesspartner #recruit .btm_txt {
    text-align: left;
    margin-top: 30px;
  }
  .businesspartner #recruit .btm_txt .btn {
    width: 84.5%;
    margin: 15px auto 0;
  }
}

/*----------------------------------------------------
	company
----------------------------------------------------*/
.company .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000066;
  margin-bottom: 20px;
}

.company p {
  margin-bottom: 30px;
}

.company .name {
  text-align: right;
}

.company .box {
  background-color: #f8f8f8;
  background-image: url(../img/company/slogan_bg.jpg);
  background-repeat: no-repeat;
  padding: 100px 40px 40px;
  position: relative;
}

.company .box h4 {
  position: absolute;
  top: 30px;
  left: 0;
}

.company .box .webmeida {
  margin-bottom: 40px;
}

.company .box dt {
  margin-bottom: 10px;
}

.company tr {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}

.company th, .company td {
  padding: 8px 26px;
}

.company th {
  font-weight: normal;
  vertical-align: middle;
  background-color: #f2f2f2;
  width: 220px;
}

.company #outline td dl:first-child {
  margin-bottom: 36px;
}

.company .section a {
  text-decoration: underline;
}

.company .section a:hover {
  text-decoration: none;
}

.company address {
  margin-bottom: 20px;
}

.company address span {
  color: #000066;
}

.company .map {
  border: 1px  solid #cbcbcb;
}

@media screen and (max-width: 768px) {
  .company #pagehead h2 {
    width: 27.6%;
  }
  .company .ttl {
    margin-bottom: 15px;
  }
  .company p {
    margin-bottom: 25px;
  }
  .company .name img {
    width: 54.9%;
  }
  .company .box {
    border: 1px solid #cbcbcb;
    background-image: none;
    padding: 70px 15px 30px;
  }
  .company .box h4 {
    width: 41.1%;
    top: 20px;
  }
  .company .box .webmeida {
    margin-bottom: 25px;
  }
  .company .box .webmeida dt {
    width: 35.2%;
  }
  .company .box .webmeida dd {
    width: 72%;
  }
  .company .box .officesolution dt {
    width: 45.5%;
  }
  .company .box .officesolution dd {
    width: 92.6%;
  }
  .company th, .company td {
    padding: 10px;
  }
  .company th {
    width: 29.5%;
  }
  .company td dl:first-child {
    margin-bottom: 25px;
  }
  .company address {
    margin-bottom: 15px;
  }
  .company .map {
    position: relative;
    padding-bottom: 70%;
    height: 0;
    overflow: hidden;
  }
  .company .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/*----------------------------------------------------
	recruit
----------------------------------------------------*/
.recruit .desc {
  margin-bottom: 80px;
  overflow: hidden;
}

.recruit .ttl {
  font-weight: bold;
  color: #000066;
  margin-bottom: 26px;
}

.recruit figure {
  float: right;
  margin-left: 30px;
}

.recruit p {
  margin-bottom: 30px;
}

.recruit p:last-child {
  margin-bottom: 0;
}

.recruit .content {
  margin-bottom: 80px;
}

.recruit table tr {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}

.recruit table th, .recruit table td {
  padding: 13px 26px;
}

.recruit table th {
  font-weight: normal;
  vertical-align: middle;
  background-color: #f2f2f2;
  width: 220px;
}

@media screen and (max-width: 768px) {
  .recruit #pagehead h2 {
    width: 22.2%;
  }
  .recruit .ttl {
    margin-bottom: 15px;
  }
  .recruit figure {
    float: none;
    width: 70.4%;
    margin: 0 auto 20px;
  }
  .recruit p {
    margin-bottom: 25px;
  }
  .recruit th, .recruit td {
    padding: 8px 10px;
  }
  .recruit th {
    width: 29.5%;
  }
  .recruit td {
    margin-bottom: 30px;
  }
}

/*----------------------------------------------------
	news
----------------------------------------------------*/
.news article {
  margin-bottom: 80px;
}

.news article h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news .h4ttl .date {
  font-size: 1.4rem;
  font-weight: normal;
  padding-left: 20px;
}

/* pagenation ---------- */
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  text-align: center;
}

.pagination li {
  background-color: #eee;
  border: 1px solid #cbcbcb;
  min-width: 32px;
  margin-right: 5px;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination .current {
  display: block;
  background-color: #1a1a1a;
  color: #fff;
  padding: 3px;
}

.pagination a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  padding: 3px;
}

.pagination a:hover {
  background-color: #1a1a1a;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .news #pagehead h2 {
    width: 41.1%;
  }
  .news article {
    margin-bottom: 40px;
  }
  .news article h4 {
    display: block;
  }
  .news .h4ttl .date {
    display: block;
    font-size: 1.3rem;
    padding-left: 0;
  }
}

/*----------------------------------------------------
	contact
----------------------------------------------------*/
.contact .desc {
  margin-bottom: 30px;
}

.contact .content {
  margin-bottom: 40px;
}

.contact h4 {
  color: #ff6600;
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 20px;
}

.contact .tel_box {
  background-color: #f2f2f2;
  padding: 20px;
}

.contact .tel_box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  position: relative;
}

.contact .tel_box li::before {
  content: '';
  display: inline-block;
  font-weight: bold;
  background-color: #000066;
  width: 3px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 0;
}

.contact .tel_box .ttl {
  font-weight: bold;
  width: 220px;
}

.contact .tel_box .tel {
  font-size: 2.1rem;
  font-weight: bold;
  color: #000066;
  margin-right: 20px;
}

.contact .tel_box .tel a {
  text-decoration: none;
  color: #000066;
}

.contact .section a {
  text-decoration: underline;
}

.contact .section a:hover {
  text-decoration: none;
}

.contact form tr {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}

.contact form th, .contact form td {
  padding: 13px 26px;
}

.contact form th {
  font-weight: normal;
  vertical-align: middle;
  background-color: #f2f2f2;
  width: 270px;
}

.contact form label {
  display: block !important;
}

.contact form .required {
  display: inline-block;
  font-size: 10px;
  font-weight: normal;
  text-align: center;
  background-color: #e5362f;
  border-radius: 4px;
  color: #fff;
  padding: 0 4px;
  margin-left: 10px;
}

/*.contact form .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 400px;
  margin: 30px auto 0;
}*/

.contact form .btn button {
  background-color: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
}

.contact form .subject:first-of-type {
  margin-bottom: 30px;
}

.contact form .subject .ttl {
  font-weight: bold;
}

#mf_name, #mf_companyname, #mf_mail {
  width: 250px;
}

#mf_tel, #mf_fax, #mf_postcode {
  width: 150px;
}

#mf_shikuchoson, #mf_chomebanchi {
  width: 380px;
}

#mf_msg {
  width: 450px !important;
  min-height: 120px;
}

.form .btn {
  max-width: 320px;
  width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 275px;
  }
}
.form .btn button, .form .btn input {
  background-color: #000066;
  border: 1px solid #000066;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form .btn button, .form .btn input {
    font-size: 13px;
    padding: 10px;
  }
}
.form .btn button:hover, .form .btn input:hover {
  opacity: 0.7;
}

.form label {
  cursor: pointer;
}
.form [type=text], .form [type=email], .form [type=tel] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 250px;
  width: 100%;
  padding: 3px;
}
.form select {
  border: 1px solid #ccc;
  padding: 3px;
}
.form textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 450px;
  width: 100%;
  height: 120px;
  padding: 3px;
}

/* thanks ----------*/
.thanks p:last-of-type {
  margin-bottom: 15px;
}

.thanks .tel_box .ttl {
  width: 130px;
}

@media screen and (max-width: 768px) {
  .contact #pagehead h2 {
    width: 25.6%;
  }
  .contact .desc {
    margin-bottom: 25px;
  }
  .contact p {
    margin-bottom: 10px;
  }
  .contact .content {
    margin-bottom: 30px;
  }
  .contact .tel_box {
    border: 1px solid #cbcbcb;
    padding: 15px 10px;
  }
  .contact .tel_box li {
    display: block;
  }
  .contact .tel_box li::before {
    top: 0;
  }
  .contact .tel_box li span {
    display: block;
  }
  .contact .tel_box .tel {
    font-size: 2.4rem;
    margin-right: 0;
  }
  .contact .tel_box li {
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .contact .tel_box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .contact form table {
    border: 1px solid #cbcbcb;
    margin-bottom: 15px;
  }
  .contact form th, .contact form td {
    display: block;
    padding: 10px;
  }
  .contact form th {
    border-bottom: 1px solid #cbcbcb;
    width: auto;
  }
  .contact form .subject:first-of-type {
    margin-bottom: 25px;
  }
  /*.contact #form .btn {
    width: auto;
    margin: 15px 10px 0;
  }*/
  .contact #form .btn button {
    width: 45.4%;
  }
  #mf_shikuchoson, #mf_chomebanchi {
    width: 250px;
    max-width: 380px;
  }
  #mf_msg {
    width: 100% !important;
    max-width: 450px;
  }
}

/*----------------------------------------------------
	privacy
----------------------------------------------------*/
.privacy p {
  margin-bottom: 30px;
}

.privacy dt {
  font-weight: bold;
  color: #000066;
}

.privacy dd {
  margin-bottom: 30px;
}

.privacy address {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .privacy #pagehead h2 {
    width: 44.7%;
  }
}

/*----------------------------------------------------
	maintenance
----------------------------------------------------*/
#header_mente{
  text-align: center;
}
#header_mente #hlogo{
  float: none;
  margin: 0 auto;
  margin-bottom: 20px;
}
.mente #wrapper{
  width: 1000px;
  margin: 0 auto;
}
.mente #main_content{
  margin-top: 60px;
  margin-bottom: 60px;
  border: 5px solid #cecece;
  padding: 190px 0;
}
.mente #main_content .section{
  text-align: center;
}
.mente #main_content .section h3{
  color: #ff6600;
  font-size: 40px;
  margin-bottom: 20px;
}
.mente #main_content .section p{
  font-size: 18px;
  font-weight: bold;
  line-height: 42px;
}
#footer_mente{
    background-color: #f0f0f0;
    background-image: none;
    border-top: 1px solid #cecece;
    color: #303030;
}
#footer_mente .inner {
  width: 1000px;
  padding: 30px 0;
}
#footer_mente #fcontact {
  width: 570px;
  float: left;
}
#footer_mente #fcontact .logo {
  float: left;
  margin-bottom: 0;
  margin-right: 30px;
  padding-top: 15px;
  height: 70px;
}
#footer_mente #fcontact .address {
  font-size: 12px;
  line-height: 18px;
}
#footer_mente #fbanner {
  background-image: none;
  width: 345px;
  float: right;
}
#footer_mente #fbanner ul {
  display: inherit;
  width: 345px;
  padding: 0;
  margin: 0;
}
#footer_mente #fbanner ul li{
  float: left;
  padding-top: 15px;
}
#footer_mente #fbanner ul li:first-child{
  margin-right: 25px;
}

@media screen and (max-width: 768px) {
  #header_mente #hlogo {
    width: 190px;
    margin: 0 auto;
    padding: 15px 0 0;
  }
  .mente #wrapper{
    width: 90%;
    margin: 0 auto;
  }
  .mente #main_content{
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 50px 10px;
  }
  .mente #main_content .section h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .mente #main_content .section p{
    font-size: 13px;
    line-height: 24px;
  }
  #footer_mente .inner {
    width: 100%;
    padding: 30px 0;
  }
  #footer_mente #fcontact {
    width: 100%;
    float: none;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #footer_mente #fcontact .logo {
    float: none;
    width: 190px;
    margin: 0 auto;
    padding-top: 0;
    padding-right: 35px;
    height: 45px;
  }
  #footer_mente #fcontact .address {
    font-size: 12px;
    line-height: 18px;
    margin-right: 35px;
  }
}
