@charset "utf-8";
/*======================================
contact
=======================================*/
.section-title-en {
    border: 1px solid #001E6E;
    color: #001E6E;
    font-size: 1.0rem;
    letter-spacing: .2rem;
    padding: 2px 3px 2px 5px;
    margin: 10px 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    position: relative;
    display: inline-block;
}

.section-title {
    font-family: Lustria, 游明朝体, "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
    font-size: 3.0rem;
    letter-spacing: .3rem;
    position: relative;
}
.section-title:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 30px;
    margin-left: -15px;
    height: 2px;
    background-color: #F6E821;
}

/*------------------------------------*/
.page-section-wrap {
    background-image: url(../img/privacy/privacy_bg.jpg);
}
.page-section-wrap:before,
.page-section-wrap:after {
    content: none;
}
.page-section-wrap header {
     padding:0 0 10px 0;
}
.page-section {
    padding: 125px 0 80px;
    background-color: #fff;
}
.page-section .page-title {
    color: #001E6E;
}

@media only screen and (max-width: 767px) {
    .page-section {
        padding: 85px 0 30px;
    }
}

footer {
    background-image: url(../img/common/footer_bg02.jpg);
}

/*======================================
contact form
=======================================*/

/* Lead Text */
.contact-lead {
    font-size: 15px;
    line-height: 1.8;
    margin-top: -10px;
    margin-bottom: 60px;
    text-align: center;
}

/* Section Heading */
.contact-section-heading {
    font-size: 1.8rem;
    font-weight: bold;
    border-left: 4px solid #001E6E;
    padding-left: 12px;
    margin: 50px 0 20px;
}
.contact-form-table + .contact-section-heading {
    margin-top: 50px;
}
.contact-section-heading:first-child {
    margin-top: 0;
}

/* Form Table Layout */
.contact-form-table {
    border-top: 1px solid #ddd;
}

.contact-form-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.contact-form-label {
    width: 220px;
    min-width: 220px;
    padding: 20px 15px;
    background-color: #f9f9f9;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: bold;
    font-size: 14px;
}

.contact-form-label .label-text {
    flex-shrink: 0;
}

.contact-form-label .required {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.contact-form-input {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-input .form-control {
    width: 50%;
    padding: 14px 14px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form-input textarea.form-control,
.contact-form-input select.form-control {
    width: 100%;
}

.contact-form-input textarea.form-control {
    resize: vertical;
    height: auto;
    min-height: 150px;
}

.contact-form-input .form-control:focus {
    outline: none;
    border-color: #001E6E;
    box-shadow: 0 0 0 2px rgba(0, 30, 110, 0.15);
}

/* Select */
.contact-form-input select.form-control {
    appearance: auto;
    max-width: 300px;
}

/* Validation Error */
.form-error {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 6px;
}

.form-control-error {
    border-color: #e74c3c !important;
}

/* Submit Button */
.contact-form-submit {
    text-align: center;
    margin-top: 50px;
}

.contact-submit-btn {
    display: inline-block;
    background-color: #001E6E;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.contact-submit-btn:hover {
    opacity: 0.8;
}

/*------------------------------------
  Responsive
-------------------------------------*/
@media only screen and (max-width: 767px) {
    .contact-form-row {
        flex-direction: column;
    }

    .contact-form-label {
        width: 100%;
        min-width: auto;
        padding: 12px 15px;
    }

    .contact-form-input {
        padding: 12px 15px;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}
