.philosophy{
    width: fit-content;
    margin: 70px auto;
    padding: 30px 50px;
    text-align: center;

    background: #faf8f4;
    border: 1px solid #d8d1c5;

    position: relative;
}

.philosophy::before,
.philosophy::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:1px;
    background:#b49d72;
}

.philosophy::before{
    top:12px;
}

.philosophy::after{
    bottom:12px;
}

.philosophy .inqTxt{
    display:block;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size:2rem;
    font-weight:500;
    letter-spacing:.18em;
    color:#4d4337;
    margin-bottom:12px;
}

.philosophy .feelEase{
    display:block;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size:.95rem;
    letter-spacing:.22em;
    color:#9b8a72;
    text-transform:uppercase;
}

label{
    display:block;
    margin-top:20px;
    font-weight:bold;
}

input,textarea{
    width:100%;
    padding:10px;
    box-sizing:border-box;
    font-size:16px;
}

textarea{
    height:220px;
    resize:vertical;
}

button{
    margin-top:30px;
    padding:12px 40px;
    font-size:16px;
    cursor:pointer;
}

/* 手紙風お問い合わせフォーム */

.letterForm{
    max-width:700px;
    margin:50px auto;
    padding:40px 45px;

    background:#fffdf7;
    border:1px solid #d8c9a6;

    box-shadow:
        0 12px 35px rgba(0,0,0,.12),
        inset 0 0 0 1px rgba(255,255,255,.7);

    border-radius:4px;

    font-family:
        "Cormorant Garamond",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    color:#4d4336;
}

/* 見出し */

.letterForm label{
    display:block;
    margin-top:24px;
    margin-bottom:8px;

    font-size:17px;
    font-weight:bold;
    letter-spacing:.05em;
}

/* 入力欄 */

.letterForm input,
.letterForm textarea{

    width:100%;

    padding:12px 14px;

    border:none;
    border-bottom:1px solid #b9aa8b;

    background:transparent;

    font-size:16px;

    font-family:inherit;

    box-sizing:border-box;

    transition:.3s;
}

/* フォーカス */

.letterForm input:focus,
.letterForm textarea:focus{

    outline:none;

    border-bottom:2px solid #8d7152;

    background:rgba(240,229,207,.25);

}

/* 本文 */

.letterForm textarea{

    min-height:180px;

    resize:vertical;

    line-height:1.9;

}

/* ボタン */

.letterForm button{

    margin-top:35px;

    padding:13px 38px;

    border:none;

    border-radius:30px;

    background:#8d7152;

    color:white;

    font-size:16px;

    cursor:pointer;

    transition:.25s;
}

.letterForm button:hover{

    background:#70563e;

}

/* 戻る */

.letterForm a{

    margin-left:25px;

    color:#70563e;

    text-decoration:none;

    border-bottom:1px dotted #70563e;

}

.letterForm a:hover{

    opacity:.7;

}