@charset "UTF-8";
.contact-page {
    background-color: #fff;
}
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4%;
}

.contactform-title {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    background-image: url(../images/CTAイラスト.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.contactform-title::before {
    content: '';
    background-color: rgb(0, 0, 0, 50%);
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.contactform-title h1 {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    z-index: 20;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contactform-message {
    font-size: 1rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 50px;
}
.contact_area {
    background-color: #f5f5f5;
    padding: 50px 4%;
    margin-bottom: 50px;
}

input,
textarea {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px; 
    margin-bottom: 20px; 
}

p {
    margin-bottom: 5px;
}

.required {
    margin: 50px 0; 
}


.red {
    color: red;
}

.submit_btn {
    background-color: #002D6F;
    color: #fff;
    transition: 0.3s;
}

.submit_btn:hover {
    opacity: 0.8;
}

.form-name {
    font-size: 0.5rem;
}


@media (max-width: 800px) {
    
.contactform-title h1 {
    font-size: 1.25rem;
}

.contactform-message {
    font-size: 0.875rem;
}
}