@charset "UTF-8";
/*
Theme Name: DDBA Form CSS
Author: SATC
Description: DDBAフォーム用
Version: Ver.1.1 update.2018.05.08
*/


/**********************************************************************
Form Reset
**********************************************************************/

/******* Placeholder Default
***********************************************************************************/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #B0B0B0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #B0B0B0;
}

input::placeholder,
textarea::placeholder {
    color: #B0B0B0;
}




/******* Select Reset ***
***********************************************************************************/
select {
    margin: 0;
    padding: 0;
    color: inherit;
    border: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}




/******* Check Box & Radio Reset
***********************************************************************************/
input[type="radio"],
input[type="checkbox"] {
    display: none;
}




/******* Focus Reset
***********************************************************************************/
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0px 0px 0px #3E3A39;
}





/**********************************************************************
Form Design
**********************************************************************/

/******* Common Selector Design
***********************************************************************************/
input,
textarea,
select {
    font-size: 1em;
}

input[type="text"], 
input[type="email"], 
textarea,
select {
    padding: 5px 10px;
    border: #CCC 1px solid;
    border-radius: 3px;
}

input,
textarea,
select {
    width: 100%;
}

input,
select {
    min-height: 50px;
}






/******* Selector Design
***********************************************************************************/
select {
    padding-top: 12px;
    padding-bottom: 8px;
    padding-right: 30px;
    background: url(../images/select-arrow-default.png) no-repeat right -1px center;
}


label {
    position: relative;
    padding-left: 35px;
}

label[for="name"] {
    position: static;
    padding-left: 0;
}

input[type="submit"] {
    width: auto;
}

input[type="radio"] + span::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    left: 0;
    background: url(../images/radio-default.png) no-repeat left top;
}

input[type="radio"]:checked + span::before {
    background: url(../images/radio-default.png) no-repeat left top -30px;
}

input[type="checkbox"] + span::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    left: 0;
    background: url(../images/checkbox-default.png) no-repeat left top 0px;
}

input[type="checkbox"]:checked + span::before {
    background: url(../images/checkbox-default.png) no-repeat left top -30px;
}




/******* Class Design
***********************************************************************************/
.required {
    color: #d90d0d;
    padding-left: 5px;
    padding-right: 5px;
}

.zip-code,
.address1,
.sex,
.item-name {
    width: auto;
}

.zip-mark {
    display: inline-block;
    padding-top: 5px;
    margin-right: 5px;
}

.vertical-item {
    border-bottom: #CCC 2px dashed;
}

.agree label {
    padding-top: 4px;
}

.btn-box ul {
    list-style: none;
    padding: 0;
}


/**********************************************************************
Form Frame Design

    ヘッダーテキスト           ----- #form-header-area
    フォームの内容             ----- #form-body-area
    フッターテキスト、送信ボタン ----- #form-footer-area
**********************************************************************/

/******* Common
***********************************************************************************/
#form-header-area,
#form-body-area {
    max-width: 800px;
    background-color: #FFF;
}




/******* Header Area
***********************************************************************************/
#form-header-area {
    
}

#form-header-area .notes {
    display: inline-block;
    line-height: 1;
    padding: 5px 10px;
    background-color: #F0F0F0;
    border-radius: 3px;
}




/******* Body Area
***********************************************************************************/
#form-body-area {
    padding: 0px 20px;
    margin-left: -15px;
    margin-right: -15px;
}

#form-body-area h2 {
    background-color: #FF7600;
}

#form-body-area dl {
    margin-bottom: 11px;
    padding-bottom: 5px;
    margin-left: -5px;
    margin-right: -5px;
}

#form-body-area dl dt {
    letter-spacing: normal;
}

#form-body-area dl dd {
    width: 100%;
    padding: 5px;
    display: inline-block;
}

#form-body-area dl.col2,
#form-body-area dl.col3 {
    letter-spacing: -0.39em;
}

#form-body-area dl.col2 dd,
#form-body-area dl.col3 dd {
    letter-spacing: normal;
}

#form-body-area dl.col2 dd {
    max-width: 50%;
}

#form-body-area dl.col3 dd:nth-of-type(1) {
    max-width: 100%;
}

#form-body-area dl.col3 dd:nth-of-type(2),
#form-body-area dl.col3 dd:nth-of-type(3) {
    max-width: 50%;
}

#form-body-area dt {
    font-size: 1em;
}




/******* Footer Area
***********************************************************************************/
#form-footer-area {
    padding: 20px 0;
    text-align: center;
    background-color: transparent;
}

#form-footer-area .text-box,
#form-footer-area .btn-box {
    margin-bottom: 30px;
}

#form-footer-area li {
    margin-bottom: 10px;
}




/******* Confirm Page
***********************************************************************************/
#confirm #form-body-area {
    padding-top: 30px;
    padding-bottom: 30px;
}

#confirm #form-body-area dl {
    border-bottom: #E0E0E0 1px solid; 
}


#confirm #form-body-area dd {
    display: inline-block;
    width: auto;
}

#confirm #form-footer-area .text-box {
    display: none;
}




/******* Complete Page
***********************************************************************************/
#complete {
    text-align: center;
}





/**********************************************************************
Media Query
**********************************************************************/

@media screen and (min-width: 375px) {
    
}

@media screen and (min-width: 576px) { 
    
}

@media screen and (min-width: 768px) {
    
    /**********************************************************************
    Form Frame Design
    **********************************************************************/
    
    /******* Common
    ***********************************************************************************/
    #form-header-area,
    #form-body-area {
        margin-left: auto;
        margin-right: auto;
    }
    
    
    /******* Body Area
    ***********************************************************************************/
    #form-body-area dl.col3 dd {
    max-width: 33.33% !important;
}
}

@media screen and (min-width: 992px) {
    
}