@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(0, 0, 0, 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, #be900f 0%, #ffdf86 50%, #f8c22d 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;
  background-color: rgba(255, 255, 255);
  z-index:10000
}

.thumbnailspan{
  display:inline-block;
  width:200px;
  height: 200px;
  padding: 5px;
  background:#FFF;
  text-align: center;
}
.thumbnailspan img{
  width: 100%;
}
@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 p{
		font-size: 14px;
	}
	.header_sub{
		float: right;
	}
	.header_sub p{
		font-size: 14px;
	}
	.main_content{
		font-size: 14px;
		color: rgb(37, 37, 37);
	}
	/*コンテンツ*/
	.info{
		margin-top:-30px;
		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: #000000;
		background: #ffffff;
		background: linear-gradient(#ffffff, #ffffff); /* グラデーション */
		position: relative;
		padding: 1rem .5rem;
	}
}