@charset "UTF-8";
/*=====================================================
*
*	company.css
*
========================================================*/
* {transition:all 0.3s;-webkit-transition:all 0.3s;font-family: 'Roboto', sans-serif;}

/* home block */
.content {position: relative;display: block;width: 100%;}

.header_image {
  top: 180px;
  width: 100%;
  min-width: 880px;
}
.header_image img{
  width: 100%;
  height: 300px;
  scale: 100%;
  text-align: center;
  object-fit: cover;
  position: relative;
}
.header_text{
  position: absolute;
  top: 280px;
  left: 80px;
  width: 300px;
  padding: 10px;
  background-color: rgba(206, 125, 4, 0.7);
}
.header_span_text{
  color: #ffffff;
  font:bold;
  font-size: 25px;
  font-family: sans-serif;
}
.container{
  position: absolute;
  top: 180px;
  width: 100%;
}
.unline h3 {
  clear: both;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #000000;
  background: #ffffff;
  background: linear-gradient(#ffffff, #ffffff); /* グラデーション */
  position: relative;
  padding: 1rem .5rem;
  }
  
.unline h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: linear-gradient(45deg, #ec8e00 0%, #faf38c 50%, #faaa32 90%);
  background-size: 300% 100%;
  -webkit-text-fill-color: transparent;
  animation-name: gradationTextAnimation;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
  
@keyframes gradationTextAnimation{
  0%{
    background-position: 0 0;
  }
  50%{
    background-position: 100% 0;
  }
  100%{
    background-position: 0 0;
  }
}

.header_main{
  display: inline-block;
}
.header_main p{
  font-size: 25px;
}
.header_sub{
  float: right;
}
.header_sub p{
  font-size: 25px;
}
.main_content{
  font-size: 15px;
  color: rgb(37, 37, 37);
}

/*コンテンツ*/
.info{
  padding: 20px;
  margin: auto;
  max-width: 850px;
  min-width: 400px;
}

/* 沿革 */
.company_history{
 width:100% 
}
.company_history table{
  max-width: 850px;
  min-width: 400px;
  border-collapse: collapse;
}
.company_history table th{
  height: 60px;
  width: 40%;
  text-align: center;
  color: #303030;
  font-size:20px;
  border-bottom: 2px solid #4e4e4e;
}
.company_history table td{
  width:60%;
  text-align: left;
  color: #303030;
  font-size:18px;
  border-bottom: 2px solid #4e4e4e;
}

/* 企業概要 */
.company_profile{
  width:100% 
 }
 .company_profile table{
  border-style: none;
  border-collapse: collapse;
 }
 .company_profile table th{
   height: 60px;
   width: 30%;
   background-color: #dddddd;
   border-bottom: 2px solid #4e4e4e;
   color: #303030;
   font-size:20px;
 }
 .company_profile table td{
   border-bottom: 2px solid #4e4e4e;
   color: #303030;
   padding: 10px;
   font-size:18px;
 }
@media (max-width: 767px) {
  .header_image {
    top: 0px;
    width: 100%;
    min-width: 0px;
  }
  .header_image img{
    width: 100%;
    height: 100px;
    scale: 100%;
    text-align: center;
    object-fit: cover;
    position: relative;
  }
  .header_text{
    position: absolute;
    top: 100px;
    left: 20px;
    width: 180px;
    padding: 10px;
    background-color: rgba(206, 125, 4, 0.7);
  }
  .header_span_text{
    color: #ffffff;
    font:bold;
    font-size: 14px;
    font-family: sans-serif;
  }
  .header_main{
    display: inline-block;
  }
  .header_main p{
    font-size: 14px;
  }
  .header_sub{
    float: right;
  }
  .header_sub p{
    font-size: 14px;
  }
  /*コンテンツ*/
  .info{
    margin-top:-40px;
    padding: 20px;
    max-width: 400px;
    min-width: 0px;
    background-color: rgba(255, 255, 255);
    z-index:10000
  }
  .unline h3 {
    clear: both;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    color: #4e4e4e;
    background: #ffffff;
    background: linear-gradient(#ffffff, #ffffff); /* グラデーション */
    position: relative;
    padding: 1rem .5rem;
    }
    .company_history table{
      max-width: 400px;
      min-width: 0px;
      border-collapse: collapse;
    }
    .company_history table th{
      height: 60px;
      width: 40%;
      text-align: center;
      color: #303030;
      font-size:14px;
      border-bottom: 2px solid #4e4e4e;
    }
    .company_history table td{
      width:60%;
      text-align: left;
      color: #303030;
      font-size:12px;
      border-bottom: 2px solid #4e4e4e;
    }
    .company_profile table th{
      height: 60px;
      width: 30%;
      background-color: #dddddd;
      border-bottom: 2px solid #ffffff;
      color: #303030;
      font-size:14px;
    }
    .company_profile table td{
      border-bottom: 2px solid #4e4e4e;
      color: #303030;
      padding: 10px;
      font-size:14px;
    }
}