@charset "UTF-8";
.contact-form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 1rem 0;
}
.contact-form dt,
.contact-form dd {
    padding: 1rem;
}
.contact-form dt {
    position: relative;
    width: 30%;
    flex-wrap: wrap;
    display: flex;
    font-weight: 500;
    padding-top: 3.2rem;
    padding-right: 30px;
}
@media screen and (max-width: 767px) {
    .contact-form dt {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1.6rem;
        padding-left: 0;
    }
}

.contact-form dt .form-title {
    line-height: 1;
    margin-right: 10px;
    padding-top: 2px;
}

.contact-form dt small {
    font-size: 12px;
    display: block;
}

.contact-form dt .form-label {
    width: 40px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    background-color: #343538;
    border-radius: 10px;
    display: inline-block;
    font-size: 1.1rem;
    text-align: center;
}
@media only screen and (max-width: 767px){
    .contact-form dt .form-label {
        width: 45px;
        right: 10px;
    }
}
.contact-form dt .ninni {
    background: #fff;
    border: 1px solid #343538;
    color: #343538;
}
.contact-form dd {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4rem;
    padding-right: 4rem;
}
@media only screen and (max-width: 1199px){
    .contact-form dd {
        width: 70%;
    }
}
@media screen and (max-width: 767px) {
    .contact-form dd {
        width: 100%;
        display: block;
        padding: 10px 0 0;
    }
    .region-flex{
        display: block;
    }
}
.contact-form dd input[type="radio"] {
    display: inline-block;
    margin-right: 10px;
}

.contact-form dd input[type="text"],
.contact-form dd input[type="password"],
.contact-form dd input[type="email"],
.contact-form dd input[type="tel"],
.contact-form dd input[type="number"],
.contact-form dd select{
    padding: 3px 10px;
    height: 60px;
    width: 100%;
    color: #333333;
    font-size: 1.4rem;
    background-color: #F5F5F5;
}
.contact-form dd input[type="text"]:focus,
.contact-form dd input[type="password"]:focus,
.contact-form dd input[type="email"]:focus,
.contact-form dd input[type="tel"]:focus,
.contact-form dd input[type="number"]:focus{
    background-color: #dedada;
}
.contact-form dd input[type="text"]::placeholder,
.contact-form dd input[type="password"]::placeholder,
.contact-form dd input[type="email"]::placeholder,
.contact-form dd input[type="tel"]::placeholder {
    font-weight: normal;
    color: #808080;
    line-height: 1.5;
    font-family: "IBM Plex Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
.contact-form dd input[type="text"],
.contact-form dd input[type="password"],
.contact-form dd input[type="email"],
.contact-form dd input[type="tel"],
.contact-form dd input[type="number"],
.contact-form dd select{
    height: 40px;
}
.contact-form dd input[type="text"]::placeholder,
.contact-form dd input[type="password"]::placeholder,
.contact-form dd input[type="email"]::placeholder,
    .contact-form dd input[type="tel"]::placeholder {
        font-size: 13px;
    }
}
.contact-form dd .ipt-address {
    max-width: 415px;
}

.contact-form dd input,
.contact-form dd select,
.contact-form dd optgroup,
.contact-form dd option,
.contact-form dd textarea {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: normal;
    color: #333333;
    font-size: 1.5rem;
    background-color: #F5F5F5;
    border: none;
}
@media screen and (max-width: 767px) {
.contact-form dd input,
.contact-form dd select,
.contact-form dd optgroup,
.contact-form dd option,
    .contact-form dd textarea {
        font-size: 14px;
    }
}
.contact-form dd .form-row {
    display: flex;
}
.contact-form dd .form-zip {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-zip-btn {
    background: #ba7b70;
    border-radius: 5px;
    padding: 7px 10px;
    line-height: 1.5;
    margin-left: 20px;
    border: none;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .form-zip-btn {
        margin: 10px 0;
        display: block;
        margin-left: 40px;
    }
}

.form-zip-btn:hover {
    opacity: 0.8;
    transition: all 0.5s;
}

.form-state {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-form dd .form-zip input[type="text"] {
    width: 135px;
}

.box-select {
  position: relative;
  display: inline-block;
    width: 280px;
    max-width: 100%;
    z-index: 1;
}

.box-select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: none;
}

.box-select select::-ms-expand {
    display: none;
}
.box-select:after {
  position: absolute;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid transparent;
  border-top: 9px solid #222;
  right: 13px;
  top: 40%;
}

select {
  width: 100%;
  padding: 5px 20px 5px 10px;
  height: 40px;
  border: 1px solid #888888;
  color: #999999;
  background-color: #f6f6f6;
  letter-spacing: 0.15em;
}

select:focus {
  border: 1px solid #d9dcdb;
  outline: none;
}

select option {
  color: #313131;
}
.contact-form dd textarea {
    width: 100%;
    height: 240px;
    padding: 5px 10px;
    resize: none;
}

.contact-form dd textarea::placeholder {
    color: #a8a8a8;
    line-height: 1.5;
}
.contact-form dd .list-radio li {
    position: relative;
    margin: 0.3rem 0;
    margin-right: 4rem;
}
.contact-form dd .list-radio li:last-child{
    margin-right: 0;
}
@media screen and (max-width: 767px) {
    .contact-form dd .list-radio .other input[type="text"]{
        margin-left: 0;
    }
}
@media only screen and (max-width: 480px){
    .contact-form dd .list-radio li{
        width: 100%;
    }
}
.contact-form dd .list-radio input[type="radio"] {
    width: 17px;
    height: 17px;
    border-color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
}
.contact-form dd .list-radio label{
    position: relative;
    padding-left: 20px;
    display: inline-block;
}
.contact-form dd .list-radio label:before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: 1px solid #707070;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.contact-form dd .list-radio label:after{
    content: '';
    position: absolute;
    top: 11px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #00478D;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 0;
}
@media screen and (max-width: 767px) {
    .contact-form dd .list-radio label:before {
        top: 4px;
    }
    .contact-form dd .list-radio label:after {
        top: 6px;
    }
}
.contact-form dd .list-radio input[type="radio"]:checked+label:before {
    border-color: #004EA2;
}
.contact-form dd .list-radio input[type="radio"]:checked+label:after {
    opacity: 1;
}
.contact-form dd .list-checkbox{
    display: flex;
    flex-wrap: wrap;
}
.contact-form dd .list-checkbox li {
    padding: 5px 30px;
    padding-right: 0;
    position: relative;
    margin-right: 2%;
    margin: 3px 0;
    width: 25%;
}

.contact-form dd .list-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-color: #d9dcdb;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .contact-form dd .list-checkbox li {
        width: 48%;
    }
}
@media screen and (max-width: 480px) {
    .contact-form dd .list-checkbox li{
        font-size: 13px;
        padding-left: 25px;
    }
    .contact-form dd .list-checkbox input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }
}
.contact-form dd .select_time {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 50%;
}

.contact-form dd .select_time li {
    width: 47%;
}

.contact-form dd .select_time li select {
    width: calc(100% - 30px);
    height: 36px;
    border: 1px solid #000000;
}

.contact-form dd .flex .flex {
    margin: 5px 0;
    flex-wrap: nowrap;
}

.contact-submit {
    margin: 4rem 0;
    text-align: center;
}
.contact-submit #ck1{
    border: 1px solid #004EA2;
    width: 17px;
    height: 17px;
    position: relative;
    top: 2px;
}
@media screen and (max-width: 767px) {
    .contact-submit {
        margin: 2rem 0;
        text-align: center;
    }
}
.contact-submit-btn{
    cursor: pointer;
}
.contact-submit-btn .cm-btn01__text{
    border: none;
    outline: none;
    cursor: pointer;
}