@charset "UTF-8";

/* PCサイズ：右上に固定 */
.user-card {
    position: fixed;
    top: 80px; /* ヘッダーの高さ分空ける */
    right: 20px;
    width: 200px;
    z-index: 1000;
}


.hero-section {
    background : url('../images/sneaker_image.jpg'); 
    background-size: cover;
    background-position: center;
    height: 400px;

}
body {
    position: relative;
    min-height: 100vh;
}

/* 背景レイヤー */
body::before {
    content: "";
    position: fixed;   /* 画面全体に固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

	background-image: url(../images/Uminami_IMG_3321.jpg);
	background-blend-mode: darken;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.3;   /* ← 薄さ調整（0.05〜0.15くらいが自然） */

    z-index: -1;     /* コンテンツの背面へ */
}

/* 文字を背景の上に載せる */
.hero-title {
    font-size: 6rem;
    font-weight: bold;
    text-shadow: 6px 6px 10px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 2rem;
    text-shadow: 5px 5px 10px rgba(0,0,0,0.6);
}

/* メーカーカード */
.manufacturer-card {
    transition: border-color 0.15s, box-shadow 0.15s;
    border-color: rgba(0, 0, 0, 0.1) ;
    cursor: default;
}

.manufacturer-card:hover {
    border-color: rgba(0, 0, 0, 0.3) ;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

/* 頭文字アイコン */
.manufacturer-icon {
    width: 42px;
    height: 42px;
    font-size: 13px;
    flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
        padding: 0 10px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}
/* スマホサイズ：画面上部に流す */
@media (max-width: 768px) {
    .user-card {
        position: static;
        width: 100%;
        margin: 0 auto 15px auto;
    }
}
