@charset "utf-8";

       :root {
            --primary-color: #b38b8b; /* 落ち着いたピンクベージュ */
            --accent-color: #d4a5a5;
            --bg-color: #f9f7f6;
            --text-main: #4a4a4a;
            --text-sub: #8c8c8c;
            --gold: #c5a059;
        }

        body { 
            font-family: "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif; 
            background-color: var(--bg-color); 
            padding: 20px; 
            color: var(--text-main);
            line-height: 1.6;
        }

        .container { 
            max-width: 650px; 
            margin: 0 auto; 
            background: #ffffff; 
            padding: 40px 30px; 
            border-radius: 16px; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
        }

        h2 { 
            text-align: center; 
            color: var(--primary-color); 
            font-weight: 800;
            letter-spacing: 0.1em;
            margin-bottom: 5px; 
        }

        .subtitle { 
            text-align: center; 
            font-size: 1.08em; 
            color: var(--text-sub); 
            margin-bottom: 40px; 
            letter-spacing: 0.05em;
        }
        .searchBtn { 
            font-size: 16px; 
        }

        label { 
            font-weight: 600; 
            display: block; 
            margin-bottom: 10px; 
            margin-top: 25px; 
            font-size: 16px;
            color: var(--primary-color);
        }

        select { 
            width: 100%; 
            padding: 14px; 
            border: 1px solid #e0e0e0; 
            border-radius: 8px; 
            font-size: 16px; 
            background-color: #fff; 
            cursor: pointer; 
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b38b8b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
        }

        button { 
            width: 100%; 
            padding: 18px; 
            margin-top: 35px; 
            background-color: #f3846b; 
            color: white; 
            border: none; 
            border-radius: 8px; 
            font-size: 17px; 
            font-weight: bold; 
            cursor: pointer; 
            transition: all 0.3s ease; 
            letter-spacing: 0.1em;
        }
        button:hover { background-color: #f76363; transform: translateY(-1px); }
        button:disabled { background-color: #e0e0e0; cursor: not-allowed; }

        #result { margin-top: 40px; border-top: 2px solid #f0f0f0; padding-top: 30px; display: none; }
        .result-header { font-size: 1.3em; font-weight: 300; margin-bottom: 25px; text-align: center; color: var(--text-main); }
        
        .shop-card { 
            background: #fff; 
            border: 1px solid #f0edec;
            padding: 25px; 
            margin-bottom: 25px; 
            border-radius: 12px; 
            transition: transform 0.3s;
            position: relative;
        }
        .shop-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.03); }

        .shop-brand { 
            font-size: 0.75em; 
            color: var(--gold); 
            text-transform: uppercase; 
            font-weight: 700;
            letter-spacing: 0.15em;
            margin-bottom: 8px;
        }
        .shop-name { 
            font-weight: bold; 
            font-size: 1.4em; 
            margin: 0 0 15px 0; 
            color: #333; 
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .info-grid {
            display: grid;
            gap: 8px;
            font-size: 0.9em;
            margin-bottom: 20px;
        }
        .info-item { display: flex; align-items: flex-start; }
        .info-label { width: 85px; color: var(--primary-color); font-weight: bold; flex-shrink: 0; }
        .info-value { color: #555; }

        .btn-group { display: flex; gap: 10px; flex-wrap: wrap; }

        .btn-link {
            flex: 1;
            min-width: 160px;
            display: inline-block;
            text-align: center;
            padding: 12px 10px;
            text-decoration: none;
            font-size: 0.85em;
            border-radius: 6px;
            font-weight: bold;
            transition: 0.2s;
        }
        .btn-maps { background-color: #f8f8f8; color: #666; border: 1px solid #ddd; }
        .btn-lp { background-color: #f76363; color: white; border: 1px solid var(--accent-color); }
        .btn-lp:hover { opacity: 0.9; }
