@charset "UTF-8";
/* CSS Document */

.sp{display:none !important;}

.inn {
	width:1100px;
	margin: 0 auto;
}

header {
	width: 100%;
	height: 100px;
	display: flex;
    align-items: center;
}


header h1{
	margin-top:5px;
	width: 88px; 
}

.d-title{
	text-align: center;
	margin:0px 0px 30px 0px;
}

h3 {
  font-family: 'Hind', sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0px;
  position: relative;
}

 h3:after {
  background-color: #D0D0D0;
  width: 47px;
  height: 1px;
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0px;
  margin: auto;
  left: 0px;
}

.d-title p{
	font-family: 'YakuHanJP', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 0.9em;
	margin-top:40px;
}

.nopc{display: none;}
.content {
    text-align: center;
    padding-bottom: 50px;
    width:96%;
    max-width:850px;
    margin:0 auto;
}
/* form */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type=checkbox],
input[type=radio] {
  /*display: none;*/
}
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.form-field{
    width: 100%;
    display: flex;
    position: relative;
}
.form-field {
    padding:20px 0;
}
.form-field + .form-field{
    border-top:#e2e2e2 1px solid;
}
.field-label{
    width: 28%;
    max-width: 280px;
    text-align: left;
    position: relative;
}
.required{
    background:#ce052c ;
    display: inline-block;
    padding:2px 5px;
    color:#fff;
    margin-right:10px;
}
.any{
    background:#777 ;
    display: inline-block;
    padding:2px 5px;
    color:#fff;
    margin-right:10px;
}
.form-field input[type=text]{
    display: block;
    border: 1px solid #bebebe;
    background: #f5f5f5;
    width: calc(100% - (28% + 20px));
    padding: 10px;
}
.form-field textarea{
    display: block;
    border: 1px solid #bebebe;
    background: #f5f5f5;
    width: calc(100% - (28% + 20px));
    resize: none;
    padding: 10px;
}

span.value.checkbox{display: flex;}  
span.value.checkbox span{text-align: left;}
.checkbox input[type="checkbox"] { 
    opacity:0; 
    appearance: none; 
    position: absolute;
}
.checkbox label { 
    display: inline-block; 
    position: relative; 
    padding-left: 26px; 
    line-height: 2.2;
        }
.checkbox label::before { 
    background: #fff; 
    border: 1px solid #818181; 
    content: ''; display: block; 
    height: 18px; left: 0; 
    margin-top: -8px; 
    position: absolute; 
    top: 41%; width: 18px; 
    transition: all 0.3s;
}
.checkbox label::after { 
    border-right: 3px solid #dc3545; 
    border-bottom: 3px solid #dc3545; 
    content: ''; display: block; 
    height: 9px; left: 6px; 
    margin-top: -7px; 
    opacity: 0; 
    position: absolute; 
    top: 46%; 
    transform: rotate(45deg); 
    width: 5px;  
    transition: all 0.3s;
}
.checkbox input:checked + label::after {opacity: 1;}
.checkbox p.pp a{color:#329bd2;transition: all 0.3s;}
.checkbox p.pp a:hover{opacity: .8;}

.submit{ 
    width: 100%; 
    max-width: 380px; 
    margin: 20px auto 0;
}
.submit-btn{ 
    display: block; 
    width: 100%; 
    padding: 15px 10px; 
    font-size: 1rem; 
    font-weight: bold; 
    color: #FFF; 
    text-align: center; 
    background-color:#573D18; 
    border-color:transparent; 
    border: none; 
    transition: .3s;
}
.submit-btn:hover,
.submit-btn:active,
.submit-btn:focus{ background-color:#C36A19;}
.submit-btn:disabled{ opacity:40%;}

.form-field .name-wrap {
	width: calc(100% - 28%);
	display: flex;
	align-items: center;
	justify-content: space-between;

}
.form-field .name-wrap input[type=text]{
	width: 44%
}

/* SP */
@media screen and (max-width:767px) {
    .nopc{display: block;}
    .d-title{
        margin:20px 0px;}
    .inn {
        width:100%;
        margin: 0 auto;
    }
    .form-field{
        flex-wrap: wrap;
    }
    .field-label{
        width: 100%;
        margin-bottom:10px;
    }
    .form-field input[type=text]{
        width: 100%;
    }
    .form-field textarea{
        width: 100%;
    }
		.form-field .name-wrap {
		width: 100%;
	}

}
