/* ボタン */
.contact_btn_apply {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    margin:0 0 0 0;
    padding: 0.5em 0.5em;
    border: none;
    border-radius: 5px;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}
.contact_btn_apply:hover {
    background-color: #1579c0;
}

/* セレクトボックス */
.con_select {
    position: relative;
}
.con_select::before,
.con_select::after {
    position: absolute;
    content: '';
    pointer-events: none;
}
.con_select::before {
    right: 0;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 25px 25px 0;
    background-color: #2589d0;
    content: '';
}
.con_select::after {
    position: absolute;
    top: 50%;
    right: 1.4em;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
}
.con_select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em 3.6em .4em .8em;
    border: 2px solid #2589d0;
    border-radius: 25px;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}
.con_select select:focus {
    outline: 1px solid #2589d0;
}

/* テキストボックス */
.con_text {
    color: #333;
}
.con_text {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 25px;
    font-size: 1em;
    line-height: 1.5;
}
.con_text::placeholder {
    color: #999;
}
.con_text:disabled {
    background-color: #ccc;
}
/* テキストエリア */
.con_textarea {
    color: #333;
}
.con_textarea {
    resize:vertical;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 25px;
    font-size: 1em;
    line-height: 1.5;
}
.con_textarea::placeholder {
    color: #999;
}
.con_textarea:disabled {
    background-color: #ccc;
}