@charset "utf-8";
/* CSS Document */

.container{
	width: 100%;
	max-width: 960px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

small{
	font-size: 16px;
}

.coment{
	text-align: center;	
	height: auto;
}
.coment p {
    font-size: 16px;
    line-height: 2;
	padding-bottom: 50px;
}

.contact-table {
  margin: 0 auto;
  border-collapse: collapse; /* セル間の余白をなくす */
  width: 100%;
  max-width: 700px;
}

form .contact-table th,
form .contact-table td {
    font-size: 18px;
	padding-bottom: 20px; /* 行間 */
}

.contact-table th,td {
  text-align: left;
  vertical-align: top;
  padding: 10px 15px;
  width: 30%; /* 横幅を固定 */
  font-weight: 500;
}

.entryBtns{
	margin-top: 20px;
}

.entryBtns input {
    margin-right: 20px; /* ボタンの間隔 */
}

.entryBtns input {
      padding: 2px 12px;   /* ボタン内の余白 */
      font-size: 14px;      
      width: 100px;         /* ボタンの幅 */
      height: 32px;         /* ボタンの高さ */
      cursor: pointer;      /* ホバー時にポインター */
      border: none;
      border-radius: 5px;
      background-color: #176B75;
      color: #f9f9f7;
      transition: background-color 0.3s;
}

.entryBtns input:hover {
	color: #B89B72;
}

/* レスポンシブ */
@media screen and (max-width: 600px) {
  .contact-table,  .contact-table tr, .contact-table th, .contact-table td {
    display: block;
    width: 100%;
  }

  .contact-table th {
    font-weight: bold;
  }

  .contact-table td {
    margin-bottom: 20px;
  }

  .contact-table tr {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
}
