/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全体のスタイル */
body {
    font-family: 'M PLUS Rounded 1c', sans-serif; /* 丸みのあるフォントを設定 */
    color: #444; /* 濃すぎない優しい文字色 */
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* 横スクロールを防ぐ */
}

/* 縦書きタイトル（ロゴ） */
.vertical-title {
    position: fixed; /* 画面に固定 */
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(90deg); /* 縦書きにする */
    writing-mode: vertical-rl; /* 縦書き設定 */
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    opacity: 0.2; /* 薄くして背景のようにする */
    z-index: 10;
}

/* メインビジュアル */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* 画面の高さの70% */
    /* ↓↓↓ 最初のてらおかさん風の画像に戻します。ご自身のファイル名に合わせてください ↓↓↓ */
    background-image: url('hero_dog_illustration.jpg'); 
    background-size: cover;
    background-position: center;
    /* ↓↓↓ ぼかし効果を再設定します ↓↓↓ */
    
}

/* イベント情報ボックス（ポップアップ） */
.event-info {
    position: absolute;
    bottom: 50px; /* 下からの距離 */
    right: 50px; /* 右からの距離 */
    background-color: rgba(255, 255, 255, 0.85); /* 半透明の白背景 */
    padding: 20px 30px;
    border-radius: 10px;
    text-align: right;
    filter: none; /* ぼかしがイベント情報にかからないように */
    transform: scale(1); /* ぼかしの影響をリセット */
    z-index: 20;
}
.event-info .status {
    display: inline-block;
    background-color: #ffcc00; /* 黄色の背景 */
    color: #333;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.event-info p {
    font-size: 1rem;
    margin-top: 5px;
}

/* ハンバーガーメニューアイコン */
.menu-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 30;
    filter: none;
}
.menu-icon .bar {
    width: 30px;
    height: 3px;
    background-color: #444;
    margin: 6px 0;
    border-radius: 1px;
}

/* 商品セクション */
.goods-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.goods-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    /* Pick Upの黄色いハイライトを再現 */
    padding-left: 20px;
}


.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3列以上でレスポンシブに */
    gap: 30px;
}

.good-item {
    text-align: center;
    text-decoration: none;
    color: #444;
}

.good-item img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* 角を少し丸く */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* ほんの少し影をつける */
}

.goods-name {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.goods-price {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}
/* メインビジュアル */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    /* ↓↓↓ ファイル名を nakusanai.jpg に修正します ↓↓↓ */
    background-image: url('nakusanai.jpg'); 
    background-size: cover;
    background-position: center;
    /* ↓↓↓ 画像をクリアに表示するため、ぼかしと拡大を解除 ↓↓↓ */
    filter: none; 
    transform: scale(1); 
}