/* CSS Document */

body {
    background-color:#fff;
}
.container {
    width:720px;
    margin:10px auto;
    border:1px solid #ccc;
    border-radius:8px;
    padding:30px;
}
h4 {
    text-align:center;
    font-size:1.5rem;
}
dl.form dt {
    font-weight:normal;
    line-height:2;
    letter-spacing:5px;
}
dl.form dt > span {
    background-color:#999;
    font-size:.7rem;
    padding:0 6px;
    color:#fff;
    border-radius:10px;
    text-align:center;
    line-height:1.2;
    letter-spacing:0;
}
dl.form dd {
    padding:0 10px;
    margin-bottom:5px;
    border-bottom:1px dotted #ccc;
    padding-bottom:10px;
}
input,select {
    border:1px solid #ccc;
    border-radius:4px;
    padding:5px 10px;
    line-height:1.5;
    background-color:#F2F2F2;
    color:#333;
}
input.form_err {
    border-color:#c00;
    background-color:#FFDFDF;
}
p.input_err {
    color:#c00;
    font-size:.9rem;
    padding:3px 0;
}
p.atn {
    font-size:.8rem;
    color:#999;
}
p.atn span {
    color:#00f;
    font-weight:bold;
}
.btn {
    text-align:center;
    padding:20px 0;
}
button.regist {
    width:8rem;
    background-color:#eb6ea0;
    color:#fff;
    text-align:center;
    line-height:2.5;
    font-size:1rem;
    border-radius:8px;
    box-shadow:1px 1px 2px #ccc;
}
button.close {
    width:8rem;
    background-color:#ccc;
    color:#fff;
    text-align:center;
    line-height:2.5;
    font-size:1rem;
    border-radius:8px;
    box-shadow:1px 1px 2px #ccc;
}
p.err {
    text-align:center;
    color:#f00;
    padding:50px 0;
}

.inline-radio {
    display: flex;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.inline-radio div {
    position: relative;
    flex: 1;
}
.inline-radio div img {
    width:120px;
}
.inline-radio input {
    width: 100%;
    height: 60px;
    opacity: 0;
}

.inline-radio label {
    position: absolute;
    top: 0; left: 0;
    color: #b6b6b6;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-right: 1px solid #ccc;
}

.inline-radio div:last-child label {
    border-right: 0;
}

.inline-radio input:checked + label {
    background: #ccc;
    font-weight: 500;
    color: #fff;
}

.selected_photo {
    border:1px solid #ccc;
    padding:3px;
    margin:5px 0;
    width:200px;
}
.selected_photo > img {
    width:100%;
}
textarea {
    width:100%;
    border:1px solid #ccc;
    border-radius:4px;
    height:280px;
    padding:10px;
}
p.thanks {
    padding:100px 0;
    text-align:center;
    color:#F6C;
}
