@charset "UTF-8";
        /* 全体のリセットとPC閲覧時の背景設定 */
        body {
            margin: 0;
            padding: 0;
            background-color: #111; /* PCの余白部分の背景色（暗め） */
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            color: #333;
        }

        /* 横幅640px制限のメインコンテナ */
        .container {
            max-width: 640px;
            margin: 0 auto;
            background-color: #ffffff; /* コンテンツ部分の背景色 */
            text-align: center;
            box-shadow: 0 0 15px rgba(0,0,0,0.8); /* PC閲覧時に浮き出て見えるよう影をつける */
            display: flex;
            flex-direction: column;
            min-height: 100vh; /* 最低限画面の高さいっぱいに広げる */
        }

        /* 画像をレスポンシブ対応にする */
        img {
            max-width: 100%;
            height: auto;
            vertical-align: bottom; /* 画像下の不要な隙間を消す */
        }

        /* 18禁マークの表示エリア */
        .age-mark-area {
            margin: 30px auto 20px;
            width: 100px; /* 18禁マークの大きさを調整 */
        }

        /* ボタンを横並びにするエリア */
        .button-area {
            display: flex;
            justify-content: center;
            gap: 20px; /* ボタン同士の隙間 */
            padding: 0 20px 30px; /* 下部に少し余白を持たせる */
        }

        /* ボタンの共通デザイン */
        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 240px;
            height: 60px;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            border-radius: 8px;
            transition: opacity 0.2s ease;
            box-sizing: border-box;
        }

        .btn:hover {
            opacity: 0.8;
        }

        /* ENTERボタン（メインキャッチのブルー系に合わせた配色） */
        .btn-enter {
            background: linear-gradient(135deg, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
            color: #ffffff;
            border: 2px solid #1a4a82;
            box-shadow: 0 4px 6px rgba(30, 87, 153, 0.3);
        }

        /* EXITボタン（目立たせないグレー配色） */
        .btn-exit {
            background: linear-gradient(135deg, #f5f5f5 0%,#eeeeee 100%);
            color: #666666;
            border: 2px solid #cccccc;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* --- SEOテキストエリア --- */
        .seo-text-area {
            margin: 0 20px 30px; /* 外側の余白 */
            padding: 20px;       /* 内側の余白 */
            background-color: #f4f8fb; /* 画像に合わせたごく薄いブルーグレー */
            border-radius: 8px;
            text-align: left;    /* 左揃え */
            line-height: 1.6;
        }

        /* 見出しデザイン */
        .seo-text-area h1 {
            font-size: 15px;
            color: #1e5799; /* 見出しの色 */
            text-align: center;
            margin-top: 0;
            margin-bottom: 20px;
            border-bottom: 2px solid #7db9e8;
            padding-bottom: 10px;
            line-height: 1.4;
        }

        /* 導入文デザイン */
        .intro-text {
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            color: #444;
            margin-bottom: 25px;
        }

        /* 店舗情報（テーブル風レイアウト） */
        .shop-info {
            display: flex;
            flex-wrap: wrap;
            border-top: 1px solid #ddd;
            margin: 0;
        }

        .shop-info dt {
            width: 30%;
            padding: 12px 10px;
            background-color: #e6f0f9; /* 項目名の背景色 */
            border-bottom: 1px solid #ddd;
            font-weight: bold;
            font-size: 13px;
            box-sizing: border-box;
            color: #1a4a82;
            display: flex;
            align-items: center;
        }

        .shop-info dd {
            width: 70%;
            margin: 0;
            padding: 12px 10px;
            border-bottom: 1px solid #ddd;
            font-size: 13px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
        }

        .tel-link {
            color: #1e5799;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
        }

        /* ----------------------------------- */

        /* コンテンツエリア（フッターを最下部に押し下げるため） */
        .content {
            flex-grow: 1; /* 余白があれば広がる */
        }

        /* フッターエリア */
        .footer {
            background-color: #f8f8f8; /* フッターの背景色 */
            padding: 20px 0;
            margin-top: auto; /* コンテンツが少ない場合でも下部に配置 */
        }

        /* コピーライトテキスト */
        .copyright {
            font-size: 12px;
            color: #888;
            margin: 0;
        }

        /* スマホ向け微調整 */
        @media screen and (max-width: 480px) {
            .shop-info dt {
                width: 100%;
                border-bottom: none;
                padding-bottom: 4px;
            }
            .shop-info dd {
                width: 100%;
                padding-top: 0;
            }
        }

        .copyright a{
            color: black;
            text-decoration: none;
        }        
