@charset "UTF-8";

/* フォームページ */
/* 基本 */

.flex {
    display: flex;
    justify-content: space-between;
}

.box {
    display: flex;
}

/* 中身 */

.section-title {
    /* background-color: aqua; */
    margin: 30px 0;
}

.hissu {
    /* background-color: blue; */
    text-align: center;
    color: #f97316;
}

.error1 {
    text-align: center;
    margin: 10px auto;
    color: #f97316;
}

/* 入力欄 */

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #0f172a;
    border-radius: 5px;
    font-size: 18px;
}

input:focus {
    outline-color: #f97316;
}

.alert {
    /* display: none; */
    display: block;
    /* background-color: #0f172a; */
    margin-top: 5px;
    color: #f97316;
    font-size: 14px;
}

.alert::before {
    content: "（！）";
    margin-top: 5px;
    color: #f97316;
}

dl dt {
    font-size: 20px;
}

dl .q {
    margin-bottom: 30px;
}

select {
    text-align: center;
}

select:focus {
    outline-color: #f97316;
}

.guide {
    font-size: 18px;
}

label {
    display: inline-block;
    font-size: 18px;
    margin-right: 20px;
}

input[type="radio"] {
    width: auto;
    accent-color: #f97316;
}

textarea {
    width: 50%;
    height: 150px;
    resize: none;
}

textarea:focus {
    outline-color: #f97316;
}

.kakuninn {
    text-align: center;
}

.kakunin {
    display: inline-block;

    border-bottom: 2px solid #f97316;

}

.submitbtn {
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
}

input[type="submit"] {
    width: auto;
    cursor: pointer;
    color: #0f172a;
    background: #f97316;
    border: 0;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    font-size: 1.4em;
    padding: 10px 25px;
    font-weight: bold;
    box-shadow: 0 4px #0f172a;
    transition: 0.2s;
}

input[type="submit"]:active{
    transform: translateY(4px);
    box-shadow: 0 0 0 #0f172a;
}

input[type="submit"]:focus {
    outline: 2px solid #0f172a;
}

input[type="submit"]:hover {
    opacity: 0.8;
}