@charset "utf-8";

.cue {
    margin-bottom: 14px;
    text-align: center;
}

.contact {
    width: 930px;
    max-width: 90%;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
}

.formarea {
    background-color: #F4F3EE;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.formarea dt {
    width: 200px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}

.formarea dd {
    width: calc(100% - 200px);
    padding: 15px 0;
}

.formarea dt .required::after {
    content: "必須";
    font-size: 11px;
    color: #ed4f32;
    margin-left: 10px;
}

.inputtext {
    width: 100%;
    max-width: 280px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}


.radiobutton {
    display: block;
    margin-top: 20px;
}

.radiobutton:first-child {
    margin-top: 0;
}

.radiobutton input {
    margin-right: 8px;
}

.message {
    width: 100%;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
}

.confirmtext {
    font-size: 14px;
    line-height: 22px;
}

.button {
    text-align: center;
}

.submitbutton {
    color: #ffffff;
    background-color: #5A6877;
    border: 2px solid #5A6877;
    min-width: 180px;
    line-height: 48px;
    border-radius: 24px;
    font-size: 14px;
    margin-top: 20px;
}
  
.submitbutton:hover {
    color: #5A6877;
    background-color: #ffffff;
  }

.confirmtext {
    margin-top: 15px;
    text-align: center;
}

.confirmtext a {
    color: #C4B738;
}

  .confirmtext a:hover {
    color: #6989A6;
}

.progresscontainer {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
    padding: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #C6C6C6;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.label {
    margin-top: 10px;
    font-size: 14px;
    color: #8E8E8E;
}

.line {
    height: 3px;
    width: 100px;
    background-color: #C6C6C6;
    margin-bottom: 22px;
}

.step.active .circle {
    background-color: #5A6877;
}

.step.active .label {
    color: #040B18;
    font-weight: bold;
}

@media (max-width: 800px) {

.cue {
    font-size: 15px;
}

.formarea dt,
.formarea dd {
    width: 100%;
}

.formarea dt {
    padding-top: 20px;
}

.formarea dd {
    padding-top: 5px;
}

.formarea dt {
    padding-bottom: 0;
}

}