
@charset "utf-8";
/*--------------------全体のコンテンツ----------------*/
.contents {
	clear: both;
    overflow: hidden;
	padding-top: 0px;		/*上に空けるボックス内の余白*/
	padding-bottom: 40px;	/*下に空けるボックス内の余白*/
	margin:0 auto;
    width:100%;
}

/*---------------------画面トップ------------------------------*/
.img-frame{
    position: relative;
    width: 90%;
    height: 32vh;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 25px;
 }
 .img-frame::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
 }
 .buil01{
    position: absolute;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/data.jpg');
 }

 @media screen and (max-width: 1024px){
    .img-frame{
       width: auto;
       height: 200px;
    }
}

 @media screen and (max-width: 767px){
    .img-frame{
       width: 100%;
       height: 250px;
    }
}


/*========= テキストを滑らかに出現させるためのCSS ===============*/
.company {
	position: absolute;
	bottom:-10%;
	left:10%;
    color: #fff;
    font-size: 5vw;
	font-family: BIZ UDゴシック;
    text-shadow:2px 2px 2px rgba(0, 0, 0, .5);
	background-color: #79a6c4;
	padding: .5% 2%;
    line-height: 1.5;
    
}

.company2 {
	position: absolute;
	bottom:-25%;
	left:10%;
    color: #fff;
    font-size: 1.5vw;
	font-family: BIZ UDゴシック;
    text-shadow:2px 2px 2px rgba(0, 0, 0, .5);
	background-color: #79a6c4;
	padding: .5% 2%;
    z-index:999;
}

@media screen and (max-width: 767px){
    .company {
        font-size: 3rem;
        left:0;
        padding: 0 5%;
    }
	.company2 {
        font-size: 1rem;
        bottom:-25%;
        left:0;
        padding: 1% 5%;
    }
}


@media screen and (max-width: 767px){
    .company {
        font-size: 3rem;
        left:0;
        padding: 0 5%;
    }
	.company2 {
        font-size: 1rem;
        bottom:-25%;
        left:0;
        padding: 1% 5%;
    }
}

span.smoothText {
    overflow: hidden;
    display: block;
}
  
/* アニメーションで傾斜がついている文字列を水平に戻す*/
span.smoothTextTrigger{
    transition: .8s ease-in-out;
    transform: translate3d(0,100%,0) skewY(40deg);
    transform-origin: left;
    display: block;
}
span.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0) skewY(0);
}

  
/* ----------アイコンが左から表示---------------- */

.col-thumb{
    filter:drop-shadow(0 3px 3px rgba(0, 10, 10, .3));
}

.sample {
  	overflow: hidden;
  	position: relative;
}
@keyframes sample-one {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(24px);
  }

  32% {
    opacity: 0;
    transform: scale(1.5) translateY(24px);
  }
}

.sample-second.sample-animation {
  animation: sample-second-img 2s cubic-bezier(.4, 0, .2, 1);
}

.sample-second.sample-animation:before {
  animation: sample-second-before 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes sample-second-img {
  0% {
    opacity: 0;
  }
}

@keyframes sample-second-before {
  100% {
    transform: translateX(100%);
  }
}



/*-------------------各データの幅設定----------------*/

#working{
	position:relative;
    margin:3em auto 0;
    padding:5% 0;
    width:100%;
}

.col-b{
	justify-content: space-around;
    width:90%;
    margin:auto;
}

.col-b .col1 {
    float: left;
    margin: 1%;
    padding:.5%;
    background:#fff;
}
 
.col-b .col1 {
    width: 45%;
}
.col-b .col2 {
    margin: 1% auto;
    padding:.5%;
    background:#fff;
}
.col-b .col2 {
    width: 90%;
}

.col-b .col3 {
    float: right;
    margin: 1%;
    padding:.5%;
    background:#fff;
}
.col-b .col3 {
    width: 54%;
}

.col-b .col4 {
    float: left;
    margin: 1%;
    padding:.5%;
    background:#fff;
}
.col-b .col4 {
    width: 30%;
}

.col-b span {
    border:#ddd solid 1px;
    border-width:0 2px 0 0;
}

/*floatの解除*/
.col-b:after {
    content: '';
    display: block;
    clear: both;
    'height: 0;
}

@media only screen and (max-width : 767px){
    .col-b .col{
        float: none;
        margin-left: 0;
        margin-bottom:1px;
        width: auto; /*幅は横いっぱい*/
    }
}


/*------------------------画面幅800px以下の設定---------------------------------*/
@media screen and (max-width:767px){
.col-b{
	justify-content: space-around;
    width:100%;
    margin:auto;
}

.col-b .col {
    float: left;
    margin: 2%;
    padding:.5%;
    background:#fff;
    border-radius:5%;
}
 
.col-b .col {
    width: 45%;
}
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

.contents{
	width:100%;
	padding-top: 30px;		/*上に空けるボックス内の余白*/
	padding-bottom: 20px;	/*下に空けるボックス内の余白*/
}
}
