:root {
  --base-color: #003E90;
  --accent-color: #F2F8FF;
  --gray-color: #c35200;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #1D1D1D;
}

.label:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--base-color);
    margin-top: 7px;
    margin-right: 7px;
}

.badge-required, legend .badge-required {
  background-color: var(--accent-color);
  color: var(--badge-background-color);
  font-size: 0.7em;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"] {
  border-radius: 8px;
}

input[type="checkbox"] {
  border-radius: 4px;
}

select {
  border-radius: 8px;
}

textarea {
    border-radius: 8px;
}

.content-confirmation .form-column-ef219323-5729-4763-bc7d-7b84b4afa13b {
    display: none;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b .label {
    display: none;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b .option-text {
    display: none;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b .input-group {
    width: fit-content;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b fieldset {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    column-gap: 12px;
    border: none;
    margin: 0;
    padding: 0;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b label.option {
    margin: 0;
    padding: 0;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b input[type="checkbox"] {
    top: 0;
    bottom: 0;
    left: 0;
    margin: 10px auto 0;
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b a::hover {
    color: var(--base-color);
}

.form-column-ef219323-5729-4763-bc7d-7b84b4afa13b p {

}

.button {
    width: 100%;
    max-width: 800px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 240px;
    font-size: 1.8rem;
    font-weight: 500;
}

.button-group {
  position: relative;
}

.button-confirm::before {
    content: "";
    background-image: url(https://willregulus.jp/assets/img/common/ic_mess.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 24px;
    position: absolute;
    left: 33%;
    top: 50%;
    transform: translateY(-50%);
}

.form-column-select,
.form-column-prefecture-jp {
    position: relative;
}

.form-column-select select,
.form-column-prefecture-jp select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-column-select:after,
.form-column-prefecture-jp:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 12px;
    background-image: url(https://willregulus.jp/assets/img/common/ar_down.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    position: absolute;
    right: 20px;
    bottom: 16px;
}

select option:first-child {
  color: #7e7e7e;
}

select option {
  color: #212121;
}



@media screen and (max-width: 768px) {
    .form-column {
        margin-bottom: 1.5em;
    }
    .button {
        height: 80px;
        width: 295px;
        font-size: 16px;
        padding-left: 60px;
    }
    .button-confirm::before {
        left: 54px;
    }
    .label {
        font-size: 14px;
    }
    .button-group {
        max-width: 295px;
        margin-left: auto;
        margin-right: auto;
    }
}
