@charset "utf-8";
/* CSS Document */

body {
    /* font-family: 'Zen Kaku Gothic New', sans-serif; */
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #333333;
    text-decoration: none;
}

.contact-container {
    width: 60%;
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    gap: 16px;
}

.contact-section-title {
    font-size: 6rem;
    font-weight: bold;
    color: var(--skin-beige-light);
    margin-bottom: 16px;
    text-align: left;
}

.contact-section-subtitle {
    color: var(--font-color);
    font-size: 2rem;
    margin-bottom: 8px;
    text-align: left;
}

.tac {
    text-align: center;
}

/* .select-contact {
    display: flex;
} */

.select-contact-p {
    width: 40%;;
}

.select-contact-list {
    width: 100%;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    text-align: left;
    font-weight: normal;
    max-width: 320px;
    height: 31px;
    width: 320px;
}
.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    text-align: left;
    font-weight: normal;
    max-width: 320px;
    height: 31px;
    width: 320px;
}

.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel {
    text-align: left;
    font-weight: normal;
    max-width: 320px;
    height: 31px;
    width: 320px;
}

.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    text-align: left;
    font-weight: normal;
    max-width: 515px;
    height: 182px;
    width: 515px;
}

.contact-container {
    width: 100%;
}

.contact-items {
    justify-content: center;
    width: 800px;
    max-width: 800px;
    margin: 0 auto;
}

.careers-contact {
    margin: 0 auto;
}

.wpcf7-list-item-label {
    padding-left: 8px;
}

.wpcf7-list-item {
    display: flex;
    align-items: center;
}

.contact-description-wrapper {
    margin-top: 40px;
    text-align: center;
    padding-bottom: 64px;
}

.contact-items {
    display: block;
}

.contact-item {
    text-align: left;
    font-weight: normal;
    width: 200px;
}

.contact-box {
    border: none;
}

.contact-tag {
    margin: 16px 0;
    display: block;
}

.contact-message-box {
    /* width: 51px; */
    height: 182px;
}

.contact-message-box textarea {
    max-width: 515px;
    height: 182px;
}

.aifs {
    align-items: start;
}

input,
textarea {
    border: none;
    outline: none;
    box-shadow: none;
    height: 31px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
}

/* デフォルトを消す */
.checkbox-wrap input {
    display: none;
}

/* 見た目の四角 */
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    background: #f3f3f3;
    border-radius: 4px;
    position: relative;
    transition: 0.2s;
}

/* チェックが入った時 */
.checkbox-wrap input:checked + .checkmark {
    background: var(--skin-beige);;
    border-color: var(--skin-beige);
}

/* チェックマーク */
.checkbox-wrap input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.select-contact-list .wpcf7-list-item label {
    display: flex;
    align-items: center;
}

.select-contact-list .wpcf7-list-item-label {
    margin-left: 8px;
}

.submit-contact {
    background-color: var(--skin-beige);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    height: auto;
    font-family: 'Shippori Mincho', 'Noto Serif JP';
}

.agree-desc {
    text-align: center;
    line-height: 1;
    width: 100%;
}

.agree-desc label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
    padding: 24px 0;
}

.wpcf7-list-item-label {
    font-weight: normal;
}

.wpcf7-list-item {
    justify-content: center;
}

.wpcf7-form-control.wpcf7-radio {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.arrange {
    margin: 0 auto;
    max-width: 600px;
}

/* .design-btn {
    background-color: var(--skin-beige);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    height: auto;
}

.design-btn:hover {
    background-color: var(--skin-beige-light);
} */

@media screen and (max-width: 768px) {
    .contact-container {
        width: 90%;
        padding: 10px;
    }

    .contact-section-title {
        font-size: 4rem;
        text-align: center;
    }

    .contact-section-subtitle {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-items {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        width: 100%;
    }

    .contact-tag {
        display: flex;
        flex-direction: column;
    }

    .select-contact {
        flex-direction: column;
    }

    .wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    text-align: left;
    font-weight: normal;
    height: 31px;
    }
    .wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    width: 100%;
    text-align: left;
    font-weight: normal;
    height: 31px;
    }

    .wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel {
    width: 100%;
    text-align: left;
    font-weight: normal;
    height: 31px;
    }

    .wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    text-align: left;
    font-weight: normal;
    height: 182px;
    }

}

@media screen and (max-width: 768px) {
    .thanks-text {
        padding: 0 20px;
    }
}

/* =========================
   High-End Minimal Contact Form Design
   ========================= */

/* ---- Base ---- */
.arrange {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 60px;
    background: #fff;
}

/* Label */
.arrange label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 500;
    color: #777;
    margin-bottom: 14px;
}

/* Input / Textarea */
.arrange input,
.arrange textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 18px 4px;
    margin-bottom: 56px;
    font-size: 16px;
    background: transparent;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

/* Focus */
.arrange input:focus,
.arrange textarea:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

/* Textarea */
.arrange textarea {
    min-height: 160px;
    resize: none;
}

/* Placeholder */
.arrange input::placeholder,
.arrange textarea::placeholder {
    color: #bbb;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Button Area */
.design-btn {
    text-align: center;
    margin-top: 40px;
}

/* Submit Button */
.design-btn input[type="submit"] {
    background: transparent;
    border: 1px solid  var(--skin-beige);
    color:  var(--skin-beige);
    padding: 18px 72px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    min-height: 48px;
}

/* Hover */
.design-btn input[type="submit"]:hover {
    background: var(--skin-beige);
    color: #fff;
}

/* Error */
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: -40px;
    margin-bottom: 40px;
}

.wpcf7-response-output {
    border: none;
    padding: 0;
    font-size: 14px;
    margin-top: 40px;
    text-align: center;
}


/* =========================
   Responsive Design
   ========================= */

/* --- Tablet --- */
@media (max-width: 1024px) {
    .arrange {
        padding: 80px 40px;
    }

    .arrange input,
    .arrange textarea {
        margin-bottom: 48px;
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .arrange {
        padding: 60px 24px;
    }

    .arrange label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .arrange input,
    .arrange textarea {
        padding: 16px 2px;
        font-size: 15px;
        margin-bottom: 40px;
    }

    .design-btn input[type="submit"] {
        width: 100%;
        padding: 16px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .arrange {
        padding: 48px 18px;
    }

    .arrange input,
    .arrange textarea {
        font-size: 14px;
    }
}