@charset "utf-8";

.entry__container {
  max-width: 1000px;
  margin: 15px auto 0;
}

.contact__container {
  max-width: 1000px;
  margin: 0 auto;
}

/* 表組みの設定 */
.entryTable {
  width: 100%;
  margin-bottom: 30px;
  border: 2px solid rgb(213, 241, 197);
  border-collapse: collapse;
}
.entryTable th,
.entryTable td {
  padding: 15px 20px;
  border: 1px solid rgb(213, 241, 197);
  line-height: 1.5;
}
.entryTable th {
  width: 50%;
  /* width: 52%; */
  /* width: 35%; */
  background-color: rgb(236, 247, 230);
  text-align: left;
}
.contact__container .entryTable th {
  width: 25%;
}
@media screen and (max-width: 767px),print {
  .entryTable tr {
    display: flex;
    flex-direction: column;
  }
  .entryTable th,
  .contact__container .entryTable th {
    width: 100%;
    border-bottom: none;
  }
  .mwform-tel-field .tel {
    width: 72px !important;
  }
}
.entryTable input {
  /* margin-left: 1em; */
  /* padding-left: 5px; */
}
.entryTable label + input[type="radio"],
.entryTable label + label {
	margin-left: 0.5em;
}
.entryTable caption {
  margin-bottom: 10px;
}

/* 入力フォームの設定 */
.entryTable input[type="text"],
.entryTable input[type="email"],
.entryTable textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1em;
}
.entryTable input[type="text"]:focus,
.entryTable input[type="email"]:focus,
.entryTable textarea:focus {
  background-color: #ffffee;
  outline: none;
  border-left: 5px solid rgb(213, 241, 197);
}

/* カーソル形状 */
label,
input,
textarea,
select {
  cursor: pointer;
}

/* ボタンの設定 */
.entryBtns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

/* ボタンの基本スタイル */
.entryBtns input {
  width: 200px;
  margin: 0 10px;
  padding: 10px;
  background: #fff;
  border: 2px solid rgb(213, 241, 197);
  border-radius: 10px;
  font-size: 1em;
  text-align: center;
  -webkit-appearance: none;
}

/* 送信ボタン用のスタイル */
.entryBtns input[type="submit"] {
  background: rgb(213, 241, 197);
}

/* ボタンにマウスが乗った時 */
.entryBtns button:hover,
.entryBtns input:hover {
  opacity: 0.7;
}

.entryBtns input {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .entryBtns {
    flex-direction: column;
    align-items: center;
  }
  .entryBtns input {
    margin-top: 10px;
  }
}
.btn-back {
  display: inline-block;
  display: block;
  width: 200px;
  margin: 0 10px;
  padding: 10px;
  background: #fff;
  border: 2px solid rgb(213, 241, 197);
  border-radius: 10px;
  font-size: 1em;
  -webkit-appearance: none;
}
