/* --------------------------------------------- */
/* ▼モバイル (共通のデザイン) */
/* --------------------------------------------- */

@charset "utf-8";

h1 {
    margin: 30px 0 20px 0;
    color: #CDCDCD;
    text-align: center;
}

#message_form {
    width: 100%;
    padding: 0px 10px 10px 10px;
    box-sizing: border-box;
    color: #CDCDCD;
}

.message_element_outer {
    width: 80%;
    margin: 0 auto 0 auto;
    padding: 10px 0;
    display: block;
}

.message_element_outer input {
    width: 100%;
    padding: 5px;
    border-style: none;
    border-radius: 0.5em;
    border: 1px solid #898989;
}

.message_element_outer textarea {
    width: 100%;
    height: 150px;
    padding: 5px;
    border-radius: 0.5em;
    border-style: none;
    border: 1px solid #898989;
    box-sizing: border-box;
}

#message_submit {
    background: #FF5500;
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 0.3em;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
#message_submit:hover {
    background: #FF9000;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
}

#message_submit_text {
    display: none;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

/* -------------------------------------------- */
/* ▼タブレット */
/* -------------------------------------------- */

@media all and (min-width: 768px) {
    
      .message_element_outer {
        width: 50%;
        margin: 0 auto 0 auto;
        padding: 10px 0;
        display: block;
      }

    
}
  
  
/* ------------------------------------ */
/* ▼パソコン用 */
/* ------------------------------------ */

@media all and (min-width: 920px) {


}
  

@media all and (min-width: 1200px) {

  
}
