@charset "UTF-8";
/***************************************************************
    SYSTEM   : studio yap
    TITLE    : フォームメール用スタイルシートの定義
    SHEET    : style.css
    VERSION  : Ver1.0.2
    LANGUAGE : CSS level3
    CODESET  : UTF-8
    EXPLAIN  : フォームメール画面の色や形状を定義する。
    AUTHOR   : yap
    CREATED  : 2015/09/28  //as Ver1.0.1
    UPDATED  : 2017/05/05  //as Ver1.0.2
***************************************************************/

/***************************************************************
    クラスの定義
***************************************************************/

/* エラー部の定義 */
.err {
    margin: 16px;
    padding: 16px;
    color: #FF0000;
    font-weight: bold;
    border: 1px solid #CCCCCC;
    background-color: #FFFFE0;
}

/* プロンプト部の定義 */
.prompt {
    margin: 0 16px 16px;
}

/* 表見出しの定義(override on /common/css/style.css) */
th.list {
    padding: 8px 16px;
    width: 120px;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph; /* IE,Edge用 */
}

/* 入力枠の定義 */
.input {
    padding: 4px;
    border: solid 1px #8AB8E5;
}

/* テキスト入力の定義 */
.form {
    padding: 4px;
    max-width: 100%;
    border: 1px solid #FF66CC;
}

/* セレクト入力の定義 */
select.form {
    height: 32px;
}

/* ボックス入力の定義 */
.box {
    padding: 4px;
    max-width: 100%;
    resize: vertical;
    border: 1px solid #FF66CC;
}

/* 必須項目の定義 */
.ess {
    color: #FF0000;
    font-weight: bold;
}

/* オプション部の定義 */
.opt {
    margin: 24px;
    text-align: center;
}

/* チェックボックスの定義 */
input[type=checkbox] {
    margin-right: 16px;
    transform: scale(2);
}

/* 謝辞部の定義 */
.thanx {
    margin: 16px;
}

/* ボタン部の定義 */
.btnarea {
    width: 304px;
    margin: 16px auto;
    text-align: center;
    overflow: hidden;
}

/* ボタンの定義 */
.button, .btn_fwd, .btn_rew {
    float: left;
    width: 136px;
    height: 64px;
    margin: 0px 8px;
    font-size: 120%;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border: none;
    background-color: #CCCCCC;
    transition-duration: 0.5s;
}

/* ボタン選択の定義 */
.button:hover, .btn_rew:hover {
    background-color: #E5E5E5;
}

/* 次へボタンの定義 */
.btn_fwd {
    color: #FFFFFF;
    background-color: #CC0000;
}

/* 次へボタン選択の定義 */
.btn_fwd:hover {
    background-color: #FF0000;
}

/* ライセンス部の定義 */
.license {
    text-align: right;
    display: none;
}

/* 注釈部の定義 */
.notes {
    margin: 16px 16px 0px;
}


/***************************************************************
    スマートフォン用CSSの定義
    幅959ピクセル以内をスマートフォンとみなす
***************************************************************/

@media screen and (max-width: 959px) {

    /* エラー部の定義 */
    .err {
        margin: 8px;
        padding: 8px;
    }

    /* プロンプト部の定義 */
    .prompt {
        margin: 8px;
    }

    /* 表見出しの定義(override on /common/css/style.css) */
    th.list {
        padding: 4px 8px;
        width: 80px;
    }

    /* 入力枠の定義 */
    .input {
        padding: 2px;
    }

    /* テキスト入力の定義 */
    .form {
        padding: 2px;
    }

    /* ボックス入力の定義 */
    .box {
        padding: 2px;
    }

    /* オプション部の定義 */
    .opt {
        margin: 16px 8px 8px;
    }

    /* 謝辞部の定義 */
    .thanx {
        margin: 8px;
    }

    /* 注釈部の定義 */
    .notes {
        margin: 8px 8px 0px;
    }
}
