@charset "UTF-8";
.sp {
  display: none;
}

@media all and (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  header {
    position: relative;
  }

  section {
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
  }

header section {
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
}

  .px800 {
    width: 100%;
  }

  h2 {
    font-size: 18px;
    padding-top: 20px;
  }

  .under-h2 {
    font-size: 10px;
    height: 15px;
    line-height: 15px;
  }
  .under-h2:before {
    content: url(../image/under-h2-left-sp.png);
    position: absolute;
    left: -10px;
  }
  .under-h2:after {
    content: url(../image/under-h2-right-sp.png);
    position: absolute;
    right: -10px;
  }

  h2.white + .under-h2:before {
    content: url("../image/under-h2-white-left-sp.png");
    left: -10px;
  }
  h2.white + .under-h2:after {
    content: url("../image/under-h2-white-right-sp.png");
    right: -10px;
  }

  .px700 {
    width: 100%;
  }

  .title {
    background: #007bbb;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
  }
  
  .px700 img, .px800 img {
  max-width: 100%;
  height: auto;
  }

  /*------------------------------------*\
    $SP-Menu
  \*------------------------------------*/
  .sp-menu {
    position: fixed;
    top: 14px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 6px 6px 4px;
    border-radius: 2px;
    display: block;
    z-index: 99999;
  }

  #nav-drawer {
    position: relative;
  }

  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }

  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 25px;
    height: 22px;
    vertical-align: middle;
    /*ハンバーガーアイコンをCSSだけで表現*/
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }

  /*閉じる用の薄黒カバー*/
  #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }

  /*中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 75%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 300px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #fff;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
  }
  #nav-content ul {
    margin: 0;
    padding: 0;
  }
  #nav-content ul li {
    list-style-type: none;
  }
  #nav-content ul li a {
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    display: block;
    text-align: center;
    text-decoration: none;
  }
  #nav-content ul li:nth-of-type(2n) {
    background: #007bbb;
  }
  #nav-content ul li:nth-of-type(2n) a {
    color: #fff;
  }

  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
  }

  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }

  #nav-content ul li.sp-menu-work a {
    height: 40px !important;
    line-height: 40px !important;
    background: #fff;
    color: #000;
  }

  /*------------------------------------*\
    $header
  \*------------------------------------*/
  header .h-logo {
    margin: 10px auto;
    text-align: center;
  }
  header .h-logo img {
    width: 70%;
  }

  /*------------------------------------*\
    $footer
  \*------------------------------------*/
  footer {
    padding-bottom: 20px;
    margin-top: 100px;
  }
  footer .footer-adress {
    width: 100%;
    margin-top: 15px;
    display: block;
  }
  footer .footer-adress .foot-left {
    float: none;
    margin-bottom: 20px;
    font-size: 12px;
  }
  footer .footer-adress .foot-center {
    float: none;
    margin-bottom: 20px;
    font-size: 12px;
  }
  footer .footer-adress .foot-right {
    float: none;
    font-size: 12px;
  }
  footer .footer-adress .foot-left div, footer .footer-adress .foot-right div, footer .footer-adress .foot-center div {
    margin-bottom: 5px;
  }
  footer .foot-menu {
    width: 100%;
  }
  footer .foot-menu ul {
    width: 100%;
  }
  footer .blue-border {
    margin-bottom: 15px;
  }

  .copy {
    font-size: 10px;
    margin: 2px auto;
  }

  /*------------------------------------*\
    $top
  \*------------------------------------*/
  #top #slider .slider-text {
    top: 260px;
  }
  #top #slider .slider-text img {
    width: 300px;
  }
  #top .boxes {
    width: 100%;
    margin: 0 auto;
    font-size: 0;
    margin-bottom: 40px;
  }
  #top .boxes .box {
    width: 300px;
    height: 180px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 24px;
  }
  #top .boxes .box:last-of-type {
    margin-right: auto;
  }
  #top .boxes .box .box-title {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }
  #top .bg-blue {
    background: url(../image/bg-blue.jpg);
    background-position: center;
    color: #fff;
    text-align: center;
  }
  #top .btns {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  #top .btns a {
    width: 250px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  #top .btns a:last-of-type {
    float: none;
  }
  #top .news {
    margin: 0;
    padding: 0;
  }
  #top .news li {
    list-style-type: none;
  }
  #top .news li a {
    font-size: 12px;
    margin-bottom: 8px;
    display: block;
    line-height: 20px;
  }
  #top .news li a i {
    padding-top: 0;
  }
  #top .news li .date {
    margin-right: 20px;
    display: block;
  }
  #top .news-more a {
    width: 150px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
	#top .fs-little {
		font-size:12px;
	}

  /*------------------------------------*\
    $recruit
  \*------------------------------------*/
  #recruit table {
    margin-bottom: 30px;
    width: 100%;
  }
  #recruit table th {
    border: solid 1px #aaa;
    text-align: left;
    width: 100%;
    padding: 8px;
    display: block;
    font-size: 12px;
    background: #efefef;
  }
  #recruit table td {
    border: solid 1px #aaa;
    width: 100%;
    padding: 8px;
    display: block;
    font-size: 12px;
  }
  #recruit table:last-of-type {
    margin-bottom: 20px;
  }
  #recruit .contact-box {
    border: solid 1px #aaa;
    border-top: solid 3px #666;
    padding: 10px;
    width: 250px;
    margin: 0 auto;
    margin-top: 20px;
  }

  /*------------------------------------*\
    $company
  \*------------------------------------*/
  #company table {
    width: 100%;
  }
  #company table th, #company table td {
    display: block;
    width: 100%;
    font-size: 12px;
    padding: 8px;
  }
  #company .gray table td {
    padding-left: 30px;
    border-bottom: solid 1px #999;
  }
  #company .gray table th {
    border-bottom: dotted 1px #ddd;
    padding: 5px 8px;
    font-size: 12px;
  }

  /*------------------------------------*\
    $news
  \*------------------------------------*/
  #news ul {
    margin-top: 20px;
  }
  #news ul li a {
    font-size: 13px;
    height: auto;
    display: block;
    text-decoration: none;
    position: relative;
    line-height: 1.7;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: dotted 1px #CCCCCC;
  }
  #news ul li a i {
    padding-top: 0;
  }
  #news ul li .date {
    margin-right: 14px;
    display: block;
    font-weight: bold;
  }
  #news .pager {
    margin-top: 20px;
  }
  #news .pager a {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  /*------------------------------------*\
    $news
  \*------------------------------------*/
  #news-show .content {
    font-size: 13px;
  }
  #news-show .content img {
    display: block;
    float: none;
		margin: 15px auto;
  }
  #news-show .pager {
    margin-top: 20px;
  }
  #news-show .pager a {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  /*------------------------------------*\
    $contact
  \*------------------------------------*/
  #contact p:first-of-type {
    font-size: 12px;
  }
  #contact table {
    margin-bottom: 10px;
  }
  #contact table th, #contact table td {
    display: block;
    width: 100%;
    font-size: 12px;
  }
  #contact table th input, #contact table td input {
    height: 24px;
    width: 100%;
    padding-left: 4px;
  }
  #contact table th {
    border-bottom: 0;
    margin-bottom: 2px;
    padding-left: 0;
    padding: 0;
  }
  #contact table td {
    height: auto;
    padding-top: 6px;
  }
  #contact table tr:last-of-type th {
    height: 18px;
  }
  #contact table tr:last-of-type td {
    height: 160px;
  }
  #contact table tr:last-of-type td textarea {
    height: 140px;
    width: 100%;
  }
  #contact .cnf-btn {
    font-size: 12px;
    height: 40px;
    line-height: 40px;
  }

  .mw_wp_form_confirm #contact table td {
    height: auto;
    padding: 6px 0 !important;
  }
  .mw_wp_form_confirm #contact table tr:last-of-type td.naiyo {
    height: auto !important;
    padding-bottom: 8px;
  }
  .mw_wp_form_confirm #contact table tr:last-of-type td {
    height: auto;
  }

  .contact-cnf table td {
    height: auto;
    padding: 6px 0 !important;
  }
  .contact-cnf table tr:last-of-type td.naiyo {
    height: auto !important;
    padding-bottom: 8px;
  }
  .contact-cnf table tr:last-of-type td {
    height: auto;
  }

  /*------------------------------------*\
  $contact-send
  \*------------------------------------*/
  #contact .back-top a {
    display: block;
    width: 120px;
    height: 30px;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
    margin: 50px auto;
    background-color: #007bbb;
  }

  /*------------------------------------*\
  $works-mizushima
  \*------------------------------------*/
  #works-mizushima .w-m-images {
    text-align: center;
  }
  #works-mizushima .w-m-images img {
    max-width: 100%;
    margin-top: 20px;
    margin-right: 4%;
    float: left;
  }
  #works-mizushima .w-m-images img:nth-of-type(2) {
    margin-right: 0;
  }
  #works-mizushima .w-m-images a img {
    max-width: 100%;
  }
  #works-mizushima .boxes {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
    float: left;
  }
  #works-mizushima .boxes:nth-of-type(2n) {
    margin-right: 0;
  }
  #works-mizushima .boxes img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  #works-mizushima .boxes .box-text {
    margin-top: 10px;
  }
  #works-mizushima .boxes .box-text span.midashi {
    font-size: 1.2em;
    background: #007bbb;
    display: block;
    color: #fff;
    padding: 3px;
    padding-left: 6px;
    margin-bottom: 4px;
  }
  #works-mizushima .boxes .box-text .underline {
    text-decoration: underline;
  }
  
  #business h2 {
	  width: 45%;
	}
	#company .access h3 {
		font-size:.9em;
	}
	#company .access h3 span {
		font-size:1em;
	}
	#company .access iframe {
		height:240px;
		margin-bottom:30px;
	}
  /*------------------------------------*\
  $qa
  \*------------------------------------*/
  #qa #toggleMenu {
    font-size: 1em;
  }
  
  .top-btns {
  	border-top:solid 1px #e7e7e7;
  	border-bottom:solid 1px #e7e7e7;
  	}
  .top-btns a {
  	width:50%;
  	display:inline-block;
  	float:left;
  }
  .top-btns a img {
  	width: 100%;
  }
  .top-btns a:last-of-type {
  	width: 100%;
  	}
  #top header {
		width:100%;
	}
	#top #slider {
	  height: 360px;
	}
	.rec_title_right {
	  font-size: 10px;
	  line-height: 13px;
	  margin-top: 16px;
	}
	#works-fukuyama .w-f-images img {
	  max-width: 100%;
	  float: none;
	}
	#works-dump .w-d-images img {
	  max-width: 100%;
	  float: none;
	}
	#qa h2 {
	  width: 110px;
	  padding-top: 0;
	}
	#company .access iframe {
	  width: 100%;
	  margin-top: 30px;
	}
	#company .access .ac-left {
	  width: 190px;
	  margin: 0 auto;
	  margin-top: 20px;
	  float: none;
	}
	#company .access h3 {
	  text-align: center;
	  width: auto;
	}
	#company .access a {
		width:auto;
		margin-top:10px;
	  height: 40px;
	  font-size: 13px;
	  line-height: 40px;
	}
	#works-dump .w-d-images img,#works-fukuyama .w-f-images img {
		margin-right:0;
	}
	.main-sp img {
		width:100%;
	}
	#top .head-nav-bg {
		margin-top:0;
	}
	#top .business-gray {
	  padding-top: 0;
	  padding-bottom: 0;
	}
	#business .a-link {
	  width: 100%;
	}
	#business .a-link a {
	  display: inline-block;
	  margin:0 auto;
	  margin-top:20px;
	  width: 90px;
	 }
	 #business .a-link a:first-of-type {
	 	margin-top:0;
	 }
	 #business .a-link a:last-of-type {
	  margin-right: auto;
	}
	 #business .a-link a:nth-of-type(2) {
	  margin: 0 10px;
	}

	#business h2.h2-top {
		margin-top: 0;
		border-bottom: 0;
		font-size: 24px;
		margin-bottom: 10px;
	}
	#company .rinen div {
		font-size: 24px;
		font-weight: bold;
	}
	
	.top-saiyou .under-h2:before {
		content: url(../image/under-h2-left-sp.png) !important;
		position: absolute;
		left: -11px;
	}
	.top-saiyou .under-h2:after {
		content: url(../image/under-h2-right-sp.png) !important; 
		right: -10px;
	}
	
	
}

/*# sourceMappingURL=sp.css.map */
