

.contact {
    padding: 80px 0;
}
.contact .inner {
    width: 100%;
    padding: 40px 20px;
    margin: 0 auto;
    background: #f7f7f7;
}
.contact .inner .ttl {
    width: 220px;
    margin: 0 auto 40px auto;
}
.contact .inner .form_list {
}
.contact .inner .form_list .kome {
    width: 100%;
    text-align: right;
    font-size: 70%;
}
.contact .inner .form_list dl {
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin-bottom: -1px;
}
.contact .inner .form_list dl dt {
    text-align: left;
    font-size: 110%;
    margin-bottom: 10px;
    color: #32A757;
}
.contact .inner .form_list dl dt span {
    font-size: 0.8em;
    vertical-align: top;
}
.contact .inner .form_list dl dd {
}
.contact .inner .form_list dl dd p {
    width: 100%;
    text-align: left;
    display: block;
}
.contact .inner .form_list dl dd ul {
    width: 100%;
}
.contact .inner .form_list dl dd ul li {
    width: 100%;
    display: block;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.contact .inner .form_list dl dd ul li:nth-child(odd) {
    float: left;
}
.contact .inner .form_list dl dd ul li:nth-child(even) {
    float: right;
}
.contact .inner .form_list .wrap_submit {
    width: 100%;
    text-align: center;
    margin: 40px 0 0 0;
}
.contact .inner .form_list .wrap_submit p {
    font-size: 80%;
    margin-bottom: 30px;
}
.contact .inner .form_list .wrap_submit p a {
    color: #000;
    text-decoration: underline;
    font-size: 100%;
}
.contact .inner .form_list .wrap_submit p a:hover {
    text-decoration: none;
}
.contact .inner .form_list .wrap_submit button {
    line-height: 1em;
    display: inline-block;
    padding: 1.2em 7em;
    background: #32A757;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 100%;
    border-radius: 6px;
}

/*====================================

    form

====================================*/

input,button,select,textarea {
}
input,textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
}
input {
    padding: 10px;  
    width: 100% !important;
}
select {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: #eee;
}
textarea {
    padding: 5px;  
    width: 100%;
}
.fm_radio {
    display: none;
}

.fm_radio + span {
    cursor: pointer;
    display: inline-block;
    margin: 0 0.2em 0;
    padding: 0 0 0 1.2em;
    position: relative;
}

.fm_radio + span::before {
    -webkit-transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
}

.fm_radio + span::after {
    -webkit-transform: translateY(-50%);
    background: #32A757;
    border: 1px solid transparent;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 4px;
    opacity: 0;
    padding: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    width: 8px;
}
.fm_radio:checked + span::after {
    opacity: 1;
}

/* check box */

.fm_check {
    display: none;
}
.fm_check + span {
    cursor: pointer;
    display: inline-block;
    margin: 0 0.2em 0;
    padding: 0 0 0 1.2em;
    position: relative;
}
.fm_check + span::before {
    -webkit-transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 2px;
    content: "";
    display: block;
    height: 1em;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
}
.fm_check + span::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    border-bottom: 3px solid #32A757;
    border-left: 3px solid #32A757;
    content: "";
    display: block;
    height: 0.6em;
    left: 0;
    margin-top: -0.2em;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: all 0.3s ease 0s;
    width: 1em;
}
.fm_check:checked + span::after {
    opacity: 1;
}

/* select box */

.fm_select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent url(../images/arrow.svg) no-repeat center right 8px/16px 16px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    width: 100%;
}
.fm_select::-ms-expand {
    display: none;
}
.fm_select:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
}

/* submit */

.fm_submit {
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0.32);
    background-image: none;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 0.6em 5em;
    text-decoration: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.fm_submit:hover,
.fm_submit:focus {
    outline: none;
}
.fm_submit::-moz-foucus-inner {
    border: none;
    padding: 0;
}

/*====================================

    thanks

====================================*/

.thanks {
}
.thanks p {
    font-size: 100%;
    margin-bottom: 40px;
}
.thanks .btn {
    width: 100%;
    text-align: center;
}
.thanks .btn a {
    line-height: 1em;
    display: inline-block;
    padding: 1.2em 7em;
    background: #32A757;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 100%;
    border-radius: 6px;
}


/* =======================================

    cf

======================================= */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}
