@charset "UTF-8";
h2 {
    text-align: center;
}
h2 span{
    display: block;
    font-size: 1.8rem;
    text-align: center;
    font-family: var(--jp);
    margin-top: 16px;
}
.cmn-status-msg {
    color: red;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
form [type="text"],
form [type="email"],
form [type="password"],
form [type="tel"],
form [type="date"],
form [type="number"],
form textarea {
    size: initial !important;
    width: 100%;
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form select {
    size: initial !important;
    width: 100%;
    padding: .8em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}
.full{
    width: 100% !important;
}
.middle{
    width: 80% !important;
}
.half-width{
    width: 50% !important;
}
.entry-message {
    text-align: right;
    margin-bottom: 24px;
}

button {
    background: #bfbfbf;
    border: none;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 4px;
    margin-left: 10px;
    width: 130px;
}
input[type="submit"] {
    border: 1px solid var(--color1);
    background: #fff;
    color: var(--color1);
    padding: 15px 0;
    width: 80%;
    border: none;
    cursor: pointer;
    margin: 16px auto 0;
    display: block;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
form ul.halfList li input[type="submit"] {
    margin-top: 0;
}
input[type="submit"]:hover {
    color: var(--black);
    background: var(--color1);
    border: 1px solid var(--black);
}
.entry-submit-section{
    text-align: center;
    margin-top: 10%;
}
.form-wrap{
    width: 70%;
    margin: 0 auto;
}

.cmt {
    width: 70%;
    margin: 24px auto;
}
.cmt a {
    text-decoration: underline;
}

@media screen and (max-width: 1200px){
    .form-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    input[type="submit"] {
        width: 80%;
        padding: 16px 0;
    }
    .half {
        width: 80% !important;
    }
    .cmt {
        width: 100%;
    }
      
}
@media screen and (max-width: 420px){
    input[type="submit"] {
        width: 100%;
    }
}

/* form */
form ul li{
    display: flex;
    margin-bottom: 24px;
    align-items: center;
}

form ul li .myTitle{
    width: 200px;
    font-weight: bold;
}
form ul li .myTitle.wide {
    width: 100%;
}
form ul li .detail{
    width: calc(100% - 200px);
}
form ul.halfList {
    /* width: calc(70% - 200px); */
    display: flex;
    gap: 24px;
    margin-bottom: 0 !important;
}
form ul.halfList li {
    margin-bottom: 0 !important;
}
@media screen and (max-width: 768px){
    form ul li {
        display: block;
    }

    form ul li.full {
        display: flex;
    }

    form ul li .myTitle,
    form ul li .detail{
        width: 100%;
    }
    form ul li .myTitle{
        margin-bottom: 8px;
    }
}

/* conf */
.subpage.conf .submit-wrap{
    display: flex;
    justify-content: space-between;
}
.subpage.conf .submit-wrap input{
    width: calc(50% - 24px);
}
input.back {
    background: #9f9f9f;
    color: #eee;
    padding: 10px 0;
}
@media screen and (max-width: 420px){
    .subpage.conf .submit-wrap {
        display: block;
    }
    .subpage.conf .submit-wrap input {
        width: 100%;
    }
    .ums-message.text-center {
        text-align: left;
    }
}

/* comp */
.subpage.comp .ums-message p{
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 80px;
    display: block !important;
}
.subpage.comp .topBack{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.subpage.comp .topBack .btn{
    text-align: center;
    display: block;
    border: 1px solid #ccc;
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #ccc;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
.subpage.comp .topBack .btn:hover{
    opacity: 0.5;
}
.subpage.comp .topBack .btn.btn-col1{
    border: none;
    background: var(--color1);
    color: #fff;
}
.subpage.comp .topBack .btn.btn-col2{
    border: 1px solid #7c7c7c;
    color: #7c7c7c;
    margin-top: 3%;
}
.subpage.comp .topBack .btn.btn-col2:hover{
    opacity: 0.5;
}
@media screen and (max-width: 420px){
    .subpage.comp .ums-message p {
        text-align: left;
        font-size: 1.6rem;
    }
    .subpage.comp .topBack .btn {
        width: 100%;
    }
}
#modify a.btn-modify{
    text-align: center;
    display: block;
    padding: 15px 0;
    width: 100%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #7c7c7c;
    border: 1px solid #7c7c7c;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
#modify a.btn-modify:hover{
    opacity: 0.5;
}