@charset "UTF-8";

.entry-content,
.entry-header{
  width: min(98%,1280px);
  margin: auto;
}

h1.entry-title {
    margin: 1rem auto 1.3rem;
    font-weight: 500;
}

.entry-content h3{
  border: none;
}

form{
	width: 100%;
}
form br{
  display: block;
  content: "";
  margin: 12px auto;
}


/*checkbox*/
label{
  display: block;
  line-height: 1.8;
}

input[type="submit"],
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
button {
  appearance:none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
	border: #999 solid 1px;
  background: #f8f8f8;
  font-size: 1rem;
  width: 100%;
  padding: 12px 15px;
  transition: 0.8s;
  border-radius: 0;
}


input[type="date"]
{
	border: #999 solid 1px;
  background: #f8f8f8;
  font-size: 1rem;
  width: 180px;
  padding: 12px 15px;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="memo"] {
  width: 100%;
  height: 200px;
}


input[name="nenrei"]{
	width: 100px;
}

input[type="tel"],
input[type="email"],
input[name="company"],
input[name="username"],
input[name="furigana"]{
  width: 300px;
}

input[type="submit"]{
	font-size: 1.1rem;
	display: block;
	color: #fff;
	background: #05284d;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 12px 24px;
	margin: 1rem auto;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table {
  border-collapse: collapse;
  border: 2px solid #999;
  width: 100%;
}

.form-table th,
.form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}

.form-table th {
  background: var(--sub-color);
  vertical-align: middle;
  width: 200px;
  font-weight: 400;
  font-size: .9rem;
}

.form-table th span{
	font-size: .8rem;
	color: #fff;
	vertical-align: middle;
	background: red;
	border-radius: 6px;
	padding: .2rem;
	margin-left: .5rem;
}

.doui{
  text-align: center;
  margin: 1rem auto 1.5rem;
}


/*スマートフォン*/
@media only screen and (max-width: 736px) {/*スマホStrat*/




.form-table th,
.form-table td{
  display: block;
  width: 100%;
  border-bottom: none;
}

.form-table th {
  font-size: 1rem;
}

input[type="tel"],
input[type="email"],
input[name="company"],
input[name="username"],
input[name="furigana"]{
  width: 100%;
}
 

}/*スマホEND*/

@media only screen and  (min-width: 737px) and (max-width: 768px) {/*タブレットstart*/




}/*タブレットEND*/

