@charset "UTF-8";
/* CSS Document */
.content_area {
    font-size: 0;
    margin-bottom: 40px;
}
.item_name{
    display: inline-block;
    vertical-align: top;
    width: 160px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1em;
    padding: 15px 0;
    margin: 0;
    margin-right: 30px;
}
.input_items{
    display: inline-block;
    box-sizing: border-box;
    width: 770px;
    font-size: 16px;
    padding: 13px 0;
    margin-bottom: 40px;
    border: none;
    border-bottom: 1px solid #333;
    outline: none;
}
input::placeholder,
textarea::placeholder{
    color: #b6b6b6;
}
@media screen and (max-width:999px){
    .item_name{
        font-size: 14px;
        padding: 0;
        width: 100%;
        margin: 0;
    }
    .input_items{
        width: 100%;
    }
}

/* セレクトボックス */
.select-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}
.select-wrap:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-bottom: solid 1px #333;
    border-right: solid 1px #333;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -8px;
}
select::-ms-expand {
	display: none;
}
select{
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    display: inline-block;
    font-size: 16px;
    line-height: 1em;
    padding: 15px 0;
    background: #fff;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    width: 770px;
    outline: none;
}
select option{
  background-color: #fff;
  color: #333;
}
@media screen and (max-width:999px){
    .select-wrap{
        width: 100%;
    }
    select{
        font-size: 14px;
        width: 100%;
    }
}

/* チェックボックス */
/* ラジオボタン */
input[type=checkbox],
input[type=radio]{
    display: none;
}
.checkbox,
.radio_btn{
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    line-height: 1em;
    padding: 15px 40px 15px 55px;
    position: relative;
    width: auto;
}
.checkbox::before,
.radio_btn::before{
    background: #fff;
    border: 1px solid #000;
    content: '';
    display: block;
    width: 38px;
    height: 38px;
    left: 0;
    margin-top: -19px;
    position: absolute;
    top: 50%;
}
.radio_btn::before {
    border-radius: 24px;
}
.checkbox::after {
    border-right: 5px solid #ed7a9c;
    border-bottom: 5px solid #ed7a9c;
    content: '';
    display: block;
    height: 20px;
    width: 10px;
    left: 13px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
}
.radio_btn::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    height: 24px;
    width: 24px;
    background-color: #ed7a9c;
    border-radius: 100%;
    opacity: 0;
    margin-top: -11px;
}
input[type=checkbox]:checked + .checkbox::after,
input[type=radio]:checked + .radio_btn::after{
    opacity: 1;
}

/* テキストエリア */
textarea{
    width: 770px;
    height: 260px;
    font-size: 16px;
    padding: 29px;
    border: 1px solid #333;
    box-sizing: border-box;
    outline: none;
}
.textarea_label{
    margin-bottom: 10px;
}
textarea:disabled{
    background: #fff;
    color: #333;
}
@media screen and (max-width:999px){
    textarea{
        width: 100%;
    }
}

/* 確認画面 */
.output_content{
    display: inline-block;
    width: 770px;
    font-size: 16px;
    line-height: 1em;
    padding: 30px 0;
}
@media screen and (max-width:999px){
    .output_content{
        width: 100%;
        padding: 15px 0;
    }
}
