
.form_style {
  width:100%;
  padding: 0;
  box-sizing: border-box;
  margin:0 auto 30px;
}

.form_style > div {
    width: 100%;
    margin: 0 auto;
    background: #FFF;
    border-radius: 10px;
    padding: 20px 20px 0;
    box-sizing: border-box;
}

.form_style > div > h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
	margin-bottom:20px;
}

.form_style > div > h3:after {
    content: "";
    display: block;
    width: 63px;
    height: 2px;
    margin: 10px auto 0;
    background: #000066;
}

.form_style .head_txt {
    font-size: 1.4rem;
	margin-bottom:20px;
}
.form_style .head_txt b {
	font-weight:normal;
}

.form_style .head_txt .tel a {
	text-decoration: none;
	color: #111;
}

.form_style dl {
}


.form_style dl dt {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1em;
}

.form_style dl dt.required:after{
    content: "必須";
    display: inline-block;
    font-size: 1rem;
    margin-left:10px;
    color: #FFF;
    background: #ED2929;
    padding: 4px 6px;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 5px;
    vertical-align: top;
}

.form_style dl dd {
    margin-bottom: 9px;
    padding: 0 0 15px;
    border-bottom: #CCC 1px dashed;
    font-size: 1em;
}

.form_style dl dd.multiple {
	display:flex;
	justify-content:space-between;
}

.form_style dl dd:last-child{
    margin-bottom: 0;
}

.form_style dl dd + dd {
	display: none;
}


.form_style.confirm dl dt {
  margin-bottom: 5px;
}

.form_style.confirm dl dt span {
    font-weight: bold;
}

.form_style.confirm dl dd {
  padding-bottom:20px;
  border-bottom:#534741 1px dashed;
}

.form_style dl dd label + input + label input{
  margin-left: 15px;
  display:inline-block;
  margin-top: 15px;
}

.form_style dl + a {
    display:block;
    text-decoration:underline;
    margin:30px auto 0;
	color:#111;
}

.form_style dl + a + label {
    display:inline-block;
    margin-top:15px;
	font-size:1.3rem;
}

.form_style dl + a + label span {
    text-decoration:underline;
}


/*-- ▼input_style --*/

.form_style input[type="submit"],
.form_style input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

/*.form_style input:not[type="radio"],*/
.form_style input[type="text"],
.form_style input[type="email"],
.form_style textarea {
   /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Then Style */
    border-radius:0;
    border:none;
    padding:0;
    background: transparent;
    outline: none;  

}

.form_style input[type="text"],
.form_style input[type="email"],
.form_style input[type="tel"],
.form_style textarea {
	width:100%;
	border: 1px #f2f2f2 solid;
	padding:8px 10px;
	font-size:1.6rem;
	box-sizing:border-box;
	background:#f2f2f2;
	transition: all 300ms 0s ease;
	border-radius: 6px;        /* CSS3草案 */  
	line-height: 1.6;
}

.form_style dl dd.multiple.line2 input {
	width:calc((100% - 4vw) / 2);
}

.form_style dl dd.multiple.line3 input {
	width:calc((100% - 8vw) / 3);
}

.form_style input[type="text"]:hover,
.form_style input[type="email"]:hover,
.form_style input[type="tel"]:hover,
.form_style textarea:hover,
.form_style input[type="text"]:focus,
.form_style input[type="email"]:focus,
.form_style input[type="tel"]:focus,
.form_style textarea:focus {
	border: 1px #FF6700 solid;
 background:#fff;

}

.form_style textarea {
  font-size:1.6rem;
  height:15em;
}

.form_style input[type="submit"],
.form_style input[type="button"] {
  width:80%;
  max-width:480px;
  margin:20px auto 0;
  color:#fff;
  display:block;
  background:#666;
  font-size:1.8rem;
  font-weight:bold;
  border-radius:25px;
  padding:10px 0;
  box-sizing:border-box;
  font-family:'Noto Sans JP', sans-serif;
}

.form_style input[type="button"] {
  margin:40px auto 0;
}

.form_style input[type="submit"] + input[type="button"] {
  margin:15px auto 0;
}

.form_style input + span {
	display:block;
	margin-top:8px;
	font-size:1.2rem;
}

.form_style .important_set {
	display:block;
	margin-top:15px;
	font-size:1.2rem;
}

.form_style .confirmation {
  font-size:1.4rem;
  margin-bottom:25px;
}

.form_style .submit-file {
    padding-top: 10px;
}


.form_style .err {
  color:#FF0000;
}

.form_style h5 {
  font-size:2rem;
  font-weight:bold;
  margin-bottom:15px;
}

.form_style .completion {
  margin-top: 20px;
}


/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 768px) {

.form_style {
  margin-bottom: 60px;
}

.form_style > div > h3 {
    font-size: 2.6rem;
    margin-bottom: 26px;
}

.form_style > div > h3:after {
    height: 3px;
}

.form_style input + span {
	margin-top:10px;
	font-size:1.2rem;
}

.form_style .head_txt {
	text-align: center;
}

.form_style .important_set {
	margin-top:15px;
	font-size:1.2rem;
}

.form_style .submit-file {
    padding-top: 0;
}


}



/* PC用1040px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){

.form_style {
  width: 980px !important;
  margin-left:auto;
  margin-right:auto;
  padding: 0;
}

.form_style > div {
    padding:0;
}

.form_style > div > h3 {
    font-size: 3.2rem;
    margin-bottom: 35px;
}

.form_style > div > h3:after {
    width: 100px;
    margin: 16px auto 0;
}

.form_style .head_txt {
    font-size: 1.6rem;
	margin-bottom:60px;
    line-height:2;
}

.form_style dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form_style dl dt {
  width:36%;
  font-size:1.8rem;
  margin-bottom: 20px;
  border-bottom: #CCC 1px dashed;
  padding: 0px 0 22px;
}

.form_style dl dt.required:after{
    content: "必須";
    font-size: 1.4rem;
    margin-left:10px;
    padding: 4px 6px;
    border-radius: 5px;
}

.form_style dl dd{
    width: 64%;
    font-size: 1.8rem;
	padding: 0px 0 22px;
    margin-bottom: 20px;
}

.form_style dl dd.multiple {
	display:flex;
	justify-content:flex-start;
}

.form_style.confirm dl dt {
  padding-bottom:20px;
  margin-bottom: 20px;
  border-bottom: #534741 1px dashed;
}

.form_style.confirm dl dd {
  padding-bottom:20px;
  margin-bottom: 20px;
  border-bottom:#534741 1px dashed;
}

.form_style dl dd:last-child {
    margin-bottom: 20px;
}	

.form_style dl + a {
    width:280px;
    margin: 40px auto 0;
    text-align: center;
	font-size: 1.6rem;
}

.form_style dl + a + label {
    margin: 30px auto 0;
    text-align: center;
    display: block;
    width: 45%;
	font-size:1.6rem;
}


/*-- input_style --*/

.form_style input[type="text"],
.form_style input[type="email"],
.form_style input[type="tel"],
.form_style textarea {
	padding: 13px 20px;
    font-size: 1.6rem;
}

.form_style textarea {
  height:300px;
  line-height:2;
}

.form_style dl dd.multiple.line2 input {
	width:calc((100% - 2vw) / 2);
}

.form_style dl dd.multiple.line3 input {
	width:calc((100% - 4vw) / 3);
}

.form_style dl dd.multiple.line2 input:nth-of-type(4),
.form_style dl dd.multiple.line3 input:nth-of-type(2n+4){
	margin-left:2vw;
}

.form_style input[type="submit"],
.form_style input[type="button"] {
  max-width: 600px;
  margin:40px auto 0;
  font-size:1.8rem;
  padding:18px 0;
  line-height:1;
  border-radius: 40px;
  transition:0.5s;
}

.form_style input[type="submit"]:hover,
.form_style input[type="button"]:hover {
  opacity:0.5;
}

.form_style .confirmation {
  font-size:1.8rem;
  margin-bottom:40px;
}

.form_style .completion {
  margin-top: 20px;
}

.form_style input + span {
	display:block;
	margin-top:15px;
	font-size:1.4rem;
}

.form_style .important_set {
	margin-top:15px;
	font-size:1.4rem;
	line-height:1.6;
}



}



/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){

}





