@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%;}

.window{
  position: relative;display: block;width: 100%;
}
.window img{
  width: 100%;
  height: 100%;
  scale: 100%;
  filter: blur(1px);
  text-align: center;
  object-fit: cover;
  position: absolute;
  transform-origin:20% 20% 0;
}
.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, #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
}
.info table{
  max-width: 850px;
  min-width: 400px;
  width: 100%;
  border-collapse: collapse;
}
.info table th{
  height: 60px;
  width: 40%;
  text-align: left;
  color: #303030;
  font-size:20px;
  border-bottom: 2px solid #be900f;
}
.info table td{
  width:60%;
  text-align: left;
  color: #303030;
  font-size:18px;
  border-bottom: 2px solid #be900f;
}
.mes {
  padding: 10px;
  border: 2px solid #000000 ;
  box-shadow: 2px 2px 4px gray;
}
/* タブ */
.tab-wrap {
	background: White;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 0 0 20px;
}

.tab-label {
  background-color: rgba(255, 255, 255,0.9);
	color: Gray;
	cursor: pointer;
	flex: 1;
	font-weight: bold;
	order: -1;
	padding: 12px 24px;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.tab-label:hover {
	background: rgba(0, 191, 255,.1);
  background-color: rgba(255, 255, 255,0.9);
}

.tab-switch:checked + .tab-label {
	color: #ffa927;
}

.tab-label::after {
	background: #ffa927;
	bottom: 0;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}

.tab-switch:checked ~ .tab-label::after {
	transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
	opacity: 1;
	transform: translateX(0);
}

.tab-content {
  background-color: rgba(255, 255, 255, 0.9);
	height:0;
	opacity:0;
  margin-top: -20px;
	padding: 0px 0px;
	pointer-events:none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked ~ .tab-content {
	transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events:auto;
	transform: translateX(0);
}

.tab-wrap::after {
	content: '';
	height: 20px;
	order: -1;
	width: 100%;
}

.tab-switch {
	display: none;
}

@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: #000000;
    background: #ffffff;
    background: linear-gradient(#ffffff, #ffffff); /* グラデーション */
    position: relative;
    padding: 1rem .5rem;
  }
  .info table{
    max-width: 400px;
    min-width: 0px;
    width: 100%;
    border-collapse: collapse;
  }
  .info table th{
    height: 60px;
    width: 40%;
    text-align: left;
    color: #303030;
    font-size:14px;
    border-bottom: 2px solid #be900f;
  }
  .info table td{
    width:60%;
    text-align: left;
    color: #303030;
    font-size:14px;
    border-bottom: 2px solid #be900f;
  }
  .tab-content  table{
    width:100%;
  }
}