        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            background: linear-gradient(135deg, #130906ff 0%, #1a0f08ff 50%, #090503ff 100%);
            min-height: 100%;
        }
        
        
        html {
            background: linear-gradient(135deg, #2b1d0dff 0%, #39260fff 50%, #2c1910ff 100%);
            min-height: 100%;
        }
        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: linear-gradient(135deg, #2b1d0dff 0%, #39260fff 50%, #2c1910ff 100%);
            min-height: 100vh !important;
            overflow-x: hidden !important;
            position: relative;
        }
        
        /* 昭和風背景演出 */
        .night-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
            z-index: -2;
        }
        
        .night-lights {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.08), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 193, 7, 0.14), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 86, 34, 0.11), transparent);
            background-repeat: repeat;
            background-size: 100px 100px;
            animation: twinkle 3s ease-in-out infinite alternate;
            z-index: -1;
        }
        
        @keyframes twinkle {
            0% { opacity: 0.3; }
            100% { opacity: 0.8; }
        }
        
        .container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            z-index:999;
        }
        
        .main-content {
            display: flex;
            width: 100%;
            gap: 40px;
            align-items: flex-start;
            min-height: calc(100vh - 40px);
        }
        
        .left-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-self: flex-start;
            align-items: center;
            text-align: center;
            position: sticky;
            top: 20px;
            height: fit-content;
            max-height: calc(100vh - 40px);
        }
        
        .right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .logo {
            max-width: 200px;
            height: auto;
            border-radius:50%;
            margin-top: 20px;
            filter: drop-shadow(0 0 48px rgba(255, 193, 7, 0.805));
            animation: glow 2s ease-in-out infinite alternate;
        }
        @supports (-webkit-touch-callout: none) {
            body {
                background-attachment: scroll;
                background-color: linear-gradient(135deg, #2b1d0dff 0%, #39260fff 50%, #2c1910ff 100%);
            }
        }
        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(255, 195, 13, 0.8)); }
        }
        
        .main-title {
            font-size: 3rem;
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 
                0 0 10px #ff5722,
                0 0 20px #ff5722,
                0 0 30px #ff5722;
            margin-top: 85px;
            margin-left:20px;
            letter-spacing: 0.1em;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #ffc107;
            margin-top: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-family: "Zen Kurenaido", sans-serif;
            font-weight: 400;
            font-style: normal;
            -webkit-text-stroke: 1px #ffc107;
            text-stroke: 1px #ffc107;
            paint-order: stroke;
        }
        
        .store-links {
            margin-top: 40px;
            display: flex;
            -webkit-justify-content: flex-start;
            justify-content: flex-start;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
        }
        
        .store-link {
            display: block;
            width:96%;
            background: linear-gradient(135deg, #d84315 0%, #ff5722 100%);
            color: #ffeb3b;
            text-decoration: none;
            padding: 12px;
            margin: 8px 5px;
            border-radius: 15px;
            border: 2px solid #ffeb3b;
            transition: all 0.3s ease;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .store-link:hover {
            border: 2px solid #ffeb3b;
            transform: scale(1.1);
            text-shadow: 0 1px 3px rgba(0,0,0,0.9);
            box-shadow: 0 10px 30px rgba(255, 235, 59, 0.5);
            background: linear-gradient(135deg, #ff5722 0%, #ff6f00 100%);
        }
        
        
        .news-section {
            background: radial-gradient(ellipse at center, rgba(139, 69, 19, 0.3) 0%, rgba(62, 39, 35, 0.5) 100%);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 193, 7, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 2rem;
            color: #ffeb3b;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }
        
        .news-item {
            background: rgba(216, 67, 21, 0.2);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            background: rgba(216, 67, 21, 0.3);
            border-color: rgba(255, 193, 7, 0.5);
            transform: translateY(-2px);
        }
        
        .news-date {
            color: #ffc107;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .news-store {
            color: #ffeb3b;
            font-size: 0.85rem;
            margin-left: 10px;
            padding: 2px 8px;
            background: rgba(243, 162, 32, 0.3);
            border-radius: 10px;
            border:2px solid rgba(255, 193, 7, 0.3);
            text-shadow:0 1px 1px rgba(0,0,0,0.5);
        }
        
        .news-title {
            color: #fff;
            font-size: 1.1rem;
            font-weight: bold;
            margin: 20px 0 8px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.8);
        }
        
        .news-content {
            color: #e0e0e0;
            line-height: 1.6;
            font-size: 0.95rem;
            line-height:2;
        }
        
        .footer-message {
            text-align: center;
            color: #ffc107;
            -webkit-text-stroke: 1px #e2aa02;
            text-stroke: 1px #e2aa02;
            paint-order: stroke;
            font-size: 0.96rem;
            margin-top: 8%;
            text-shadow: 0 2px 2px rgba(0,0,0,0.7);
            font-family: "Zen Kurenaido", sans-serif;
            font-weight: 700;
            font-style: normal;
        }
        .group{
            display:block;
            text-align: center;
            color: #ffc107;

        }
        
        .top_header{
               display: -webkit-flex;
                display: flex;
                -webkit-justify-content: flex-start;
                justify-content: flex-start;
        }
        .top_logo{
             -webkit-flex-basis: 200px;
            flex-basis: 200px;
            align-items: center;
            justify-items: center;
        }
        .top_sub{
             -webkit-flex-grow: 1;
            flex-grow: 1;
            align-items: center;
            justify-items: center;
        }
        /* 星空の背景のスタイル */
        .stars {
        position: fixed;
        top:0;
        left:0;
        width: 100vw; /* 星空の横幅 */
        height: 100vh; /* 星空の縦幅 */
        min-height: calc(100vh - 40px);
        z-index:1;
        }

        /* 星のスタイル */
        .star {
        position: absolute;
        display: block;
        background-color: #fff; /* 星の色 */
        border-radius: 50%;
        box-shadow: 0 0 4px 1px rgba(#fff, 0.1); /* 星の影 */
        opacity: 0;
        animation: twinkle 3s infinite;
        }
        
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #ffc107;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #ccc;
            margin: 0 10px;
        }
        
        .hero-section {
            text-align: center;
            padding: 60px 0;
            background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.2) 0%, transparent 70%);
            border-radius: 20px;
            margin-bottom: 40px;
        }
        
        .store-title {
            font-size: 3rem;
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 0 0 20px #ff5722;
            margin-bottom: 20px;
        }
        
        .store-concept {
            font-family: "Zen Kurenaido", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 0.94rem;
            color: #ffc107;
            margin-bottom: 30px;
            overflow: hidden;
            resize: horizontal;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .info-card {
            background: rgba(139, 69, 19, 0.6);
            border-radius: 15px;
            padding: 30px;
            border: 2px solid rgba(255, 193, 7, 0.6);
        }
        
        .info-card h3 {
            color: #ffeb3b;
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }
        
        .info-card p, .info-card li {
            color: #e0e0e0;
            margin-bottom: 10px;
        }
        
        .info-card ul {
            padding-left: 20px;
        }
        
        .highlight {
            color: #ffc107;
            font-weight: bold;
        }
        
        .cta-section {
            text-align: center;
            padding: 40px;
            background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.6) 0%, transparent 70%);
            border-radius: 20px;
            margin-top: 40px;
        }
        .cta{
            display: flex;
            -webkit-justify-content: space-around;
            justify-content: space-around;
        }
        .cta a{
            gap:0.1rem;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #d84315 0%, #ff5722 100%);
            color: #ffeb3b;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 25px;
            border: 2px solid #ffeb3b;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 235, 59, 0.5);
        }
        
        .local-keywords {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            background: rgba(62, 39, 35, 0.3);
            border-radius: 10px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .cta-button i{
            padding-right:6px;
        }
        .location-btn {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #d84315 0%, #ff5722 100%);
            color: #ffeb3b;
            border: 2px solid #ffeb3b;
            padding: 15px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            margin-top: 25px;
            transition: all 0.3s ease;
        }
        
        .location-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
        }
        
        .result {
            margin-top: 20px;
            padding: 2px;
            background: rgba(216, 67, 21, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(255, 193, 7, 0.3);
            -webkit-flex-grow: 1;
            flex-grow: 1;
            width: 48%;
            margin:1%;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
        
        .store-name {
            color: #ffeb3b;
            -webkit-text-stroke: 1px #ffeb3b;
            text-stroke: 1px #ffeb3b;
            paint-order: stroke;
            font-size: 1.4rem;
            margin-bottom: 10px;
            white-space: nowrap;
            font-family: "Yuji Boku", serif;
            font-weight: 400;
            font-style: normal;
        }
        .store-info {
            font-size: 1.08rem;
            color: #e0e0e0;
            -webkit-text-stroke: 1px #e0e0e0;
            text-stroke: 1px #e0e0e0;
            paint-order: stroke;
            line-height: 1.6;
            letter-spacing: -0.5px;
            white-space: normal;
            font-family: "Zen Kurenaido", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        
        
        .distance {
            color: #ffc107;
            font-weight: bold;
        }
        
        .visit-btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff5722 0%, #ff6f00 100%);
            color: #ffeb3b;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 20px;
            border: 1px solid #ffeb3b;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .visit-btn:hover {
            transform: scale(1.05);
        }
        
        .loading {
            text-align: center;
            color: #ffc107;
            font-size: 1.1rem;
        }
        
        .error {
            color: #ff6b6b;
            text-align: center;
            padding: 20px;
            background: rgba(255, 107, 107, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(255, 107, 107, 0.3);
        }
        
        @media (max-width: 768px) {

            .store-title {
                font-size: 2rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .info-card {
                padding: 20px;
            }

        .cta{
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            -webkit-align-items: flex-start;
            align-items: flex-start;
            -webkit-flex-direction: column;
            flex-direction: column;
            height: 200px;
        }
        .cta-button {
            background: linear-gradient(135deg, #d84315 0%, #ff5722 100%);
            color: #ffeb3b;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 25px;
            border: 2px solid #ffeb3b;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
            .main-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .left-section {
                position: static;
                flex: none;
                width: 100%;
            }
            
            .right-section {
                flex: none;
                width: 100%;
                margin-top:160px;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .news-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {

        .top_logo{
             -webkit-flex-basis: 150px;
            flex-basis: 150px;
            align-items: center;
            justify-items: center;
        }
        .logo {
            max-width: 150px;
            height: auto;
            border-radius:50%;
            margin-top: 10px;
            filter: drop-shadow(0 0 48px rgba(255, 193, 7, 0.805));
            animation: glow 2s ease-in-out infinite alternate;
        }
        .main-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 
                0 0 10px #ff5722,
                0 0 20px #ff5722,
                0 0 30px #ff5722;
            margin-top: 45px;
            margin-left:5px;
            letter-spacing: 0.06em;
        }
        .subtitle {
            font-size: 1rem;
            color: #ffc107;
            margin-left:10px;
            margin-top: 6px;
            -webkit-text-stroke: 1px #ffc107;
            text-stroke: 1px #ffc107;
            paint-order: stroke;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            white-space: nowrap;
        }
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #ffc107;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #ccc;
            margin: 0 3px;
        }
        .store-links {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-around;
        justify-content: space-around;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        flex-direction: column;
        }

        .store-link {
            display: block;
            width:90vw;
            background: linear-gradient(135deg, #d84315 0%, #ff5722 100%);
            color: #ffeb3b;
            text-decoration: none;
            padding: 15px;
            margin: 12px 5px;
            border-radius: 25px;
            border: 2px solid #ffeb3b;
            transition: all 0.3s ease;
            font-weight: bold;
            text-shadow: 0 1.3px 3px rgba(0,0,0,0.5);
        }
        .result {
            width:94vw;
            margin-top: 20px;
            padding: 5px;
            background: rgba(216, 67, 21, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(255, 193, 7, 0.3);
            -webkit-flex-grow: 1;
            flex-grow: 1;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            align-items: center;
            justify-items: center;
        }
        .store-name {
            color: #ffeb3b;
            font-size: 1.6rem;
            margin-bottom: 10px;
            white-space: nowrap;
            font-family: "Yuji Boku", serif;
            font-weight: 400;
            font-style: normal;
            -webkit-text-stroke: 1px #ffeb3b;
            text-stroke: 1px #ffeb3b;
            paint-order: stroke;
        }
        .store-info{
            font-family: "Zen Kurenaido", sans-serif;
            font-weight: 400;
            font-style: normal;
            color:#fff;
            -webkit-text-stroke: 1px #f9f9f9;
            text-stroke: 1px #f9f9f9;
            paint-order: stroke;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            overflow: hidden;
            resize: horizontal;
        }
        .result:last-of-type .store-name:last-child {
            font-size: 1.4rem;
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: normal;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
            .right-section {
                flex: none;
                width: 100%;
                margin-top:400px;
            }
        .news-store {
            display: inline-block;
            color: #ffeb3b;
            font-size: 0.85rem;

            margin-left: 10px;
            padding: 2px 8px;
            background: rgba(243, 162, 32, 0.3);
            border-radius: 10px;
            border:2px solid rgba(255, 193, 7, 0.3);
            text-shadow:0 1px 1px rgba(0,0,0,0.5);
        }
        .news-date{
            float:right;
            margin-top:4px;
        }
        .news-item {
            background: rgba(216, 67, 21, 0.2);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 15px;
            padding: 10px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        .news-title {
            color: #fff;
            font-size: 1.1rem;
            font-weight: bold;
            margin: 15px 0 12px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.8);
        }
    }

        
        @media (max-width: 375px) {
            .right-section {
                flex: none;
                width: 100%;
                margin-top:540px;
            }
        }
        @supports (-webkit-touch-callout: none) {
            body {
                background-attachment: scroll;
                background-color: #130906;
            }
        }
        
        @keyframes twinkle {
        0% {
            opacity: 0;
        }

        50% {
            transform: scale(1.1);
            opacity: 1;
        }

        100% {
            opacity: 0;
            transform: scale(1);
        }
        }