
.hero-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif; /* この行を追加 */
}

.hero-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    color: #000;
}

/* About usセクション */
.about-us {
    padding: 120px 0;
    background-color: #fff;
}

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

.about-lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;  /* 下の行との間隔を詰める */
}

.about-products {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .about-lead {
        font-size: 1.2rem; /* 少し小さめにする */
        line-height: 1.6; /* 行間も少し詰める */
        margin-bottom: 20px; /* マージンも縮める */
    }

    .about-text,
    .about-products {
        font-size: 0.85rem; /* テキストもやや小さめに */
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .about-content {
        padding: 0 20px; /* スマホ幅で左右に少し余白を追加して読みやすく */
    }
}


/* スクロールアニメーション用 */
.value-item.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.value-item.scroll-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .philosophy-lead {
        font-size: 1.8rem;
    }
    
    .value-title {
        font-size: 1.8rem;
    }
    
    .about-lead {
        font-size: 1.3rem;
    }
    
    .value-text, .about-text, .about-products {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .philosophy-lead {
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.5rem;
    }
}