@charset "EUC-JP";

/* = .mod-bukkenFormImage
----------------------------------------------- */
.mod-bukkenFormImage .registStep {
    margin-bottom: 20px;
}
/* h3&h4 same */
.mod-bukkenFormImage .heading,
.mod-bukkenFormImage .categoryHeading {
    font-weight: bold;
    padding: 2px 0 2px 15px;
    position: relative;
    margin-bottom: 12px;
}
.mod-bukkenFormImage .heading:before,
.mod-bukkenFormImage .categoryHeading:before {
    content: "";
    width: 6px;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

/* h3&h4 diff */
.mod-bukkenFormImage .heading         { font-size: 128.6%; /* 18px */ }
.mod-bukkenFormImage .categoryHeading { font-size: 114.3%; /* 16px */ }
.mod-bukkenFormImage .heading:before         { background-color: #ed6103; }
.mod-bukkenFormImage .categoryHeading:before { background-color: #515151; }

/* 注意書き */
.mod-bukkenFormImage .attentionArea {
    margin-bottom: 20px;
}
.mod-bukkenFormImage .attentionArea .title {
    font-weight: bold;
    font-size: 114.3%; /* 16px */
    color: #f10404;
    margin-bottom: 10px;
}
.mod-bukkenFormImage .attentionArea .caution {
    line-height: 1.4;
    padding-left: 16px;
    position: relative;
}
.mod-bukkenFormImage .attentionArea .caution:before {
    content: "・";
    position: absolute;
    left: 0;
}

.mod-bukkenFormImage .linkText {
    margin-bottom: 20px;
}

/* table design */
.mod-bukkenFormImage .bukkenInfo {
    width: 100%;
    border: 1px solid #dadada;
    border-bottom: 0;
    margin-bottom: 40px;
}
.mod-bukkenFormImage .bukkenInfo th,
.mod-bukkenFormImage .bukkenInfo td {
    text-align: left;
    padding: 15px 10px;
    line-height: 1.4;
    vertical-align: middle;
    border-bottom: 1px solid #dadada;
}
.mod-bukkenFormImage .bukkenInfo th {
    width: 20%;
    background: #f7f7f7;
    color: #515151;
    font-weight: normal;
}

/* 画像を選択するオレンジボタン */
.mod-bukkenFormImage .bukkenInfo .functionButton {
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 5px 10px;
    vertical-align: middle;
    color: #ed6103;
    display: inline-block;
    border: 1px solid #ed6103;
    box-shadow: 0 2px rgba(237, 97, 3, 1);
}

.mod-bukkenFormImage .bukkenInfo .functionButton:hover {
    cursor: pointer;
    background-color: #fffaaa;
}

.mod-bukkenFormImage .bukkenInfo .functionButton input {
    display: none;
}

/* 選択ボタン横にファイル名を出す formBorderを消す */
.mod-bukkenFormImage .bukkenInfo .fileNameBox {
    border: 0;
}

/* td内項目 form */
.mod-bukkenFormImage .bukkenInfo .item {
    font-weight: bold;
    margin-bottom: 2px;
}

.mod-bukkenFormImage .bukkenInfo .textBox {
    width: 300px;
    padding: 5px 10px;
    line-height: 24px;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 0 #c9c9c9 inset;
    box-sizing: border-box;
    vertical-align: middle;
    margin-bottom: 0;
}

/* 入力文字数と最大文字数
 * ----------------------------------------------- */
.mod-bukkenFormImage .strCounter {
    vertical-align: bottom;
    display: inline-block;
		padding: 5px;
}
.mod-bukkenFormImage .strLen.zero {
    color: #ff5252;
}

/* 画像プレビュー部分 *//
.mod-bukkenFormImage .bukkenInfo .pictArea {
    width: 150px;
    border-left: 1px solid #dadada;
}
.mod-bukkenFormImage .bukkenInfo .pictArea .pict {
    width: 150px;
    height: 100px;
    background: #f5f5f5;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}
.mod-bukkenFormImage .bukkenInfo .pictArea .pict img {
    max-width: 150px;
    max-height: 100px;
}

/* 削除エリアのcheckBox */
.mod-bukkenFormImage .bukkenInfo .deleteArea {
    border-left: 1px solid #c9c9c9;
    width: 124px;
}
.mod-bukkenFormImage .bukkenInfo .deleteArea input[type=checkbox] {
    display: none;
}
.mod-bukkenFormImage .bukkenInfo .deleteArea .checkbox {
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    margin-bottom: 5px;
    padding: 12px 15px 12px 50px;
    border-radius: 4px;
    background-color: #f5f5f5;
    vertical-align: middle;
    cursor: pointer;
    color: #515151;
}

/* hover時 */
.mod-bukkenFormImage .bukkenInfo .deleteArea .checkbox:hover {
    background: #fffaaa;
}

/* check時, checkmarkを出す */
.mod-bukkenFormImage .bukkenInfo .deleteArea input[type=checkbox]:checked + .checkbox::before {
    opacity: 1;
}
/* check時 gray -> yellow */
.mod-bukkenFormImage .bukkenInfo .deleteArea input[type=checkbox]:checked + .checkbox {
    background: #fffaaa;
}

/* checkbox */
.mod-bukkenFormImage .bukkenInfo .deleteArea .checkbox:after {
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #dadada;
    border-radius: 4px;
    content: '';
}

.mod-bukkenFormImage .bukkenInfo .deleteArea input[type=checkbox]:checked + .checkbox::after {
    background: #ed6103;
    border-color: #ed6103;
}

/* checkmark */
.mod-bukkenFormImage .bukkenInfo .deleteArea .checkbox:before {
    position: absolute;
    top: 50%;
    left: 21px;
    display: block;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    content: '';
    opacity: 0;
    transform: rotate(45deg);
    z-index: 2;
}

/* inputボタン */
.mod-bukkenFormImage .inputButton {
    display: block;
    background: #ed6103;
    border-radius: 4px;
    border: 0;
    box-shadow: 0 3px rgba(201, 82, 2, 1);
    color: #fff;
    font-size: 171.4%; /* 24px */
    padding: 10px 40px;
    margin: 20px auto 40px;
}
.mod-bukkenFormImage .inputButton:hover {
    cursor: pointer;
    background: #db5902;
}
