@charset "UTF-8";
/*---------- header ----------*/

/*---------- main ----------*/
.fl_heading {
    padding: 10rem 0 0;
    background-image: url(../images/shop-mv.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    height: 24rem;
}
.fl_heading::before {
    background: #000;
    opacity: 0.7;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.fl_heading .title-h1 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: center;
}

.fl_contact_form{
    padding: 8rem 0;
    font-size: 16px;
    font-weight: bold;
}
.fl_contact_form h2 {
    font-size: 1.4rem;
    font-weight: normal;
    position: relative;
    margin: 0 auto 2rem;
    padding: 7px 10px;
    background: #000;
    width: fit-content;
    color: #fff;
}
.fl_contact_form .form-group{
    margin-bottom: 30px;
}
.fl_contact_form .required p > label::before{
    content: "必須";
    background-color: black;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 9px;
    padding-right: 8px;
    margin-right: 10px;
}

.fl_contact_form .non-required p > label::before{
    content: "任意";
    background-color: #8E8E8E;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 9px;
    padding-right: 8px;
    margin-right: 10px;
}

.fl_contact_form .wpcf7
{
    margin-top: 3rem;
}
.fl_contact_form .wpcf7-list-item {
    margin-left: 0;
    margin-right: 1em;
    margin-top: 10px;
}
.fl_contact_form .wpcf7-list-item > label {
    display: flex;
    align-items: center;
}

.fl_contact_form input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: transparent;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: #C4C4C4;
    border: 0.18em solid white;
    border-radius: 50%;
    display: grid;
    place-content: center;
    cursor: pointer;
    width: 23px;
    height: 23px;
    margin-right: 10px;
}

.fl_contact_form input[type="radio"]::before {
    content: "";
    width: 0.7em;
    height: 0.7em;
    border-radius: 50%;
    transform: scale(0);
    box-shadow: inset 1em 1em white;
    position: relative;
    top: 0.1px;
}

.fl_contact_form .wpcf7-radio .last input[type="radio"]::before{
    left: 1px;
}

.fl_contact_form input[type="radio"]:checked {
    background-image: linear-gradient(to bottom, #E60012, #E60012, #E60012, #E60012, #E60012);
}

.fl_contact_form input[type="radio"]:checked::before {
    transform: scale(1);
}

.fl_contact_form input[type="checkbox"] {
    appearance: none;
    background-color: white;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #CAC9C5;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.fl_contact_form input[type="checkbox"]::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    transform: scale(0);
    box-shadow: inset 1em 1em black;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 62%, 49% 100%, 100% 16%, 87% 0%, 43% 62%);
}


.fl_contact_form input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.fl_contact_form .wpcf7-text{
    background-color: white;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    border-radius: 7px;
}

.fl_contact_form .wpcf7-textarea{
    background-color: white;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    border-radius: 7px;
}

.fl_contact_form .wpcf7-not-valid-tip{
    color: white;
}

.fl_contact_form .privacy .wpcf7-not-valid-tip {
    font-size: 1em;
    font-weight: normal;
    display: block;
    position: absolute;
    color: white;
    min-width: 500px;
    margin-bottom: 20px;
}

.fl_contact_form .privacy > p {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 870px;
}
.fl_contact_form .privacy label{
    display: flex;
}

.fl_contact_form .privacy .wpcf7-checkbox .wpcf7-list-item-label{
    display: none;
}

.fl_contact_form .form-submit{
    text-align: center;
}
.fl_contact_form .form-submit .wpcf7-submit{
    background-color: white;
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    color: #E60012;
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
}

.fl_contact_form .form-submit .wpcf7-submit:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}

.fl_contact_form .privacy-policy-link {
    text-decoration: underline;
}

@media screen and (max-width: 768.98px) {
}