@charset "UTF-8";

/* Base */
html { font-family: "Ropa Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;  font-size: 16px; line-height: 1.5; }
body { background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); font-family: "MS Pゴシック";}
h1, h2, h3, p, ul { margin: 0; }
ul { ding-left: 0; }
ul li { list-style-type: none; }
a { color: inherit; text-decoration: none; }
img { vertical-align: middle; }
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

.top-menu{
  display: none;
}
.top-catch-recruit{
  display: none;
}
.toprecruit-img2{
  position: absolute;
  right: 0px;
  top:0px; 
}
.toprecruit-img2 img{
  display: none;
}
.toprecruit-slider2 {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
	max-width: 100%;
  z-index: 1000000;
}

.toprecruit-slider2 div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
  height: 350px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade2;
	animation-duration: 15s;
	animation-iteration-count: infinite;
}

@keyframes slide-fade2 {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
.toprecruit-slider2 div:first-of-type{
	background-image: url(../material/team3.jpg);
}
.toprecruit-slider2 div:nth-of-type(2){
	background-image: url(../material/team2.jpg);
	animation-delay: 5s;
}
.toprecruit-slider2 div:last-of-type{
	background-image: url(../material/team1.jpg);
	animation-delay: 10s;
}
.history table{
  border-collapse: collapse;
  margin-bottom: 60px;
  margin-top: 40px;
}
.history th{
  width: 33%;
  border-bottom: dotted 2px #000;
 text-align: center;
}
.history td{
  border-bottom: dotted 2px #000;
  padding-left: 10px;
  width: 560px;
}
.history tr{
  height: 70px;
}
.history-wide{
  width: 90%;
  margin: 0 auto 60px;
}

.history{
  margin-top: 90px;
  list-style: none;
}
.history > li {
  margin-bottom: 60px;
}

/* for Desktop */
@media ( min-width : 400px ){
  .history > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
    padding-left: 30px;
  }
  .timeline-content {
    width: 90%;
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
    margin-left: 13px;
    padding-bottom: 80px;
    padding-top: 15px;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #6fc173;
    position: absolute;
    left: 10px;
    top: 24px;
    border-radius: 100%;
  }
}
.history-photo1{
  width: 90%;
  margin: 0 auto 30px;
}
.history-photo1 img{
  width: 100%;
}

.history-photo2{
  width: 90%;
  margin: 0 auto 30px;
}
.history-photo2 img{
  width: 100%;
}
.history-photo3{
  width: 90%;
  margin: 0 auto 30px;
}
.history-photo3 img{
  width: 100%;
}

.count{
  margin-top: 90px;
}

.countblock {
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border-bottom: #000 2px dotted;
  width: 95%;
  margin: 0 auto 30px;
}
.countblock h2{
  color: #001b7d;
}

@property --count {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}

.countUp {
  counter-set: countUp var(--count);
  animation: countUp 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp::after {
  content: counter(countUp) "年";
}

@keyframes countUp {
  100% {
    --count: 2007;
  }
}


.countUp1 {
  counter-set: countUp1 var(--count);
  animation: countUp1 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp1::after {
  content: counter(countUp1) "人";
}

@keyframes countUp1 {
  100% {
    --count: 25;
  }
}


.countUp2 {
  counter-set: countUp2 var(--count);
  animation: countUp2 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp2::after {
  content: counter(countUp2) "時間";
}

@keyframes countUp2 {
  100% {
    --count: 10;
  }
}
.countUp3 {
  counter-set: countUp3 var(--count);
  animation: countUp3 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp3::after {
  content: counter(countUp3) "日";
}

@keyframes countUp3 {
  100% {
    --count: 15;
  }
}


.countUp4 {
  counter-set: countUp4 var(--count);
  animation: countUp4 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp4::after {
  content: counter(countUp4) "年";
}

@keyframes countUp4 {
  100% {
    --count: 13;
  }
}

.countUp5 {
  counter-set: countUp5 var(--count);
  animation: countUp5 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp5:after {
  content: counter(countUp5) "年";
}

@keyframes countUp5 {
  100% {
    --count: 45;
  }
}

.countUp6 {
  counter-set: countUp6 var(--count);
  animation: countUp6 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp6::after {
  content: counter(countUp6) "%";
}
@keyframes countUp6 {
  100% {
    --count: 90;
  }
}

.countUp7 {
  counter-set: countUp7 var(--count);
  animation: countUp7 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp7::after {
  content: counter(countUp7) "%";
}
@keyframes countUp7 {
  100% {
    --count: 100;
  }
}

.countUp8 {
  counter-set: countUp8 var(--count);
  animation: countUp8 3.6s 1;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, 0.4, 0.2, 1);
  font-variant-numeric: tabular-nums;
  font-size: 5rem;
}
.countUp8::after {
  content: counter(countUp8) "日";
}
@keyframes countUp8 {
  100% {
    --count: 115;
  }
}
.meet-menu{
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 120px;
}
.meet-menu li{
  width: 100%;
}
.meet-menu img{
  width: 100%;
  margin-bottom: 10px;
}
.top-map{
  width: 100%;
}
.top-map img{
  width: 100%;
}
.top-map iframe{
  width: 100%;
  height: 530px;
}
.top-works{
  background-image: url(../material/green.jpg);
  background-size: 100% auto;
  padding-top: 30px;
  padding-bottom: 100px;
}
.top-works img{
  width: 100%;
  margin-bottom: 50px;
}
.top-works-message{
  width: 90%;
  margin: 50px auto;
  text-align: center;
  color: #000;
}
.top-works-message h2{
  font-size: 40px;
  margin-bottom: 20px;
}
.circle{
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 125px;
  background-color: #1c2a53;
  text-align: center;
  font-size: 27px;
  color: #fff;
}

.circle h3{
  padding-top: 70px;
  margin-bottom: 10px;
}
.button-frame{
  width: 350px;
  margin: 60px auto;
  border: solid 4px #1c2a53;
  color: #1c2a53;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.button-frame i{
  margin-right: 10px;
}
.button-frame h2{
  font-size: 2.4em;
}
.footer-menu-right{
  display: none;
}
.footer-menu{
  width: 80%;
  margin: 0 auto;
}
.footer-menu img{
  width: 100%;
  margin-bottom: 60px;
}
.pamphlet{
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #b3446c;
  font-size: 20px;
}
.footer-contact{
  width: 90%;
  margin: 0 auto;
  text-align: center;
  background-color: #AB951C;
  color: #fff;
  margin-top: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}


.obi-center{
  display: none;
}
.obi-right{
  display: none;
}
.partsleft{
  background-image: url(../material/recruit1.png);
  background-size:100% 100%;
  height: 150px;
}
.partsleft img{
  width: 97%;
  margin: 10px 1% 10px 2%;
}

.partsright img{
  width: 97%;
  margin: 10px 2% 10px 1%;
}
.partsright{
  background-image: url(../material/recruit2.png);
  background-size:100% 100%;
  height: 150px;
}
.partsleft2{
  background-image: url(../material/recruit3.png);
  background-size:100% 100%;
  height: 150px;
}
.partsleft2 img{
  width: 97%;
  margin: 10px 1% 10px 2%;
}
.partsright2 img{
  width: 97%;
  margin: 10px 2% 10px 1%;
}
.partsright2{
  background-image: url(../material/recruit4.png);
  background-size:100% 100%;
  height: 150px;
}
.yellow{
  display: none;
}

.right2{
  display: none;
}
.type-page h1{
  display: none;
}
.phone-no{
  display: none;
}
.w100p{
  display: none;
}
.recruit-top{
  margin-top: 300px;
}
/* 共通エリア開始 */
header{
  width: 100%;
  font-family: "ヒラギノ角ゴ Pro W6";
}
.contact-form-change{
  display: none;
}
.fa-envelope-open-text{
  margin-right: 20px;
}
.fa-mobile-alt{
  margin-right: 20px;
}
.infiniteslide1{
  height: 250px;
  background-color: #456;
}
.infiniteslide1 img{
  height: 250px;
}
.maintext {
  position: absolute;
  background-color: rgba(59,139,253,0.6);
  top:190px;
  width: 80%;
  left: 0;
  border: solid 1px #fff;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.maintext h3{
  color: #fff;
  font-size: 16px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  margin-bottom: 10px;
}
.maintext p{
  text-align: center;
  color: #fff;
  font-size: 13px;
}
.ceparate:after {
  content:"";
  display: block;
  clear:both;
}
.header-logo{
  width: 60%;
  margin: 10px auto;
  text-align: center;
  padding-bottom: 90px;
}
.header-logo img{
  width: 100%;
}
.header-logo h1{
  font-size: 30px;
  margin-top: 30px;
  font-family: "Arial";
}
.fa-file-alt{
  color: #4b71af;
}
.fa-envelope-open-text{
  color: #fff;
}
.movie{
  width: 100%;
  text-align: center;
}
.movie li{
  display: inline-block;
  margin-bottom: 30px;
}
.movie video{
  height: 300px;
}
#menu {
  display: none;
}
.left-border{
  border-left: solid 1px;
}
.smart-top{
  width: 100%;
  height: 80px;
}
.smart-toppicture{
  min-width: 160px;
  width: 100%;
  height: 250px;
  margin-top: 10px;
}
.smart-toppicture img{
  display: none;
    position: absolute;
    width: 100%;
    height: 250px;
    left: 200px;
    margin-left: -200px;

}
.top-effect-img img{
  display: none;
    position: absolute;
    width: 100%;
    left: 200px;
    margin-left: -200px;
}
.top-effect-img{
  position: absolute;
  width: 80%;
  min-width: 130px;
  top:150px;
  left:1%;
  list-style: none;
  text-align: center;
  opacity: 0;
  z-index: 10000;    
  background-color: #000;
  display: none;
}
@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}
.smallmenu-phone{
}
.smallmenu-phone li{
  text-align: left;
  margin-left: 45%;
  font-size: 0.8em;
}
.toggle {
    position: fixed; /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 13px;
    display: block;
    width: 45px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
    background: #101937;
    color: #fff;
}
.toggle span {
    display: block;
    position: absolute; /* .toggleに対して */
    width: 70%;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    padding-top: 5px;
    right: 7px;
}
.toggle span:nth-child(1) {
    top: 3px;
}
.toggle span:nth-child(2) {
    top: 13px;
}
.toggle span:nth-child(3) {
    top: 23px;
}
.toggle span:nth-child(4) {
    border: none;
    top: 28px;
    left: 5px;
    font-size: 12px;
    font-weight: bold;
}
/* 最初のspanをマイナス45度に */
.toggle.active span:nth-child(1) {
    top: 15px;
    left: 4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* .global_nav */
.global_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    z-index: 2;
    padding-top: 50px;
    text-align: center;
    color: #fff;
    background: #101937;
    transition: all 0.8s;
}
.global_nav.sticky {
    position: fixed;
    bottom: 10px;
}
.global_nav .nav_li {
    width: 100%;
    padding: 10px;
    list-style-type: none;
}
.global_nav .nav_li a {
    display: block;
    color: #fff;
}
/* .global_navに.activeが追加 */
.global_nav.active {
    transform: translateY(0%);
}
/* .super */
.super {
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 10px;
    padding-right: 10px;
    transform: translateY(900%);
    z-index: 2;
    text-align: left;
    color: #ff0;
    background: rgba(255,255,0,0.7);
    transition: all 0.8s;
}
.super.sticky {
    position: fixed;
    bottom: 10px;
}
.super .nav_li2 {
    width: 100%;
    padding: 10px;
    list-style-type: none;
}
.super .nav_li2 a {
    display: block;
    color: #000;
}
/* .global_navに.activeが追加 */
.super.active {
    transform: translateY(0%);
}
.w95{
  width: 95%;
  margin: 0 auto;
}
/* 共通エリア終了 */
.smart-in{
  width: 95%;
  margin: 0 auto;
}
.top{
  display: none;
}
.top img{
  display: none;
  position: absolute;
  width: 100%;
  left: 800px;
  margin-left: -800px;
}
.title{
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.titleimg{
  width: 100%;
}
.titleimg img{
  margin-top: 50px;
  width: 100%;
}
.title2{
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.title h2{
  font-size: 40px;
  padding-top: 10px;
  margin-bottom: 10px;
  color: #00263f;
  line-height: 50px;
}
.title2 h2{
  font-size: 50px;
  color: #03253d;
  font-family: "Arial";
}
.title p{
  font-size: 15px;
  color: #fedb00;
  font-family: "Verdana";
}
.title2 p{
  font-size: 15px;
  color: #43a638;
  font-family: "Verdana";
}
.title-selection h2{
  font-size: 90px;
}
.title3{
  margin-bottom: 80px;
  margin-top: 20px;
}
.title3 h2{
  font-size: 70px;
  color: #03253d;
  font-family: "Arial";

}
.title3 p{
  margin-top: 40px;
  text-align: left;
  font-size: 20px;
  margin-left: 10px;
}


.title4{
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Arial";
}
.title4 h2{
  font-size: 35px;
  padding-bottom: 20px;
  padding-top: 40px;
  color: #55AAFB;
  font-style: oblique;
  font-family: "Arial";
}
.contact-color{
  color: #fff;
  background-color: #004800;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contact-color i{
  margin-right: 10px;
}
.contact-size h3{
  font-size: 22px;
  font-family: "ヒラギノ角ゴ Pro W6";
  margin-bottom: 5px;
}
.contact-size p{
  font-size: 15px;
  font-family: "ヒラギノ角ゴ Pro W3";
}
.invisible-smart{
  display: none;
}
.recruit-catch{
  width: 95%;
  margin: 0 auto;
  line-height: 30px;
}
.photo-album li{
  width: 90%;
  margin: 40px auto 40px;
}
.photo-album img{
  width: 100%;
  margin-left: -8%;
}
.person-color{
  background-color: #101937;
  padding: 5px 10px;
  color: #fff;
  border-radius: 10px;
}
.person-text h4{
  font-size: 1.5em;
  color: #00b1dc;
}
.person-text p{
  text-align: left;
  line-height: 30px;
}
.position-ab{
  position: absolute;
  bottom: 20px;
  left: 10px;
}
.hukurikousei li{
  width: 100%;
  margin-bottom: 40px;
}
.hukurikousei img{
  width: 100%;
  margin-left: -8%;
}
.news{
  margin-bottom: 30px;
}
.day{
  width: 100%;
  margin-bottom: 10px;
}
.contents{
  font-family: "ヒラギノ角ゴ ProN W3";
}
.about-block{
  width: 100%;
  background-color: #3B8BFD;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-block img{
  width: 100%;
}
.about-block li{
  margin-bottom: 30px;
}


.bottom40{
  margin-bottom: 40px;
  line-height: 30px;
}
.aboutus-back{
  background-image: url(../material/back-wood.png);
  background-size: 100% 100%;
  margin-bottom: 40px;
  margin-top: 30px;
  padding-bottom: 1px;
  font-family: "ヒラギノ角ゴ ProN W3";
}
.aboutus-back .title{
  color: #004800;
}
.top-about img{
  width: 100%;
  margin-top: 20px;
}
.contact-button{
  color: #fff;
  width:70%;
  margin: 0 auto;
  border:solid 2px #fff;
  padding: 7px 20px;
  text-align: center;
  font-size: 20px;
}
.buttons{
	text-align: center;
}
.buttons li{
  display: inline-block;
  margin-top: 20px;
  background-color: #000;
  color: #ff0;
  text-align: center;
  padding: 10px;
  width: 80%;
  border:solid 1px #ff0;
}
.buttons li:hover{
  color: #000;
  background-color: #ff0;
  transition: 0.6s;
}
.button{
  text-align: center;
  padding: 10px;
  border:solid 2px #00b1dc;
  background-color: #00b1dc;
  color: #fff;
  width: 70%;
  margin: 40px auto 30px;
}
.button:hover{
  color: #EB6CA2;
  background-color: #fff;
  transition: 0.6s;
}
.button2{
  width: 350px;
  margin: 40px auto;
  background-color: #03253d;
  color: #fff;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.button2:hover{
  background-color: #fff;
  color: #5b5c5c;
  transition: 0.7s;
}
.button3{
  background-color: #000;
  color: #ff0;
  text-align: center;
  padding: 10px;
  width: 80%;
  margin-left: 10%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.button3:hover{
  color: #000;
  background-color: #ff0;
  transition: 0.6s;
}
.underleft{
  opacity : 0;
  transform: translateY(90px);
  transition: all 2s;
}
.underup {
  opacity : 0;
  transform: translateY(90px);
  transition: all 1s;
}
.top-catch-under{
  margin-top: 50px;
  margin-bottom: 50px;
}
.top-catch-under img{
  width:100%;
}
.section1-img{
  width: 100%;
}
.section1-img img{
  width: 100%;
}

.aboutus-side{
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.aboutus-side img{
  width: 200px;
}
.about-in{
  width: 95%;
  margin: 0 auto 20px;
}
.about-in h2{
  color: #3589fd;
  margin-bottom: 20px;
}



.recruit-button{
  color: #fff;
  width:55%;
  margin: 0px auto;
  background: #004800;
  border:solid 2px #004800;
  padding: 7px 20px;
  text-align: center;
  font-size: 18px;
}
.three-point{
  width: 100%;
}
.three-point img{
  width: 100%;
}
.picture-small{
	text-align: center;
}
.picture-small img{
	width: 100px;
	margin-bottom: -100px;
}
.serviceus img{
  width: 100%;
  margin-bottom: 20px;
}
.serviceus h2{
  text-shadow: 2px 2px 2px #ff0;
  margin-bottom: 10px;
}
.serviceus-main{
  margin-bottom: 50px;
}
.recruit-info{
  background-image: url(../material/back.jpg);
  background-size: 100% 100%;
  margin-bottom: 40px;
  margin-top: 50px;
  padding-bottom: 40px;
  color: #fff;
}
.position-re{
  position: relative;
}
.bussines-menu-text{
  position: absolute;
  width: 100%;
  bottom: 0px;
  text-align: center;
}
.bussines-menu-text h3{
  padding-top: 210px;
  font-size: 1.8em;
  color: #fff;
}



.back-color{
  background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7));
    width: 100%;
}
.recruit-merit{
  width: 90%;
  margin: 0 auto 60px;
}
.recruit-merit-img img{
  width: 80%;
  margin-left: 10%;
}
.recruit-merit-text h2{
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  text-shadow: 2px 2px 2px #ff0;
}
.recruit-prof table{
  border-collapse: collapse;
  padding-bottom: 30px;
  margin: 0 auto 30px;
}
.recruit-prof th{
  width: 28%;
  background-color: #3F9447;
  border: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.recruit-prof td{
  border: solid 1px #fff;
  padding-left: 10px;
  padding-right: 20px;
}
.recruit-prof tr{
  height: 70px;
}
.recruit-prof {
  width: 100%;
}
.recruit-prof img {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 40px;
} 
.recruit-button{
	margin-bottom: 50px;
}
.team{
  width: 100%;
  margin-bottom: 40px;
}
.team img{
  width: 100%;
  margin-top: 20px;
}
.selection-recruit{
 width: 80%;
 margin: 0 auto;
}
.selection-recruit li{
	margin-top: 20px;
	margin-bottom: 10px;
}
.selection-recruit img{
	width: 100%;
}
.busho-intro img{
	width: 70%;
	margin-left: 15%;
	margin-bottom: 40px;
}
.strongpoint{
  text-shadow: 2px 2px 2px #ff0;
  margin-bottom: 10px;
  margin-top: 30px;
  font-size: 19px;
}
.picture-cover{
  width: 100%;
  background-color: rgba(0,0,0,0.7);
  padding-bottom: 5px;
}
.top-contact{
  padding-top: 1px;
  padding-bottom: 30px;
  width: 90%;
  margin: 0 auto 30px;
  text-align: center;
}
.top-catch{
  width: 100%;
  color: #000;
  text-align: center;
}
.top-catch p{
  margin-bottom: 15px;
  font-size: 17px;
}
.top-catch .title h2{
  font-size: 24px;
}
.back2img img{
  width: 100%;
}
.tate{
  text-orientation: upright;
	writing-mode: vertical-rl;
}
.text-tate{
	writing-mode: vertical-rl;
  font-size: 50px;
  height: 115%;
  margin-top: 0px;
  margin-left: 30%;
}
.text-tate-space{
  margin-top: 30px;
}
.text-tate-selection{
  text-orientation: upright;
	writing-mode: vertical-rl;
  font-size: 52px;
  height: 110%;
  margin-top: 20px;
  margin-left: 90px;
}
.text-tate-space-selection{
  margin-top: 180px;
}
.under-menu{
	display: none;
}
footer{
  width: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
  font-family: "ヒラギノ角ゴ Pro W6";
  text-align: center;
}
.footer-tel h2{
  font-size: 2em;
}
.footer-text{
  display: none;
}
.footer-center{
  width: 90%;
  margin: 0 auto;
}
.footer-center img{
  width: 30%;
  margin-left: 35%;
  margin-right: 35%;
  margin-bottom: 20px;
}
.footer-center h2{
  font-size: 30px;
}
.footer-left{
	display: none;
}
.footer-l-block{
  display: none;
}
.footer-adress{
  display: none;
}
.text-big{
  font-size: 30px;
}

.footer-right{
	display: none;
}





.space20{
  margin-left: 20px;
}
.lispace{
  margin-left: 10%;
  margin-right: 10%;
}
.recruit-greeding{
  text-align: center;
  width: 95%;
  margin:0 auto 80px;
}
.recruit-greeding h3{
  color: #000;
  text-shadow: 2px 2px 2px #ff0;
}
.recruit-greeding p{
  margin-top: 30px;
}
.recruit{
  background-image: url(../material/back1.png);
  background-size: 100% 100%;
  padding-top: 50px;
  padding-bottom: 40px;
}
.recruit-message{
  margin-left: 50px;
  width: 90%;
  margin: 0 auto;
  line-height: 35px;
}
.recruit-message span{
  font-size: 26px;
}
.recruit-photo{
  width: 60%;
  margin: 0 auto;
  padding-top: 50px;
}
.recruit-photo img{
  width: 100%;
}
.recruit-link{
  background-color: #4b71af;
  text-align: center;
  width: 250px;
  margin-top: 10px;
  border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}
.recruit-link p{
  padding-top: 5px;
  padding-bottom: 5px;
  color: #fff;
}
.recruitul{
  width: 100%;
  padding-top: 40px;
  text-align: center;
}
.recruitli{
  width: 60%;
  margin-bottom: 40px;
  display: inline-block;
  text-align: center;
  color: #4b71af;
}
.recruitli img{
  width: 100%;
}
.recruitli p{
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
}
.toprecruit{
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.toprecruit img{
  width: 100%;
  height: 140px;
}
.width50{
  width: 100%;
  text-align: center;
}
.width50f i{
  margin-right: 20px;
}
.width50f{
  float: left;
  width: 48%;
  text-align: center;
}
.width50f p{
  padding-top: 14px;
}
.ctel{
  background-color: #00f;
  width: 95%;
  margin: 0 auto;
  border-radius: 7px;    /* CSS3草案 */
  -webkit-border-radius: 7px;  /* Safari,Google Chrome用 */
  -moz-border-radius: 7px; /* Firefox用 */
  height: 50px;
  color: #fff;
}
.cmail{
  background-color: #808000;
  width: 95%;
  margin: 0 auto;
  border-radius: 7px;    /* CSS3草案 */
  -webkit-border-radius: 7px;  /* Safari,Google Chrome用 */
  -moz-border-radius: 7px; /* Firefox用 */
  height: 50px;
  color: #fff;
}
.map{
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
}
.map iframe{
  width: 100%;
  height: 600px;
}
.copyright{
  background-color: #3c3a39;
  color: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 70px;
  font-size: 12px;
}
.ff0{
  color: #ff0;
}
.smart-link{
  background-color: rgba(0,0,0,0.8);
  position: fixed;
  bottom:0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
/*パンクズリスト*/
.breadcrumb {
  display: none;
}
.breadcrumb li{
  display:inline;/*横に並ぶように*/
  list-style: none;
  font-size: 14px;
}
.breadcrumb li:after{/* >を表示*/
  content: '>';
  padding: 0 3px;
}
.breadcrumb li:last-child:after{
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
}
.breadcrumb li a:hover {
    text-decoration: underline;
}
.inner-picture{
  position: relative;
  width: 100%;
  height: 180px;
  margin-top: 10px;
}
.inner-picture img{
  width: 100%;
  height: 100%;
}
.inner-guide{
  position: absolute;
  text-align: center;
  top: 60px;
  width: 100%;
  font-size: 30px;
  color: #fff;
}
.inner-guide p{
  font-size: 17px;
}
.selection{
  text-align: center;
  margin-top: 30px;
}
.selection-block{
  float: left;
  padding: 10px 20px;
  background-color: #000;
  color: #ff0;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}
.incontents{
  width: 95%;
  margin: 0 auto;
  line-height: 30px;
}
.greet-img{
  width: 80%;
  margin: 20px auto;
  border:soli
}
.greet-img img{
  width: 100%;
}
.ceo{
  width: 70%;
  margin: 0px auto;
}
.ceo img{
  width: 100%;
}
.ceo-text{
  position   : relative;
  background-color: #00b1dc;
  width:90%; 
  left : 50%; 
  transform: translate(-50%);
  border-radius: 20px;
  
}
.ceo-text:after{
  border-right: 40px solid #00b1dc; 
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent; 
  left: -20px; 
  top : 0%; 
  content: ""; 
  position: absolute; 
  z-index: -11;   
}
.ceo-text h2{
  font-size: 15px;
  text-align: center;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.ceo-point{
  text-align: center;
  margin-top: 60px;
}
.ceo-point h3{
  margin-bottom: 20px;
}

.works-photo{
  width: 95%;
  margin: 40px auto;
}
.works-photo img{
  width: 100%;
  margin-bottom: 20px;
  margin-left: -6%;
}

.greet-message{
  width: 95%;
  margin: 40px auto;
  line-height: 30px;
}
.greet-message h3{
  color: #3b0863;
}
.greet-img img{
  width: 100%;
}
.career-block h2{
  font-size: 20px;
}

.ceo-photo{
	margin-top: 30px;
}
.ceo-photo img{
  margin-bottom: 10px;
  width: 100%;
}
.ceo-text{
  line-height: 50px;
  font-family: "ヒラギノ角ゴ Pro W6";
  text-align: center;
}
.ceo-text h2{
  font-size: 20px;
  margin-bottom: 40px;
}

.company-message{
  margin-bottom: 70px;
}

.company{
  margin-bottom: 30px;
}
.company{
  text-align: left;
}
.company-prof table{
  border: solid 1px #c0c0c0;
  border-collapse: collapse;
  margin-bottom: 60px;
  margin-top: 40px;
}
.company-prof th{
  width: 33%;
  background-color: #367BB3;
  border: solid 1px #c0c0c0;
 text-align: center;
  color: #fff;
}
.company-prof td{
  border: solid 1px #c0c0c0;
  padding-left: 10px;
  width: 560px;
}
.company-prof tr{
  height: 70px;
}
.company-message{
  margin-bottom: 70px;
}

.company-message h4{
  font-size: 20px;
}
.company-message img{
  width: 100%;
}
.company-title h2{
  text-shadow: 2px 2px 2px #ff0;
}
.history-photo1{
  width: 210px;
  top: 40px;
  right: -250px;
}
.history-photo2{
  width: 250px;
  top: 300px;
  right: -100px;
}
.history-photo3{
  width: 330px;
  top: 590px;
  right: -20px;
}
.history-photo1 img{
  width: 100%;
}
.history-photo2 img{
  width: 100%;
}
.history-photo3 img{
  width: 100%;
}






.to-contact{
  background-color: #eef4fa;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5)inset;
  padding-bottom: 50px;
  padding-top: 60px;
}
.to-contact-all{
  text-align: center;
  font-family: osaka,sans-serif; 
  margin-bottom: 50px;
}
.to-contact-all ul{
  border:solid  3px #351e61;
  width: 95%;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 40px;
}
.to-contact-all li{
  width: 100%;
}
.to-contact-all h3{
  font-size: 30px;
  margin-top: 40px;
  color: #a23c59;
}
.to-contact-button{
  text-align: center;
  padding: 10px 20px;
  background-color: #3ba827;
  color: #fff;
  width: 200px;
  margin: 10px auto;
  border-radius: 20px;        /* CSS3草案 */  
    -webkit-border-radius: 20px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 20px;   /* Firefox用 */
}
.to-contact .textbig{
  font-size: 2em;
  width: 70%;
  margin: 0 auto;
}
.contact-tel{
  font-size: 40px;
}

.in{
  width: 95%;
  margin: 0 auto;
}
.contactform{
  text-align: center;
  font-size: 15px;
  margin-bottom: 40px;
}
.nyuryoku{
  margin:auto;
  margin-top: 30px;
}
.nyuryoku li{
  display: inline-block;
}
.nyuryoku tr{
  height: 70px;
}
.nyuryoku th{
  width: 160px;
  text-align: right;
  padding-right: 70px;
}
.nyuryoku td{
  text-align: left;
}
.square_btn{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #668ad8;/*ボタン色*/
    color: #FFF;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
}
.square_btn:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}
.confirm {
  width: 95%;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 100px;
}
.confirm p{
  line-height: 200%;
}
.confirm h2{
  margin-top: 30px;
}
.textbig{
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.company-message .textbig{
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF1717;
}
.service-me img{
  width: 100%;
  margin-bottom: 20px;
}
.service-l{
  width: 90%;
  margin: 0 auto;
}
.aboutus-center h3{
  text-align: left;
  border-left: solid 7px #177cc2;
  padding-left: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.service-r{
  width: 90%;
  margin: 0 auto;
}
.obi{
  width: 100%;
  background-color: #3c3a39;
  height: 100px;
  text-align: center;
}
.obi h2{
  color: #fff;
  padding-top: 20px;
  font-size: 35px;
}
.w60{
  width: 90%;
  margin: 0 auto;
}
.w60 img{
  width: 100%;
}
.w50{
  width: 90%;
  margin: 0 auto;
}
.w50 img{
  width: 100%;
}
.w50-in{
  padding-top: 40px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  line-height: 40px;
  text-align: left;
}
.w50-in h3{
  font-size: 25px;
  margin-bottom: 20px;
  color: #1c2780;
  text-align: center;
}
.service-three{
  width: 100%;
}
.service-three img{
  width: 100%;
}
.equipment-all img{
  width: 100%;
}
.equipment-all h3{
  text-align: left;
  border-left: solid 7px #a93c59;
  padding-left: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.equipment-text{
  margin-bottom: 35px;
}



.personal-section p{
	margin-bottom: 30px;
}
.privacy{
	margin-bottom: 50px;
}
.privacy-day{
	margin-left: 50%;
}

.section0{
  width: 95%;
  margin: 0 auto;
}

.section0-buttons{
  font-size: 20px;
  margin-bottom: 70px;
  color: #00b1dc;
  text-align: center;
}

.movie{
  width: 90%;
  margin: 90px auto;
}
.movie iframe{
  width: 100%;
  height: 500px;
} 
.text-small{
  font-size: 0.8em;
}
.section1{
  background-image: url(../material/top5.jpg);
  width: 100%;
  background-size: 100% 100%;
  height: 200px;
  position: relative;
  margin-bottom: 90px;
}
.section1-text{
  position: absolute;
  width: 100%;
  top: 60%;
  background-color: rgba(255, 255, 255, 0.7);
  padding-bottom: 20px;
  color: #162347;
  font-family: Impact;
  font-size: 0.8em;
}
.section1-text p{
  color: #ee7800;
  font-size: 1.2em;
}
.section1-link{
  position: absolute;
  right: 5%;
  bottom:20px;
}
.colorch{
  color:#ee7800;
}
.colorch2{
  color:#ee7800;
}