@charset "UTF-8";

/* =========================================
   1. GLOBAL & VARS
   ========================================= */
:root {
    --primary-color: #FE222C;
    --secondary-color: #2c5e4f;
    --accent-color: #eab308;
    --text-color: #333333;
    --bg-color: #ffffff;
    --gray-light: #f4f5f7;
    --gray-border: #ddd;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Inter', 'Noto Sans JP', sans-serif;
}

/* =========================================
   3. COMMON LAYOUT & TYPOGRAPHY
   ========================================= */
section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 0.05em;
}

.section-title span {
    display: block;
    font-size: 14px;
    color: #FE222C;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.section-label {
    font-size: 14px;
    color: #FE222C;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Animation Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ABOUT HERO
   ========================================= */
.about-hero {
    height: 60vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('../../images/aboutus.jpg') center/cover no-repeat;
    filter: blur(8px);
    z-index: -2;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 300;
    color: #333;
    z-index: 1;
    letter-spacing: 0.05em;
    position: relative;
    margin-bottom: 0px;
}

.about-hero p {
    font-size: 18px;
    color: #FE222C;
    letter-spacing: 0.1em;
    z-index: 1;
}

/* Parallax Shapes */
.parallax-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 125, 104, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 20%;
    right: 10%;
}


/* =========================================
   PHILOSOPHY SECTION
   ========================================= */
.philosophy-section {
    text-align: center;
    background-color: #fff;
    overflow: hidden;
}

.philosophy-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(58, 125, 104, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.philosophy-desc {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 2;
	text-align:left;
}

/* =========================================
   COMPANY INFO SECTION
   ========================================= */
.company-info-section {
    background-color: var(--gray-light);
    background-image: linear-gradient(rgba(58, 125, 104, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 125, 104, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

.company-info-section .info-value a{
	text-decoration:none;
}

.info-table {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.info-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    font-size: 16px;
    /* Slightly adjusted for readability if needed */
}

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

.info-label {
    width: 40%;
    font-weight: 700;
    color: #333;
}

.info-value {
    width: 60%;
    color: #444;
}

.info-value a {
    color: inherit;
    text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 40px;
    }

    .info-row {
        flex-direction: column;
        gap: 10px;
    }

    .info-label {
        width: 100%;
    }

    .info-value {
        width: 100%;
    }
}