h2 {
	font-size: 30px;
	text-align: center;
}

form {
    width: 700px;
    margin: 0 auto;
}

input {
    width: 100%;
    height: 40px;
    font-size: 25px;
}

textarea {
    width: 100%;
    font-size: 22px;
}

select {
    height: 40px;
    font-size: 18px;
}

.wpcf7-submit {
    width: auto;
    padding: 0 2%;
    color: #fff;
    border-radius: 10px;
    border: none;
    background-image: 
    linear-gradient(353deg, rgb(242, 82, 69),rgb(131, 28, 80));
    transition: all 0.2s;
}

.wpcf7-submit:hover {
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s;
}

.wpcf7-response-output {
    text-align: center;
}

.wpcf7-form-control-wrap {
    display: inline-block;
    width: 99%;
}

.caution_and_request {
	width: min(1200px, 90%);
	margin: 100px auto;
	padding: 25px;
	background: rgba(255, 255, 255, 0.5);
}

/* 768px以下 */
@media screen and (max-width:768px) {
    form {
        width: 90%;
        margin: 0 auto;
    }

    .wpcf7-form-control-wrap {
        width: 98%;
    }
}