@charset "utf-8";
/* CSS Document */

/*******************************
form
*******************************/
#formBox01 {
}

#formBox01 h2 {
    color: #b09540;
    font-family: "gothic02";
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

#formBox01 h2 .line {
    height: 2px;
    background: #b09540;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: -1;
}

#formBox01 h2 strong {
    background: #fff;
    padding: 0 0.5rem 0 0;
    font-weight: normal;
}

#formBox01 form {
    margin-top: 3rem;
    border-top: 1px solid #ccc;
}

#formBox01 form dl {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 0.8rem 0;
}

#formBox01 form dl:nth-child(odd) {
    background: #f4f4f4;
}

#formBox01 form dl dt {
	width: 23%;
	padding-left: 2%;
	font-family: "gothic02";
}

#formBox01 form dl dd {
    width: 75%;
}

#formBox01 form dl dd p {
    font-size: 0.875rem;
}

#formBox01 form dl dd input[type="text"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
    padding: 0.4rem;
    border: 2px solid #ccc;
    font-size: 1rem;
}

#formBox01 form dl dd input {
    width: 30rem;
    max-width: 94%;
}

#formBox01 form dl.email dd input {
    width: 40%;
    ime-mode: disabled;
}

#formBox01 form dl.email dd input:last-child {
    width: auto;
}

#formBox01 form dl.email dd span {
    margin: 0 0.4em;
}

#formBox01 form dl dd select {
    border-radius: 0;
    outline: none;
    border: 2px solid #ccc;
    background: #fff;
    padding: 0.4rem;
    font-family: "gothic01","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    font-size: 1rem;
}

#formBox01 form dl.tel dd input {
    width: auto;
    ime-mode: disabled;
}

#formBox01 form dl.tel dd p {
    display: inline-block;
    margin-left: 1em;
}

#formBox01 form dl dd textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
    resize: none;
    width: 90%;
    height: 10rem;
    padding: 0.4rem;
    border: 2px solid #ccc;
    background: #fff;
    font-size: 1rem;
}

#formBox01 form dl dd textarea#contents {
    max-width: 94%;
    margin: 0;
    min-height: 10rem;
}

#formBox01 form dl dd input[type="text"]:focus,
#formBox01 form dl dd select:focus,
#formBox01 form dl dd textarea:focus {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #b09540;
}

#formBox01 form #buttonArea {
    display: flex;
    justify-content: center;
}

#formBox01 form input[type="button"],
#formBox01 form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
    border: none;
    display: block;
    padding: 1rem;
    width: 15rem;
	font-family: "gothic02";
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    margin: 2rem auto;
    transition: all 0.5s ease 0s;
}

#formBox01 form #buttonArea input[type="button"],
#formBox01 form #buttonArea input[type="submit"]{
    margin: 2rem 1rem;
}

#formBox01 form input[type="button"]:hover,
#formBox01 form input[type="submit"]:hover {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}

#formBox01 form input[type="submit"] {
    background: #ec767d;
    color: #fff;
}

#formBox01 form input[type="submit"]:hover {
    background: #f24662;
}

#formBox01 form input[type="button"] {
    background: #c8b47a;
    color: #fff;
}

#formBox01 form input[type="button"]:hover {
    background: #c1a966;
}