header {
    background-color: white;
    /* border-bottom: 1px solid #cfcfcf; */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

header .menu-toggle span {
    background-color: #222222 !important;
}

header .nav-item {
    color: #482c1b;
}

header .nav-item .en {
    color: #482c1b;
}

.content {
    margin-top: 65px;
    color: var(--primary-color);
}

.section-title-en {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-title-jp {
    text-align: center;
    font-size: 20px;
}

/* 会社情報テーブル */
.page-company-info {
    margin-top: 80px;
    width: 100%;
    font-size: 18px;
    margin: 0 auto;
    margin-top: 80px;
    letter-spacing: 0.05rem;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    gap: 50px;
}

.info-label {
    width: 200px;
    font-weight: 500;
    text-align: left;
}

.info-value {
    /* flex: 1; */
    text-align: left;
}

.access-section {
    margin-top: 100px;
}

.access-section iframe {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .info-label {
        width: 150px;
    }
    .page-company-info {
        font-size: 15px;
    }
    .info-row {
        gap: 20px;
    }
    .form-description {
        margin-top: 40px;
        font-size: 14px;
    }
}

/* ------------事業内容------------ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 65px;
    margin-top: 80px;
}

.services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 66%;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.service-image {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 2fr;
        gap: 40px;
    }

    .services-grid-bottom {
        grid-template-columns: 2fr;
        gap: 40px;
        max-width: 100%;
    }

    .section-title-en {
        font-size: 35px;
    }
}

/* --------------------------フォーム-------------------------- */
.form-description {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
}

.form-label {
    width: 180px;
    padding-top: 10px;
    font-size: 15px;
}

.required::after {
    content: "※";
    color: #8b2332;
    margin-left: 5px;
}

.form-input {
    flex: 1;
}

.back-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
    text-align: center;
    margin-top: 40px;
}

.back-button:hover {
    background-color: #333;
}

.back-button::after {
    content: "→";
    margin-left: 10px;
}

.back-button__container {
    text-align: center;
}

.form-input input,
.form-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-input textarea {
    height: 180px;
    resize: vertical;
}

.submit-button {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.form-des--complete {
    margin-top: 60px;
    text-align: center;
}

.submit-button button {
    background-color: #5f002a;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button button:hover {
    background-color: #6e1c28;
}

.message-content {
    margin-top: 80px;
}
