@charset "UTF-8";
/* CSS Document */
body{
    font-family: Arial, Helvetica, "sans-serif";
    margin-bottom: 5px;
    -webkit-box-shadow: 0px 0px;
    box-shadow: 0px 0px;
    border-top-left-radius: 0px;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    font-size: 10px;
}
#header{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-top: 0px;
}
main{
    width: 95%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
main-logo{
    background-repeat: no-repeat;
    width: 210px;
    height: 75px;
    padding-right: 0px;
    padding-bottom: 0px;
    background-image: url(image/SVG/main-logo.svg);
}
main-logo a{
    display: block;
    text-decoration: none;
    color: hsla(0,0%,0%,1.00);	
}
h1{
    font-size: 9px;
    height: auto;
    width: 99%;
    text-align: right;
}

.open {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: none;
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.open:hover { opacity: 0.8; }

.open span {
  display: block;
  float: left;
  clear: both;
  height: 4px;
  width: 40px;
  border-radius: 40px;
  background-color: #fff;
  position: absolute;
  right: 3px;
  top: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.open span:nth-child(1) {
  margin-top: 10px;
  z-index: 9;
}

.open span:nth-child(2) { margin-top: 25px; }

.open span:nth-child(3) { margin-top: 40px; }

.sub-menu {
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  position: absolute;
  background-color: rgba(38, 84, 133, 0.54);
  border-radius: 50%;
  z-index: 18;
  overflow: hidden;
}

.sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child { margin-top: 180px; }

.sub-menu li:nth-child(1) { -webkit-transition-delay: 0.05s; }

.sub-menu li:nth-child(2) { -webkit-transition-delay: 0.10s; }

.sub-menu li:nth-child(3) { -webkit-transition-delay: 0.15s; }

.sub-menu li:nth-child(4) { -webkit-transition-delay: 0.20s; }

.sub-menu li:nth-child(5) { -webkit-transition-delay: 0.25s; }

.sub-menu li a {
  color: #fff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 40px;
}

.oppenned .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}

.oppenned span:nth-child(2) { overflow: visible; }

.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
  z-index: 100;
  transform: rotate(45deg);
}

.oppenned span:nth-child(1) { transform: rotate(45deg) translateY(12px) translateX(12px); }

.oppenned span:nth-child(2) {
    height: 400px;
    width: 400px;
    right: -160px;
    top: -160px;
    border-radius: 50%;
    background-color: rgba(71,156,246,0.72);
}

.oppenned span:nth-child(3) { transform: rotate(-45deg) translateY(-10px) translateX(10px); }

.oppenned li { margin-right: 168px; }



.hero{
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
nav{
    height: auto;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
 
.inner{
    margin-top: 23px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    width: 95%;
    height: auto;
}
nav>.flex{
    align-items: center;
    height: auto;
}
.flex {
    display: flex;
    justify-content: space-between;
    height: 0vh;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.flex li a:hover{
    color: rgba(59,165,236,1.00);
}
.flex li{
    margin-left: 30px;
    list-style: none;
    font-size: 25px;
}
.logo{
    width: 25%;
    display: block;
}
.logo img{
    width: 100%;
    display: block;
}
.logo a{
 display: block;
 color:white;
 font-size:20px;
 font-weight:bold;
} 
li a{
    color: hsla(0,0%,0%,1.00);
    text-decoration: none;
}

#box-hero {
    width: 80%;
    height: auto;
    padding-left: 0%;
    position: absolute;
    top: 25vw;
    left: 10vw;
    margin-left: 0px;
}
#box-hero p{
    font-size: 8vw;
    color: hsla(0,0%,100%,1.00);
    margin-top: 0px;
    margin-bottom: -2px;
    width: 100%;
    animation-name: fade-in3;
    animation-duration: 8s; /*アニメーション時間*/
    animation-timing-function: ease-out; /*//アニメーションさせるイージング*/
    animation-delay: 0s;/* //アニメーション開始させる時間*/
    animation-iteration-count: 1;/* //繰り返し回数*/
    animation-direction: normal; /*//往復処理をするかどうか*/
    animation-fill-mode: forwards;/* //アニメーション後のスタイルをどうするか*/
    top: auto;
}
/* // アニメーション*/
@keyframes fade-in3 {
  0% {opacity: 0; transform: translate3d(0,20px,0);}
  100% {opacity: 1; transform: translate3d(0,0,0);}
}

#box-hero ul{
    width: 100%;
    height: auto;
    padding-left: 0px;
    animation-name: fade-in3;
    animation-duration: 6s; /*アニメーション時間*/
    animation-timing-function: ease-out; /*//アニメーションさせるイージング*/
    animation-delay: 0s;/* //アニメーション開始させる時間*/
    animation-iteration-count: 1;/* //繰り返し回数*/
    animation-direction: normal; /*//往復処理をするかどうか*/
    animation-fill-mode: forwards;/* //アニメーション後のスタイルをどうするか*/
}
/* // アニメーション*/
@keyframes fade-in3 {
  0% {opacity: 0; transform: translate3d(0,20px,0);}
  100% {opacity: 1; transform: translate3d(0,0,0);}
}

#box-hero li{
    color: hsla(0,0%,100%,1.00);
   list-style-type: square;
    text-align: left;
    margin-left: 0px;
    font-size: 2vw;
    margin-bottom: 15px;
}
section{
    width: 100%;
}

#work{
    width: 100%;
    height: auto;
}
#companypro{
    width: 100%;
    height: auto;
}
h2 {
    margin-bottom: 0px;
    font-size: 24px;
    width: 50%;
    padding-left: 10px;
    padding-top: 10px;
}
#work p {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    font-size: 12px;
    margin-left: 10px;
    width: 70%;
}
#companypro p {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    font-size: 15px;
    margin-left: 10px;
    width: 70%;
}

.row{
    width: 100%;
    margin-top: 3%;
    height: auto;
}

.row-02{
    width: 100%;
    margin-top: 3%;
    height: auto;
    background-image: url(image/144ppi/bg-001@144x.png);
    background-size: cover;
    padding-bottom: 0px;
}
.row-02 p{
    color: #FFFFFF;
    padding-left: 10px;
    font-size: 15px;
    width: 50%;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 5px;
}
.col{
    display: inline-block;
    width: 29%;
    text-decoration: none;
    list-style: none;
    margin-bottom: 5%;
    font-family: "Courier New", Courier, monospace;
    background-position: 0% 0%;
    clear: none;
    margin-left: 2%;
    margin-right: 2%;
}
.col-02{
    width: 45.8%;
    text-decoration: none;
    list-style: none;
    margin-bottom: 5%;
    font-family: "Courier New", Courier, monospace;
    background-position: 0% 0%;
    margin-left: 2%;
    margin-right: 2%;
    height: auto;
    padding-right: 0%;
    padding-left: 0%;
    padding-top: 5%;
    display: inline-block;
    background-color: rgba(255,255,255,0.15);
}
.col-02 p{
    color: #FFFFFF;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 25px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 20px;
}
.col-02 a{
    display: block;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.col:hover{
    background-color: rgba(62,169,245,1.00);
    padding-top: 0px;
}

 .text-box{
	 margin-right: auto;
    background-color: hsla(0,0%,100%,0.70);
    width: 100%;
    height: auto;
    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    display: block;
}
.item{
    height: auto;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
}
.item-02{
    height: auto;
    width: 30%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-left: auto;
    margin-right: auto;
    display: block;

}
.item-03{
    height: auto;
    width: 30%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.btn-001{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.btn-001 a{
    background-color: #848484;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    width: 20%;
    height: 30px;
    display: block;
    color: #FFFFFF;
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border-radius: 30px;
}
.btn-001 a:hover{
    background-color: #0053A4;
    color: rgba(255,255,255,1.00);
}
#contact{
    width: 100%;
    height: auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
#companypro-tab{
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 17px;
}
table{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-color: #3FA9F5;
     font-size: 16px;
}
tr{
	width: 100%;
	height: 50px;

}
th{
    width: 30%;
    font-size: 14px;
}
footer{
    width: 100%;
	height: auto;
    text-align: center;
	
}

@media (max-width: 959px){

	h1{
    font-size: 9px;
    text-align: right;
    height: auto;
    width: 99%;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0px;
}
	
	.logo{
    width: 45%;
    display: block;
}
.logo img{
    width: 100%;
    display: block;
}
.logo a{
 display: block;
 color:white;
 font-size:20px;
 font-weight:bold;
} 
	.open {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.open:hover { opacity: 0.8; }

.open span {
    display: block;
    float: left;
    clear: both;
    height: 4px;
    width: 40px;
    border-radius: 40px;
    background-color: #000000;
    position: absolute;
    right: 3px;
    top: 3px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.open span:nth-child(1) {
    margin-top: 12px;
    z-index: 9;
}

.open span:nth-child(2) { margin-top: 25px; }

.open span:nth-child(3) { margin-top: 40px; }

.sub-menu {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 0;
    width: 0;
    right: 0;
    top: 0;
    position: absolute;
    background-color: rgba(107,181,255,0.54);
    border-radius: 50%;
    z-index: 18;
    overflow: hidden;
}

.sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child { margin-top: 180px; }

.sub-menu li:nth-child(1) { -webkit-transition-delay: 0.05s; }

.sub-menu li:nth-child(2) { -webkit-transition-delay: 0.10s; }

.sub-menu li:nth-child(3) { -webkit-transition-delay: 0.15s; }

.sub-menu li:nth-child(4) { -webkit-transition-delay: 0.20s; }

.sub-menu li:nth-child(5) { -webkit-transition-delay: 0.25s; }

.sub-menu li a {
  color: #fff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 40px;
}
	.sub-menu li a:hover{
    color: rgba(0,0,0,1.00);
    
	}

.oppenned .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}

.oppenned span:nth-child(2) { overflow: visible; }

.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
  z-index: 100;
  transform: rotate(45deg);
}

.oppenned span:nth-child(1) { transform: rotate(-45deg) translateY(10px) translateX(-2px); }

.oppenned span:nth-child(2) {
    height: 400px;
    width: 400px;
    right: -160px;
    top: -160px;
    border-radius: 50%;
    background-color: rgba(62,169,245,1.00);
}

.oppenned span:nth-child(3) { transform: rotate(45deg) translateY(10px) translateX(18px); }

.oppenned li { margin-right: 168px; }
	
	.inner{
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
nav>.flex{
    align-items: center;
    height: auto;
}
.flex {
    display: flex;
    justify-content: space-between;
    height: auto;
    width: 100%;
}
.flex li{
    margin-left: 30px;
    list-style: none;
    font-size: 25px;
	display: none;
}
	.logo{
    width: 30%;
    display: block;
    background-position: 0% 0%;
}
.logo img{
    width: 100%;
    display: block;
    margin-left: 0px;
}
.logo a{
 display: block;
 color:white;
 font-size:20px;
 font-weight:bold;
} 
#box-hero {
    width: 80%;
    height: auto;
    padding-left: 0%;
    position: absolute;
    top: 27vw;
    left: 10vw;
    margin-left: 0px;
}

#box-hero p{
    font-size: 8vw;
    color: hsla(0,0%,100%,1.00);
    margin-top: 0px;
    margin-bottom: -2px;
    width: 100%;
}
#box-hero ul{
    width: 100%;
    height: auto;
    padding-left: 0px;
	
   
}
#box-hero li{
    color: hsla(0,0%,100%,1.00);
    list-style-type: square;
    text-align: left;
    margin-left: 0px;
    font-size: 2vw;
}
.col{
    width: 43.5%;
    display: inline-block;
    text-decoration: none;
    list-style: none;
    margin-bottom: 5%;
    font-family: "Courier New", Courier, monospace;
    background-position: 0% 0%;
    height: auto;
    clear: none;
    margin-left: 3%;
    margin-right: 3%;
}
.col-02{
    width: 70%;
    text-decoration: none;
    list-style: none;
    margin-bottom: 2%;
    font-family: "Courier New", Courier, monospace;
    background-position: 0% 0%;
    height: auto;
    border: 1px solid #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-bottom: 0%;
}
.col-02 p{
    color: #FFFFFF;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 18px;
    text-align: center;
    padding-top: 0px;
    padding-left: 0px;
    width: 100%;
}
.col-02 a{
    display: block;
    font-size: 18px;
    color: #FFFFFF;
    font-family: "Arial Black", Gadget, sans-serif;
    text-decoration: none;
    text-align: center;
    height: auto;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}


	.row-02{
    width: 100%;
    margin-top: 3%;
    height: auto;
    background-image: url(image/144ppi/bg-001@144x.png);
    background-size: cover;
    padding-bottom: 2%;
}
.row-02 p{
    color: #FFFFFF;
    padding-left: 10px;
    font-size: 12px;
    width: 70%;
    padding-bottom: 10px;
    padding-right: 10px;
}
 h2{
    padding-top: 5px;
    width: 50%;
    padding-left: 5px;
    font-size: 17px;
}
	.btn-001{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.btn-001 a{
    background-color: #8D8B8B;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    width: 25%;
    height: 20px;
    display: block;
    color: #FFFFFF;
    font-size: 15px;
    text-align: center;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}
	.item-02{
    height: auto;
    width: 20%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.item-03{
    height: auto;
    width: 20%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
	#contact{
    width: 100%;
    height: auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
#companypro-tab{
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    
}
table{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-color: #3FA9F5;
    font-size: 14px;
}
tr{
	width: 100%;
	height: 50px;

}
th{
    width: 30%;
    font-size: 14px;
}
}

@media (max-width: 480px){
	h1{
    font-size: 9px;
	}
	
		.open {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.open:hover { opacity: 0.8; }

.open span {
    display: block;
    float: left;
    clear: both;
    height: 4px;
    width: 40px;
    border-radius: 40px;
    background-color: #000000;
    position: absolute;
    right: 3px;
    top: 3px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.open span:nth-child(1) {
    margin-top: 12px;
    z-index: 9;
}

.open span:nth-child(2) { margin-top: 25px; }

.open span:nth-child(3) { margin-top: 40px; }

.sub-menu {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 0;
    width: 0;
    right: 0;
    top: 0;
    position: absolute;
    background-color: rgba(107,181,255,0.54);
    border-radius: 50%;
    z-index: 18;
    overflow: hidden;
}

.sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child { margin-top: 180px; }

.sub-menu li:nth-child(1) { -webkit-transition-delay: 0.05s; }

.sub-menu li:nth-child(2) { -webkit-transition-delay: 0.10s; }

.sub-menu li:nth-child(3) { -webkit-transition-delay: 0.15s; }

.sub-menu li:nth-child(4) { -webkit-transition-delay: 0.20s; }

.sub-menu li:nth-child(5) { -webkit-transition-delay: 0.25s; }

.sub-menu li a {
  color: #fff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 40px;
}
	.sub-menu li a:hover{
    color: rgba(0,0,0,1.00);
    
	}

.oppenned .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}

.oppenned span:nth-child(2) { overflow: visible; }

.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
  z-index: 100;
  transform: rotate(45deg);
}

.oppenned span:nth-child(1) { transform: rotate(-45deg) translateY(10px) translateX(-2px); }

.oppenned span:nth-child(2) {
    height: 400px;
    width: 400px;
    right: -160px;
    top: -160px;
    border-radius: 50%;
    background-color: rgba(62,169,245,1.00);
}

.oppenned span:nth-child(3) { transform: rotate(45deg) translateY(10px) translateX(18px); }

.oppenned li { margin-right: 168px; }
	
	.inner{
 max-width:100%;
 margin:0 auto;
 width:95%;
height: auto;
}
nav>.flex{
    align-items: center;
    height: auto;
}
.flex {
    display: flex;
    justify-content: space-between;
    height: auto;
}
.flex li{
    margin-left: 30px;
    list-style: none;
    font-size: 25px;
	display: none;
}
	.logo{
    width: 40%;
    display: block;
}
.logo img{
    width: 100%;
    display: block;
}
.logo a{
 display: block;
 color:white;
 font-size:20px;
 font-weight:bold;
} 
	
#box-hero {
    width: 80%;
    height: auto;
    padding-left: 0%;
    position: absolute;
    top: 35vw;
    left: 10vw;
    margin-left: 0px;
}

#box-hero p{
    font-size: 8vw;
    color: hsla(0,0%,100%,1.00);
    margin-top: 0px;
    margin-bottom: -2px;
    width: 100%;
}
#box-hero ul{
    width: 100%;
    height: auto;
    padding-left: 0px;
	
}
#box-hero li{
    color: hsla(0,0%,100%,1.00);
    list-style-type: square;
    text-align: left;
    margin-left: 0px;
    font-size: 2vw;
    margin-bottom: 5px;	
	
	
}
	.col{
    width: 44.9%;
    display: inline-block;
    text-decoration: none;
    list-style: none;
    margin-bottom: 5%;
    font-family: "Courier New", Courier, monospace;
    background-position: 0% 0%;
    height: auto;
    clear: none;
    margin-left: 2%;
    margin-right: 2%;
}
	.col-02{
    width: 80%;
    text-decoration: none;
    list-style: none;
    margin-bottom: 5%;
    font-family: "Courier New", Courier, monospace;
    background-position: 0% 0%;
    height: auto;
    border: 1px solid #FFFFFF;
    padding-top: 5%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.col-02 p{
    color: #FFFFFF;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 12px;
    text-align: center;
}
.col-02 a{
    display: block;
    width: 100%;
    height: auto;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

	.row-02{
    width: 100%;
    margin-top: 3%;
    height: auto;
    background-image: url(image/144ppi/bg-001@144x.png);
    background-size: cover;
}
.row-02 p{
    color: #FFFFFF;
    padding-left: 2%;
    font-size: 12px;
}
 h2{
    padding-left: 2%;
    padding-top: 5px;
    font-size: 15px;
}
	.btn-001{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.btn-001 a{
    background-color: #8A8A8A;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    width: 30%;
    height: 15px;
    display: block;
    color: #FFFFFF;
    font-size: 13px;
    text-align: center;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-left: 10px;
}
	.item-02{
    height: auto;
    width: 15%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.item-03{
    height: auto;
    width: 15%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0%;
    padding-right: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
	#contact{
    width: 100%;
    height: auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
#companypro-tab{
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    
}
table{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-color: #3FA9F5;
    font-size: 14px;
}
tr{
	width: 100%;
	height: 50px;

}
th{
    width: 35%;
    font-size: 12px;
}
}
