@charset "UTF-8";
/* CSS Document */

* {
margin: 0;
padding: 0;
}







/*コンセプト*/

.concept{
	font-size: 1.2rem;
	line-height: 2rem;
	margin-top: 200px;
}
.concept h2{
	color: #fff;
	font-size: 2.5rem;
	
}
.concept p{
	text-align: center;
	line-height: 2.5em;
 	margin:30px 0;
}
@media screen and (max-width: 900px){
	.concept p{
		font-size:1rem;
		margin-bottom: 20px;
	}
	.concept h2{
		font-size: 1.5rem;
	}
}


/*会社概要*/
.wrapper img{
	width: 50%;
	object-fit: cover;
	height: 40vh;
}
.table_design03 {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
	margin: 0 auto;
	margin-bottom: 100px;
}
.table_design03 th, .table_design03 td {
  border-bottom: 2px solid #c1c7c6;
  padding: 1em;
	text-align: left;
}
.table_design03 th {
  border-bottom: 2px solid #E7F07B;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
	font-size: 1.4rem;
}
.table_design03 td{
	font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {
	.wrapper img{
	width: 80%;
	
		
	}
}

@media screen and (max-width: 768px) {
	.wrapper img{
	width: 80%;
		
}
  .table_design03 {
    border-collapse: collapse; /* 元の設定を維持 */
  }
  .table_design03 tr {
    display: block; /* 行をブロックとして表示 */
    margin-bottom: 1em; /* 行間に余白を追加 */
  }
  .table_design03 td {
    display: block; /* 各セルを縦に並べる */
    width: 100%; /* 幅を100%に設定 */
    text-align: left; /* テキストの位置を左寄せに */
    padding: 1em; /* 元の余白設定を維持 */
    border-bottom: 2px solid #c1c7c6; /* 元の罫線を維持 */
  }

  .table_design03 th {
	  text-align: left;
    font-weight: bold; /* 強調を維持 */
	  width: 150px;
  }
}



.map{
    margin:0 auto 100px;
	min-width: 70%;
	width: 100%;
    position: relative;
	max-width: 400px;
}
    .map iframe{
      
    top: 0;
    left: 0;
    width: 80%;
    height: 50vh;
    }
@media screen and (max-width: 768px) {
	.map{
		max-width: 80%;
	}
}




.button{
 border-radius: 30px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #BCEC85, #9AD972);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
	margin-bottom: 100px;
	text-decoration: none;
	color: #4d4d4d;
}


.button:hover {
  background: linear-gradient(135deg, #9AD972, #BCEC85);
  color: #fff;
  transform: translateY(-4px); /* ホバー時に少し浮き上がる動き */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}