/* ページ全体 */
* {
    margin : 0 ;
    padding : 0 ;
    font-size: 100%;
}

/* body全体 */
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    background-color: transparent;
    color: #434343;
    width: 100%;
    font-size: 15px;
}

a {
    color: #628e00;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    text-decoration: underline;
}

a:hover {
    color: #434343;
}

/* メールフォーム全体を囲うidタグ */
#contents_wrapper {
    width : 720px ;
    margin : 0 auto 30px ;
    padding : 20px 15px 0 ;
    background : #ffffff;
    border-left : 1px solid #b3b3b3 ;
    border-right : 1px solid #b3b3b3 ;
    border-bottom : 1px solid #b3b3b3 ;
}

/* 入力フォームを囲うclassタグ */
.setting_section {
    margin-bottom: 25px ;
}

.button_box {
    text-align: center;
}

/* ボタンを囲うclassタグ */
.button_box input {
    display: inline-block;
    *display: inline; /*ie9*/ 
    z*zoom: 1; /*ie9*/
    width: 306px;
    height: 60px;
    text-align: center;
    text-decoration: none;
    position: relative;
    background-color: #8fc332;
    border-radius: 4px;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 60px;
    -webkit-transition: none;
    transition: none;
    box-shadow: 0 3px 0 #70a60e;
    margin: 0 auto 3px auto;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    cursor: pointer;
}

    .button_box input::before,
    .button_box input::after {
         position: absolute;
         z-index: -1;
         display: block;
         content: &#039;&#039;;
    }
		
    .button_box input,
    .button_box input::before,
    .button_box input::after {
         -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
         box-sizing: border-box;
         -webkit-transition: all .3s;
         transition: all .3s;
    }
	
    .button_box input:hover {
         color: #fff;
         background-color: #a2dd37;
         box-shadow: 0 3px 0 #8fc332;
    }

    .button_box .btn_back {
         background-color: #425ba5;
         box-shadow: 0 3px 0 #263b7a;
         margin-bottom: 20px;
    }
	
    .button_box .btn_back:hover {
         background-color: #5e75bb;
         box-shadow: 0 3px 0 #425ba5;
    }

.button_box span {
    display: block;
    margin-bottom: 10px;
}

/* 赤文字を表示するためのclassタグ */
.red {
    color: #e60039;
}

/* 左詰の文字を表示するためのclassタグ */
.left_txt {
    text-align : left;
}

/* 説明文を表示するためのidタグ */
#txt_explain {
    color: #434343;
}

/* コンテンツ内の[p]タグ */
#contents p {
    margin-bottom : 1em ;
    text-align : left ;
}

/* コンテンツ内の[h3]タグ */
#contents h3 {
    border-left: #f6ab00 solid 8px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    padding: 16px 0 16px 16px;
}

/* コンテンツ内の内部タグ */
#contents .inner {
    padding: 20px 0 0 0;
}

/* コンテンツ内のフォームに使用する[table]タグ */
#contents table {
    width : 720px ;
    border-collapse : collapse ;
    border: none ;
    margin-bottom: 25px;
    background-color: #f3f9ff;
}

#contents table tr:first-child th,
#contents table tr:first-child td {
    padding-top: 20px;
}

#contents table tr:last-child th,
#contents table tr:last-child td {
    padding-bottom: 20px;
}

/* コンテンツ内のフォームに使用する[th]タグ */
#contents table th {
    border: none ;
    color: #434343;
    padding : 10px 10px 10px 5px;
    text-align : right;
    width: 8em;
}

/* コンテンツ内のフォームに使用する[td]タグ */
#contents table td {
    border: none ;
    padding : 10px 5px ;
    text-align : left ;
}

/* フォーム全体 */
#main_table * {
    font-family : sans-serif ;
}

/* フォーム内の入力欄 */
#main_table input {
    width : 380px ;
}

/* フォーム内の入力欄 */
#main_table textarea {
    width : 410px ;
}

/* フォーム内の入力欄デザイン */
#main_table input[type="text"],
#main_table input[type="email"],
#main_table textarea {
    padding: 5px;
    border:1px solid #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0 1px 1px #fff, 0 2px 4px #eee inset;
    -moz-box-shadow: 0 1px 1px #fff, 0 2px 4px #eee inset;
    box-shadow: 0 1px 1px #fff, 0 2px 4px #eee inset;
    color: #555;
    }