@charset "UTF-8";

/**
 * static/css/parts.css
 */

/**
 * 大見出し
 */
._page-header {
    color:#005930;
    padding-top: 22px;
    line-height:110px;
    height: 132px;
    margin:0 0 35px;
    font-size:42px;
    font-weight: normal;
    background: url(../../img/common/head/header-back.png) repeat-x;
}
    ._page-header h1 {
        font-weight: normal;
    }
    ._page-header small {
        padding-left: 25px;
        margin-left: 25px;
        border-left: 1px solid #4C8B6E;
        color:#4C8B6E;
        display: inline-block;
        /display: inline;
        /zoom: 1;
        font-family:"Raleway";
        font-size: 18px;
        vertical-align: middle;
        line-height: 1;
    }
    /**
     * for Tablet
     */
    @media screen and (max-width: 767px) {
        ._page-header {
            padding-top: 20px;
            line-height: 70px;
            height: 100px;
            background-size: auto 100px;
        }
    }
    /**
     * for SmartPhone
     */
    @media screen and (max-width: 479px) {
        ._page-header {
            line-height: 1.2;
            text-align: center;
            font-size: 28px;
            height: 70px;
            background-size: auto 90px;
        }
            ._page-header small {
                border: none;
                margin: 0;
                padding: 5px 0 0;
                font-size: 12px;
                display: block;
            }
    }

/**
 * 中身出し
 */
._section-header {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
    ._section-header small {
        font-size: 13px;
        margin-left: 15px;
        color: #C99C00;
    }
/**
 * for Tablet/SmartPhone
 */
@media screen and (max-width: 767px) {
    ._section-header small {
        display: block;
        margin-left: 0;
    }
}

/**
 * 説明文
 */
._description {
    text-align: center;
    margin-bottom: 30px;
}
._description-left {
    text-align: left;
}
    /**
     * for Tablet/SmartPhone
     */
    @media screen and (max-width: 479px) {
        ._description {
            text-align: left;
        }
    }


/**
 * テーブル
 */
table._v-table {
    width: 100%;
}
    table._v-table tbody {
    }
        table._v-table tbody th {
            background: #F7F8F8;
            padding: 15px;
            border: 1px solid #ccc;
            white-space: nowrap;
            width: 180px;
            text-align: left;
            font-weight: normal;
            vertical-align: middle;
        }
        table._v-table tbody td {
            padding: 15px;
            border: 1px solid #ccc;
            vertical-align: middle;
        }

        table._v-table tbody .top th,
        table._v-table tbody .top td {
            vertical-align: top;
        }

        table._v-table tbody td p {
            margin-bottom: 10px;
        }
        table._v-table tbody td p.desc {
            margin: 10px 0 0;
        }
        table._v-table tbody td ul {
            margin-bottom: -10px;
        }
            table._v-table tbody td li {
                margin-bottom: 10px;
            }

/**
 * for Tablet/SmartPhone
 */
@media screen and (max-width: 619px) {
    table._v-table,
    table._v-table tbody,
    table._v-table tbody tr,
    table._v-table tbody th,
    table._v-table tbody td {
        width: auto;
        display: block;
    }
    table._v-table tbody th {
        border-bottom: none;
        padding: 10px;
    }
    table._v-table tbody td {
        padding: 10px;
    }
    table._v-table tbody tr~tr th,
    table._v-table tbody td.collapse {
        border-top: none;
    }
}


/**
 * フォーム要素
 */
input._text {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #C9CACA;
    outline:none;
    padding: 6px 10px;
    font-size: 1.2em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input._text-full {
    width: 100%;
}
    input._text:focus {
        border: 1px solid #CA9D00;
    }

._radio-label {
    margin-right: 1em;
    display: inline-block;
    /display: inline;
    /zoom: 1;
}
    ._radio-label input {
        vertical-align: middle;
    }
    ._radio-label img {
        vertical-align: middle;
    }

._required {
    color: #C99C00;
    font-weight: bold;
}

._ex-label {
    font-size: 12px;
    margin-left: 10px;
    color: #7F7F7F;
}

/**
 * ボタン要素
 */
._button {
    cursor: pointer;
    background: none;
    border: none;
    display: inline-block;
    /display: inline;
    /zoom: 1;
    font-size: 15px;
    color: #fff;
    background: #CA9D00;
    padding: 10px 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    vertical-align: top;
    text-decoration: none;
    line-height: 1;
}
    ._button i {
        font-weight: bold;
        font-size: .8em;
    }
        ._button i.icon-big {
            font-size: 1.2em;
        }
        ._button i.icon-left {
            margin-right: 5px;
        }
        ._button i.icon-right {
            margin-left: 5px;
        }
    ._button:hover {
        background: #E5CE80;
    }
._button-sm {
    font-size: 13px;
    padding: 8px 12px;
}
._button-lg {
    font-size: 20px;
    padding: 15px 25px;
}
.gray {
    color: #fff;
    background:grey;
}
.gray:hover {
    background:lightgrey;
}

