/* ベースリセットとフォント設定 */
body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F9F9F9; /* 穏健なオフホワイト */
    color: #333333; /* ダークグレーの文字色 */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

a:hover {
    color: #6a909c; /* 落ち着いたブルーグレーをアクセントに */
}

/* -------------------- */
/* 1. ヘッダー (Header) */
/* -------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5vw; /* 左右に余白 */
    border-bottom: 1px solid #E0E0E0; /* 控えめな区切り線 */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px; /* ロゴとアイコンの間隔 */
}

.logo {
    font-size: 2rem;
    font-weight: 600;
}

.brand-icon {
    width: 50px; /* アイコンを小さく表示 */
    height: 50px;
}

.social-icons {
    display: flex; /* アイコンを横に並べる */
    align-items: center;
    gap: 15px; /* アイコン同士の間隔 */
    margin-right: 30px; /* ナビゲーションとの間にスペースを空ける */
}

.social-icons a {
    /* リンクの色をサイトのダークグレーに統一 */
    color: #333333; 
    font-size: 1.5rem; /* アイコンのサイズを調整 */
    opacity: 0.75; 
}

.social-icons a:hover {
    color: #6a909c; /* ホバーでアクセントカラーに変化 */
    opacity: 1;
}

/* 既存の .header スタイルはそのまま */
.header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    /* ... */
}

.header-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px; /* ナビゲーション間の間隔 */
}

.header-nav a {
    font-size: 0.95rem;
    font-weight: 500;
}


/* -------------------- */
/* 2. ヒーローセクション (Hero Section) */
/* -------------------- */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh; /* 画面の高さの60% */
    text-align: center;
    padding: 50px 20px;
    
    /* 背景画像の設定 (家具/ソファーの画像を使用) */
    background-image: url('../img/index_img/hero-section.jpg'); 
    background-size: cover;
    background-position: center 30%; /* 中央より少し下から表示 */
    
    /* テキストの視認性を高めるためのオーバーレイ */
    filter: brightness(0.9); /* 全体を少し暗くする */
    color: #FFFFFF; /* テキストを白に */
}
/* オーバーレイ処理（より高度な方法）
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}
.hero-content {
    position: relative; 
    z-index: 2;
}
*/

.catchphrase {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 80px;
}

.subtext {
    font-size: 1.1rem;
    margin-bottom: 100px;
}

/* CTAボタン */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #6a909c; /* アクセントカラー */
    color: #FFFFFF;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #4a707c;
}

/* -------------------- */
/* 3. ギャラリープレビュー */
/* -------------------- */

.gallery-preview {
    padding: 80px 5vw;
    text-align: center;
    
}

.gallery-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* レスポンシブ3列 */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    display: block;
    background-color: #ddd;;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding-bottom: 10px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.grid-item p {
    font-weight: 500;
    margin: 0;
    padding: 0 10px;
}


/* -------------------- */
/* 4. フッター (Footer) */
/* -------------------- */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    border-top: 1px solid #E0E0E0;
    font-size: 0.8rem; /* 小さめの文字サイズ */
    color: #666;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 15px; 
    height: 15px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.footer-nav a {
    color: #666;
}

.header-nav a,
.grid-container a,
.footer-nav a {
    color: #333333; /* ダークグレーに設定 */
}
/* -------------------- */
/* レスポンシブ対応 (モバイル向け) */
/* -------------------- */
@media (max-width: 768px) {
    .catchphrase {
        font-size: 1.8rem;
    }
    
    .subtext {
        font-size: 1rem;
    }

    .header {
        padding: 15px 4vw;
    }
}