<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/****************************************************************************/
/**								コンタクトフォーム								*/
/****************************************************************************/

.contact_form,
table {
    margin-top:0;
}
dt { font-weight: bold; }
dl { margin-bottom: 40px; }
.contact_form {
    width: 800px;
    margin: 40px auto;
}
.contact_form h1 {
    display: block;
    text-align: center;
    font-size: 200%;
    margin-bottom: 30px;
}
.contact_form a {
    text-decoration: underline;
}
.contact_form a:hover {
    text-decoration: none;
}
.contact_form table {
    width: 100%;
    margin-top: 50px;
}
.contact_form th {
    width: 15%;
    line-height: 32px;
    text-align: right;
    font-weight: normal;
    vertical-align: top;
    padding-top: 20px;
    font-family: "honoka";
}
.contact_form td {
    width: 80%;
    font-size: 100%;
    line-height: 32px;
    margin-left: 30%;
    padding-top: 20px;
}
.contact_form input[type=text],
.contact_form input[type=email],
.contact_form select,
.contact_form textarea {
    width: 70%;
    height: 32px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 0 10px 0 15px;
    box-sizing: border-box;
    vertical-align: bottom;
}
.contact_form .zip input:nth-child(1) {
    width: 70px;
}
.contact_form .zip input:nth-child(2) {
    width: 90px;
}
.contact_form textarea {
    width: 100%;
    height: 100px;
    padding: 5px 10px;
}
.contact_form button {
    width: 250px;
    margin-top: 30px;
}
.contact_form select {
    width: auto;
}
.contact_form.complete p {
    display: block;
    text-align: center;
    padding: 50px 0;
}
/* ====================================================================================================
   フォーム制御
==================================================================================================== */
.require    { color: #FF0000; }

.success    {
    padding: 10px 10px 10px 40px;
    background: #D6F0FB url(/img/admin/success_ic001.jpg) no-repeat 10px 50%;
    border: 1px solid #66C6F2;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    margin-bottom: 5px;
}

.error  {
    padding: 10px 10px 10px 40px;
    background: #F9E7E9 url(/img/admin/error_ic001.jpg) no-repeat 10px 50%;
    border: 1px solid #E79EA7;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.message.error  {
    margin-bottom: 5px;
}

.input.text.error   {
    background-position: 2% 77%;
}

.warning    {
    padding: 10px 10px 10px 40px;
    background: #FEF3DD url(/img/admin/warning_ic001.jpg) no-repeat 9px 50%;
    border: 1px solid #FBD381;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

@media screen and (max-width: 750px){
.contact_form {
    width: 80%;
}

.contact_form table,
.contact_form th,
.contact_form td {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact_form input[type=text],
.contact_form input[type=email],
.contact_form select,
.contact_form textarea,
.contact_form button {
    width: 100%;
}
}
</pre></body></html>