/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    margin-top: 80px;
    height: 35vh;
    min-height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-hero-background {
    display: none;
}

.page-hero-overlay {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
}

.page-hero-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.page-hero-line {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* About Message Section */
.about-intro-section {
    padding: 10rem 2rem;
    background: #ffffff;
    position: relative;
}

.about-message {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.message-main {
    margin-bottom: 8rem;
}

.message-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.message-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 2.2;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.message-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 2.4;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.message-highlight {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 2.4;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 3rem;
}

.pc-break {
    display: inline;
}

/* Company Overview Section */
.company-overview-section {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.company-info-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row:hover {
    background: rgba(23, 162, 184, 0.03);
}

.info-label {
    padding: 2rem 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(23, 162, 184, 0.05);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.info-value {
    padding: 2rem 2.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-value a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* CEO Message Section */
.ceo-message-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.ceo-message-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ceo-message-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ceo-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-photo {
    flex-shrink: 0;
}

.ceo-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.3);
}

.ceo-info {
    flex-grow: 1;
}

.ceo-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.ceo-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.ceo-message-body {
    color: rgba(255, 255, 255, 0.9);
}

.ceo-text {
    font-size: 1.05rem;
    line-height: 2.2;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.ceo-signature {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: right;
}

.ceo-company {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.ceo-name {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Contact Detail Section */
.contact-detail-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    margin-bottom: 2.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-submit {
    text-align: center;
}

.submit-button {
    padding: 1.2rem 4rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .about-intro-section {
        padding: 7rem 2rem;
    }

    .message-title {
        font-size: 2.5rem;
    }

    .message-subtitle {
        font-size: 1.2rem;
    }

    .message-content {
        gap: 4rem;
    }

    .message-text {
        font-size: 1.1rem;
    }

    .message-highlight {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero-label {
        font-size: 0.9rem;
    }

    .about-intro-section {
        padding: 5rem 1.5rem;
    }

    .message-main {
        margin-bottom: 5rem;
    }

    .message-title {
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .message-subtitle {
        font-size: 1.05rem;
        line-height: 2;
    }

    .message-content {
        gap: 3rem;
    }

    .message-text {
        font-size: 1rem;
        line-height: 2.2;
        letter-spacing: 0.05em;
    }

    .message-highlight {
        font-size: 1.1rem;
        line-height: 2.2;
    }

    .pc-break {
        display: none;
    }

    .company-overview-section {
        padding: 5rem 1.5rem;
    }

    .company-info-table {
        border-radius: 12px;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .info-value {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .ceo-message-section {
        padding: 5rem 1.5rem;
    }

    .ceo-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .ceo-photo img {
        width: 140px;
        height: 140px;
    }

    .ceo-title {
        font-size: 2rem;
    }

    .ceo-text {
        font-size: 1rem;
        line-height: 2;
        margin-bottom: 2rem;
    }

    .ceo-signature {
        margin-top: 3rem;
        padding-top: 2rem;
        text-align: center;
    }

    .ceo-company {
        font-size: 0.9rem;
    }

    .ceo-name {
        font-size: 1.1rem;
    }

    .contact-detail-section .contact-grid {
        grid-template-columns: 1fr;
    }
}









.ceo-name {
    font-size: 1.4rem;
    color: white;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-family: 'Yuji Syuku', serif;
}