.up_contact {
    padding: var(--section-padding-pc) 0;
    background-color: #fabf62;
}

.section_title {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.section_title .title_en {
    font-family: var(--font-din);
    font-size: 5rem;
    line-height: 1;
    font-weight: 600;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd89a;
    z-index: 0;
    letter-spacing: .1em;
    text-align: center;
}
.section_title .title_jp {
    position: relative;
    z-index: 1;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-black);
    text-align: center;
    line-height: 1.5;
}
.precautions {
    border-radius: 8px;
    background-color: var(--color-white);
    padding: 25px;
    border: solid 3px var(--color-black);
}
.precautions .precautions_title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-orange);
    text-decoration: underline;
}
.precaution_list {
    font-size: 1.45rem;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    text-indent: -1em;
    padding-left: 1em;
}
.precaution_list li::before {
    content: "※";
}
.contact_table {
    margin-top: 40px;
}
.contact_table .row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
}
.contact_table .row .th {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    padding-left: 12px;
}
.contact_table .row .th::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.contact_table .row .th .req {
    font-size: 1.2rem;
    background-color: var(--color-orange);
    padding: 0 10px;
    border-radius: 3px;
    color: var(--color-white);
    font-weight: 400;
    margin-left: 5px;
}
.contact_table .row .th .any {
    font-size: 1.2rem;
    background-color: var(--color-white);
    padding: 0 10px;
    border-radius: 3px;
    color: var(--color-orange);
    font-weight: 400;
    margin-left: 5px;
}
.contact_table .row .td {
    width: 100%;
}
.contact_table .row .td input[type="text"],
.contact_table .row .td input[type="email"],
.contact_table .row .td input[type="tel"] {
    width: 100%;
    border-radius: 6px;
    border: solid 2px #484848;
    padding: 12px 10px;
    font-size: 1.6rem;
}
.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
}
.wpcf7-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid #d9d9d9;
    border-radius: 50%;
    background: #fff;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.wpcf7-checkbox input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f39800;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}
.wpcf7-checkbox input[type="checkbox"]:checked {
    border-color: #f39800;
}
.wpcf7-checkbox input[type="checkbox"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}
.contact_table .row .td textarea {
    width: 100%;
    border-radius: 6px;
    border: solid 2px #484848;
    padding: 12px 10px;
    font-size: 1.6rem;
    height: 10em;
}
.wpcf7-list-item {
    margin: 0 1em 0 0;
}

.pp_wrap {
    border-radius: 8px;
    background-color: var(--color-white);
    padding: 25px;
    border: solid 3px var(--color-black);
    width: 100%;
    height: 200px;
    overflow: auto;
}
.pp_wrap .pp_head {
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 15px;
}
.pp_wrap .pp_text {
    font-size: 1.4rem;
    text-align: justify;
    line-height: 1.75;
}
.pp_wrap .pp_ttl {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 20px 0 10px;
}
.pp_wrap .pp_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 15px;
}
.pp_wrap .pp_list li {
    padding-left: 1em;
    position: relative;
}
.pp_wrap .pp_list li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #484848;
    position: absolute;
    top: .6em;
    left: 0;
}
.consent {
    text-align: center;
    margin-top: 20px;
}
.consent .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.consent .wpcf7-list-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid #d9d9d9;
    border-radius: 50%;
    background: #fff;
    margin: 0;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}
.consent .wpcf7-list-item input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f39800;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}
.consent .wpcf7-list-item input[type="checkbox"]:checked {
    border-color: #f39800;
}
.consent .wpcf7-list-item input[type="checkbox"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}
.consent .wpcf7-list-item-label {
    line-height: 1.5;
    cursor: pointer;
}
.submit_wrap {
    margin: 20px auto 0;
}
.submit_wrap input[type="submit"] {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    width: 320px;
    border: solid 3px var(--color-black);
    padding: 14px 0;
    border-radius: 100px;
    margin: 0 auto;
    display: block;
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    cursor: pointer;
}
.submit_wrap input[type="submit"]:disabled {
    background-color: #d9d9d9;
    box-shadow: none;
}
.submit_wrap input[type="submit"]:hover {
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0);
    transform: translateY(2px);
}
.submit_wrap input[type="submit"]:disabled:hover {
    transform: unset;
}

.up_default {
    padding: var(--section-padding-pc) 0;
    background-color: #fff;
}
.up_default .section_title .title_en {
    color: #f1f1f1;
}
.company_table .row {
    border-bottom: solid 1px #eaeaea;
    display: flex;
    padding: 20px 0;
}
.company_table .th {
    width: 100px;
    font-weight: 600;
}
.company_table .td {
    width: calc(100% - 100px);
    font-size: 1.5rem;
}
.up_inner {
    padding-top: 20px;
}
.up_inner p {
    font-size: 1.5rem;
    text-align: justify;
}
.up_inner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 20px 0 10px;
}
.up_inner ul {
    font-size: 1.4rem;
    list-style: disc;
    text-indent: -.5em;
    padding-left: 1.5em;
    margin: 10px 0;
}
.up_inner ol {
    font-size: 1.4rem;
    list-style: decimal;
    padding-left: 1em;
    margin: 10px 0;
}