/* ------------------------------------------------------------------------
    UI
------------------------------------------------------------------------  */
#FORM {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background: #F6F2EE;
    padding-top: 40px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 60px;
}
@media screen and (min-width:900px){
    #FORM {
        padding-top: 85px;
        padding-left: 8.3%;
        padding-right: 8.3%;
        padding-bottom: 80px;
    }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
    #FORM {
        padding-left: 5%;
        padding-right: 5%;
    }
}
@media screen and (min-width:1201px){
    #FORM {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* Title */
#FORM h2 {
    text-align: center;
}
/* Font-size */
@media screen and (max-width:768px){
    #FORM h2 {
        font-size: calc(23px + 6 * (100vw - 370px)/398);
    }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
    #FORM h2 {
        font-size: calc(23px + 6 * (100vw - 769px)/431);
    }
}
@media screen and (min-width:1201px){
    #FORM h2 {
        font-size: 36px;
    }
}
/* Message */
#FORM .Message {
    display: flex;
    justify-content: center;
    line-height: 1.5em;
    
    margin-top: 40px;
    margin-bottom: 40px;
}

/* List */
#FORM .List {}
#FORM .List:not(:last-child) {
    margin-bottom: 30px;
}
@media screen and (max-width:900px){
    #FORM .List:not(:last-child) {
        margin-bottom: 40px;
    }
}
/* title */
#FORM .List .Item:nth-child(1){
    box-sizing: border-box;
    display: flex;
    align-items: center;
    align-items: flex-start;
    
    font-size: 1.5rem;
    font-weight: 500;
}
#FORM .List .Item.req:nth-child(1):after{
    content: '必須';
    font-size: 1.3rem;
    font-weight: 500;
    background: #CE5D51;
    color: #fff;
    width: 38px;
    text-align: center;
    margin-left: 2em;
}
/* input */
#FORM .List .Item:nth-child(2){
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#FORM .List .Item:nth-child(2) > *{
    width: 100%;
}
#FORM .List textarea {
    height: 180px;
}
@media screen and (max-width:900px){
    /* title */
    #FORM .List .Item:nth-child(1){
        margin-bottom: 15px;
    }
    /* width */
    .Half:nth-child(1) {
        margin-bottom: 15px;
    }
}
@media screen and (min-width:901px){
    #FORM .List {
        display: flex;
        justify-content: space-between;
    }
    /* title */
    #FORM .List .Item:nth-child(1){
        width: 25%;
        justify-content: flex-end;
        margin-top: 1em;
        
    }
    #FORM .List .Item.req:nth-child(1):after{
        margin-left: 30px;
    }
    #FORM .List .Item:not(.req):nth-child(1){
        padding-right: 68px;
    }
    /* input */
    #FORM .List .Item:nth-child(2){
        width: 69%;
    }
    /* width */
    .Half {
        max-width: 48%;
    }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
    /* title */
    #FORM .List .Item:nth-child(1){
        font-size: 1em;
    }
}
@media screen and (min-width:1201px){
    /* title */
    #FORM .List .Item:nth-child(1){
        font-size: 1.125em;
    }
}

/* ------------------------------------------------------------------------
    Error
------------------------------------------------------------------------  */
/* Message */
p.error,.wpcf7-not-valid-tip {
    width: 100%;
    font-size: 1.3rem;
    color: #cc0000;
    padding-top: .75em;
}

/* input */
.error input[type="text"],
.error input[type=email],
.error input[type=tel],
.error textarea,
.wpcf7-not-valid{
	background: #ffeaec!important;
}

/* ------------------------------------------------------------------------
    parts
------------------------------------------------------------------------  */
/* placeholder */
.placeholder {
	color:#aaa;
}
    ::-webkit-input-placeholder {
        color:#999;
        opacity: 1;
    }
    :-moz-placeholder {
        color:#999;
    }
    ::-moz-placeholder {
        color:#999;
        opacity: 1;
    }
    :-ms-input-placeholder {
        color:#999;
    }
    :placeholder-shown {
        color:#999;
    }

/* ------------------------------------------------------------------------
    input
------------------------------------------------------------------------  */
/* reset */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=submit],
.file_type ,
button,
textarea,
select {
	width:100%;
	box-sizing:border-box;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
}
select::-ms-expand {
	display: none;
}

/* set */
label {
}
.wpcf7-response-output{
    display: none;
}
input[type="text"],input[type=email],input[type=tel],textarea,input[type=password] , select,.wpcf7c-conf {
	font-size: 1em;
	background:#FFF;
    padding: 1em;
}
input[type=text] ,input[type=email], input[type=tel] , textarea , select , input[type=password]{
	border:#96999B 1px solid;
    border-radius: 4px;
}
input[type=text] {
}
select {
}
textarea {
	resize: vertical;
}

/* No Resize*/
.noResize {
	resize: none;
}

input[type=text]:focus  ,input[type=email]:focus, input[type=tel]:focus, textarea:focus , input[type=password]:focus{
}
 
input[type=text],input[type=email],input[type=tel], select , textarea , input[type=password]{
	outline: none;
}
input[type=submit] {
    cursor: pointer;
}

textarea {
	min-height:10em;
}

/* ------------------------------------------------------------------------
    Btm_Btm
------------------------------------------------------------------------  */
#FORM .Btm_Btn {
    margin-top: 40px;
}
@media screen and (min-width:901px){
    #FORM .Btm_Btn {
        margin-top: 60px;
    }
    
}
/* ------------------------------------------------------------------------
    Form_Btn
------------------------------------------------------------------------  */
.Form_Btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.Form_Btn input[type=submit],
.Form_Btn input[type=button] {
    width: 100%;
    max-width: 380px;
    height: 60px;
    background: #CE5D51;
    border-radius: 5px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    margin: 0 1em;
    padding: 1em;
}
@media screen and (min-width:901px){
    .Form_Btn {
        margin-top: 60px;
    }
    .Form_Btn input[type=submit] {
        font-size: 1.8rem;
    }
}
