@charset "utf-8";


/* 入力フォーム
--------------------------------------*/
.form .text,.form  textarea,.form  .dropdown{
    border:1px solid #777;
    padding: 0.5rem;
    color: #333;
    background: #fff;
    border-radius: 5px;
    text-align: right;
     
    /* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#eee),
        to(#fff)
        );
    -webkit-border-radius: 5px;
     
    /* Firefox */
    background: -moz-linear-gradient(
        top,
        #eee,
        #fff
        );
    -moz-border-radius: 5px;
     
    /* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ffeeeeee,endColorstr=#ffffffff);
    zoom: 1;
}

.form .result .text,.form .result textarea,.form .result .dropdown{
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: right;
}


.form .submit{ /* 送信ボタン */
    border:1px solid #777;
    padding: 4px 10px;
    color: #fff;
    cursor: pointer;
    background: #019D4A;
    border-radius: 5px;
     
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#B9E5C9),
        to(#009A28)
        );
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #B9E5C9,
        #009A28
        );
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ff99c9e5,endColorstr=#ff428ec9);
    zoom: 1;
}

/* レイアウト・テーブル 
----------------------------------*/

.custom_form {
    text-align: center;
    margin: 0 auto 30px;
    width: 100%;
}

.custom_form table {
    margin: 0 auto 30px;  
    text-align:left;
    /* border-top: 1px dotted #ccc; */
    width: 100%;
}

.custom_form table th {
    width: 30%;
    margin: 0 auto 20px;
    padding: 1rem 1rem 1rem 0.5rem;
    border-bottom: 1px dotted #ccc;
    text-align:left;
    vertical-align: top;
}

.custom_form table td {
    margin: 0 auto 20px;
    padding: 1rem 1rem 1rem 0.5rem;
    border-bottom: 1px dotted #ccc;
    text-align:left;
    vertical-align: middle;
}
.custom_form table td span{
    vertical-align: middle;
}

.custom_form input {
    font-size: 1.4rem;
}

.custom_form p {
    text-align: left;
}

.custom_form .required {
    color: #ff6600;
    font-size: 0.9rem;
}

td label{
    font-size: 1rem;
}

.custom_form sup{
	font-weight: normal;
}

.custom_form input[type="text"]{
    padding: 1rem;
    margin-bottom: 15px;
    vertical-align: top;
}
td input:last-child[type="text"]{
    margin-bottom: 0;
}

/* short */
.custom_form input#zip1,
.custom_form input#zip2,
.custom_form input#age{
    width: 30%;
}

/* middle */
.custom_form input#name,
.custom_form input#kana,
.custom_form input#email,
.custom_form input#reEmail,
.custom_form input#tel1,
.custom_form input#tel2,
.custom_form input#tel3,
.custom_form input#account_number{
    width: 60%;
}

/* long */
.custom_form input#addr1,
.custom_form input#addr2,
.custom_form input#company,
.custom_form input#note{
    width: 90%;
}

.custom_form textarea{
    padding: 1rem;
}
.custom_form textarea#free_textarea{
    width: 90%;
    height: 250px;
}
.custom_form textarea#agree_note{
    width: 90%;
    height: 100px;
}
.custom_form #birth_year{
    width: 15%;
}
.custom_form #birth_month,
.custom_form #birth_day{
    width: 10%;
}

.custom_form select {
    width: 60%;
    padding: 1rem;
}

/* 個人情報の取扱いについて */
#agree_detail_html{
    width: 100%;
    margin: 2rem auto;
}
#agree_detail_html p{
}

/* チェックボックス */
#agree_form{
	text-align: center;
}


/* ボタン */
form input{
    width: auto;
}

form input[type="submit"],
#agree_form input[type="submit"]{
    border-style: none;
	background: #019D4A;
    margin: 0 auto 50px;
    padding: 0 2rem;
    vertical-align: middle;
    text-decoration: none;
    padding: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    display: inline-block;
    width: 200px;
}
form input:hover[type="submit"],
#agree_form input:hover[type="submit"]{
    background-color: #019D4A;
}
form input:disabled,
#agree_form input:disabled{
    background-color: #CCC;
}
form input:disabled:hover[type="submit"],
#agree_form input:disabled:hover[type="submit"]{
    background-color: #CCC;
}

a.btn{
    border-style: none;
	background: #019D4A;
    margin: 0 auto 50px;
    padding: 0 2rem;
    vertical-align: middle;
    text-decoration: none;
    padding: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    display: inline-block;
    width: 200px;
}
a.btn.disabled{
    background: #7ADEA9;
}

input#name,
input#kana,
input#tel1{
    display: block;
    margin-bottom: 5px;
}
input#company{
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
.custom_form table th,
    th,
    td{
        display: block;
        width: 100%;
        border-bottom: 1px solid #ccc;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

/* middle */
.custom_form input#name,
.custom_form input#kana,
.custom_form input#email,
.custom_form input#reEmail,
.custom_form input#tel1,
.custom_form input#tel2,
.custom_form input#tel3,
.custom_form input#account_number{
    width: 100%;
}

/* long */
.custom_form input#addr1,
.custom_form input#addr2,
.custom_form input#company,
.custom_form input#note{
    width: 100%;
}
.custom_form textarea#free_textarea{
    width: 100%;
    height: 250px;
}
.custom_form textarea#agree_note{
    width: 100%;
    height: 100px;
}

.custom_form select {
    width: 100%;
}

}