/* 問い合わせフォーム */


.opinion-box {
    width: 80%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.opinion-box p {
    line-height: 20px;
}

.Form {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.Form-Item {
    border-top: 1px solid rgb(182, 182, 182);
    padding-top: 24x;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
    width: 100%;
    max-width: 600px;
    letter-spacing: 0.05em;
    font-size: 16px;
    line-height: 40px;
    margin-top: 12px;
    margin-left: 10px;
    line-height: 20px;
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
    line-height: 40px;
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 480px;
    background: #eaedf2;
    font-size: 16px;
    margin-top: 10px;
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 216px;
    flex: 1;
    width: 100%;
    background: #eaedf2;
    font-size: 16px;
}

input:focus {
    background-color: rgb(198, 245, 198);
    outline: 1px lightgreen solid;
}

textarea:focus {
    background-color: rgb(198, 245, 198);
    outline: 1px lightgreen solid;
}

.Form-Btn {
    display: inline-block;
    width: 180px;
    max-width: 100%;
    padding: 10px 20px;
    background-color: rgb(103, 192, 103);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

.Form-Btn:hover {
    background-color: rgb(68, 160, 68);
    color: black;
}

h3 {
    font-weight: normal;
}