@charset "utf-8";
/* =======================
section--contact-form
======================== */
.section-sub  {
    padding: 0 5.33%;
}

/* pc 769px */
@media screen and (min-width: 769px) {
    .section-sub {
        padding: 0 11.11%;
    }
}

/* =======================
section-contact-form
======================== */
.title_txt {
    text-align: justify;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
}

.title_txt a {
    border-bottom: 1px solid  #A6A9C1;
}

.title_txt a:hover {
    color: #A6A9C1;
    transition: 0.4s;
}

.brPc {
    display: none;
}

/* pc 769px */
@media screen and (min-width: 769px) {
    .title_txt {
        text-align: center;
        margin-bottom: 60px;
    }

    .brPc {
        display: block;
    }
}

/* =======================
section-application
======================== */
.wpcf7-radio {
    display: flex;
    flex-direction: column;
}

.form__list {
    border-top: 1px solid #A6A9C1;
    border-bottom: 1px solid  #A6A9C1;
    padding: 40px 0 48px;
}

.form {
    margin-bottom: 72px;
}

.form__category,
.form__parts--policy {
    font-family: "Zen Old Mincho";
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.9px;
}

.form__parts--policy a {
    border-bottom: 1px solid  #A6A9C1;
}

.form__parts--policy a:hover {
    color: #A6A9C1;
    transition: 0.4s;
}

.form__parts:not(:first-child) {
    margin-top: 40px;
}

.form__category span {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.9px;
}

.group {
    text-align: justify;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-top: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
.group__textArea textarea {
    letter-spacing: 0.8px;
    display: block;
    width: 100%;
    background-color: #fff;
    border: 2px solid #202234;
    padding: 7px 12px 9px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
.group__textArea textarea:focus {
    outline: solid 1px #202234;
}

::placeholder {
    color: #B5B5B5;
}

.group__category {
    display: flex;
    flex-direction: column;
}

input[type="radio"] {
    margin-top: 2px;
    width: 14px;
    height: 14px;
    outline: solid 2px #202234;
    background-color: #fff;
    border-radius: 50%;
    vertical-align: -1px;
    margin-right: 8px;
}

input[type="radio"]:checked::after{
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #202234;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"]:checked{
    position: relative;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid #202234;
    background: #fff;
    margin-right: 8px;
    vertical-align: -2px;
}

input[type="checkbox"]:checked {
    position: relative;
}

input[type="checkbox"]:checked::after {
    display: inline-block;
    content: '';
    width: 10px;
    height: 5px;
    border-left: 2px solid #202234;
    border-bottom: 2px solid #202234;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.form__parts--policy {
    padding-top: 16px;
    display: flex;
    justify-content: center;
}

.btn--form {
    font-family: "Zen Old Mincho";
    background-color: #fff;
    border: 2px solid #202234;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    padding: 8px 46px;
    display: inline-block;
    position: relative;
}

.btn--form::after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: 85%;
    width: 40px;
    height: 5px;
    border: none;
    border-right: 2px solid #202234;
    border-bottom: 1px solid #202234;
    transform: skew(45deg);
    transition: .3s;
}

.btn--form:hover::after {
  position: absolute;
  top: calc(50% - 4px);
  left: 85%;
  width: 60px;
  height: 5px;
}

.btn--form:hover {
    background-color: rgba(32, 34, 52, 0.7);
    color: #FFF;
    transition: 0.4s;
}

.form__parts--submit {
    text-align: center;
    justify-content: center;
}

.wpcf7-not-valid-tip {
    color: #D10000;
}

.screen-reader-response,
.wpcf7-response-output {
    text-align: center;
}

.screen-reader-response {
    margin-bottom: 60px;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
}

.wpcf7-response-output {
    margin-top: 40px;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
}

/* pc 769px */
@media screen and (min-width: 769px) {
    .form {
        margin-bottom: 120px;
    }

    .form__list {
        padding: 72px 0;
    }
    .form__parts {
        width: 82.68%;
        display: flex;
        margin: 0 auto;
    }

    .form__parts:not(:first-child) {
        margin-top: 56px;
    }

    .form__category {
        width: 31.54%;
    }
    
    .form__category,
    .form__parts--policy, 
    input[type="text"], 
    input[type="email"],
    input[type="tel"],
    .group__textArea textarea, 
    .group {
        font-family: "Zen Old Mincho";
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.9px;
    }

    .group__category {
        gap: 8px 0;
    }

    input[type="radio"] {
        margin-right: 12px;
    }

    .form__category span {
        font-size: 1.6rem;
        line-height: 1.5;
        letter-spacing: 0.8px;
        margin-left: 4px;
    }

    .group {
        width: 68.49%;
        margin-top: 0;
    }

    .form__parts--policy {
        padding-top: 80px;
    }

    input[type="checkbox"] {
        margin-right: 16px;
    }

}