
#contents h1 .bg-fixed {
  background-image: url("../img/contact/h1bg.jpg");
}



input[type="text"], input[type="email"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.5em 1em;
  margin: 2px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: none;
  outline: none;
  background: #F7F9FF;
}

input[type="checkbox"] {
}


textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 80px;
}

textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: none;
  outline: none;
}

select {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 0.2em 0.8em;
  box-sizing: border-box;
}

select:focus {
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: none;
  outline: none;
}

/** resetEnd **/

.attention {
  font-size: 0.8em;
  color: #FF0000;
}

.jQuery_form_error {
	background-color:#FFEFEF !important;
}

.error_msg_box {
	color:#C00;
	font-weight:normal;	
	background-color:#FFF6F6;
	border:3px double #FFD7D7;
  margin:20px auto;
  width:700px;
	padding: 15px 50px;
  box-sizing:border-box;
  font-size: 0.85em;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .error_msg_box {
    width: 100%;
    padding: 5%;
    margin: 0 auto 20px auto;
  }
}

.announce_msg_box {
	color:#1C9200;
	font-weight:bold;	
	background-color:#D9F3EA;
	border:3px double #98CCB9;
  margin:20px auto;
  width:700px;
	padding: 15px 50px;
  box-sizing:border-box;
  font-size: 0.85em;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .announce_msg_box {
    width: 100%;
    padding: 5%;
    margin: 0 auto 20px auto;
  }
}


.information {
  width:100%;
  border:8px solid #DFDFDF;
  background:#EDEDED;
  margin: auto;
  padding:50px 50px 20px 50px;
  box-sizing:border-box;
  text-align:center;
  box-sizing:border-box;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .information {
    width:95%;
    border:5px solid #DFDFDF;
    background:#EDEDED;
    margin:auto;
    padding:20px 10px 5px 10px;
    box-sizing:border-box;
    text-align:center;
  }
}

.information dt {
  margin:0 0 1.5em 0;
  padding:0;
  font-weight:bold;
  font-size:1.5em;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .information dt {
    margin:0 0 1em 0;
    padding:0;
    font-weight:bold;
    font-size:1.3em;
  }
}

.information dd {
  margin:0 0 1.5em 0;
  padding:0;
  text-align:left;
}

.information dd.linkArea {
  text-align:center;
}

.mailform {
  width: 100%;
  margin: auto;
  background: #FFF;
  border: 5px solid #E7E7E7;
  margin-bottom:20px;
  box-sizing: border-box;
  padding: 50px;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .mailform {
    width: auto;
    padding: 5%;
  }
}

.mailform table {
  width:100%;
  margin-bottom:20px;
  border: none;
  border-collapse: separate;
  border-spacing: 3px;
}

.mailform table th {
  width: auto;
  padding: 1em;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  width: 17em;
  border: none;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .mailform table th {
    display: block;
    width: auto;
    padding: 0;
    margin-top: 1.2em;
    margin-bottom: 0.3em;
  }
}

.mailform table th::before {
  content: "■";
  display: inline;
  color: #000;
  padding-right: 0.5em;
}


.mailform table th.required::after {
  content: "必須";
  background: #FFF;
  padding: 0.2em 0.5em;
  font-size: 0.6em;
  color: #D7001D;
  margin-left: 1.5em;
  border: 1px solid #D7001D;
}
#en .mailform table th.required::after {
  content: "required";
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .mailform table th.required {
  }
}

.mailform table td {
  width:auto;
  padding: 1em;
  border: none;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .mailform table td {
    display:block;
    width:auto;
    box-sizing: border-box;
    padding: 0;
  }
}

.mailform table .radioList {
  overflow:hidden;
}

.mailform table .radioList label {
  margin: 3px 0;
  padding: 0;
  float: left;
  width: 6em;
  display: inline-block !important;
  white-space: nowrap;
}
#en .mailform table .radioList label {
  width: auto;
  margin-right: 1em;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .mailform table .radioList label {
    white-space:nowrap;
  }
}

.inputSmall {
  width: 35%;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .inputSmall {
  }
}

.inputMedium {
  width: 50%;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .inputMedium {
    width: 75%;
  }
}

.inputLarge {
  box-sizing: border-box;
  width: 80%;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .inputLarge {
    width: 95%;
  }
}

.textareaLarge {
  width:98%;
  height:8em;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .textareaLarge {
  }
}

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

.button {
  margin: 50px auto 0 auto;
  text-align: center;
}

.button input {
  display: inline-block;
  border-radius: 1.5em !important;
  background: #000;
  color: #FFF;
  text-align: center;
  transition: all .30s ease;
  padding: 1em 2em;
  border: none !important;
}
@media only screen and (max-width: 640px) { /** forMobile **/
  .button input {
  }
}


.button input:hover {
  transition: all .30s ease;
  opacity: 0.7;
}