@charset "UTF-8";

        .mobile-label {
            display: none;
        }



        .volume-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #eaeaea;
        }

        .volume-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .volume-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-style: italic;
        }

        .nav-buttons {
            text-align: center;
            margin-bottom: 30px;
        }

        .nav-buttons a {
            display: inline-block;
            margin: 0 10px;
            padding: 10px 20px;
            background: #4a90e2;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .nav-buttons a:hover {
            background: #357abd;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .table-container {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }

        th {
            background: #f8f9fa;
            color: #34495e;
            padding: 15px;
            text-align: left;
            font-weight: bold;
            font-size: 1.1rem;
            border-bottom: 2px solid #eaeaea;
        }

        td {
            padding: 12px 15px;
            border-bottom: 1px solid #ecf0f1;
            vertical-align: top;
        }

        tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        tr:hover {
            background-color: #e3f2fd;
            transition: background-color 0.3s ease;
        }

        .episode-number {
            font-weight: bold;
            color: #4a90e2;
            font-size: 1.1rem;
            text-align: left;
            width: 80px;
        }

        .episode-title {
            font-weight: bold;
            color: #2c3e50;
            font-size: 1rem;
            width: 150px;
        }

        .episode-gadget {
            font-weight: bold;
            color: #e67e22;
            font-size: 0.95rem;
            width: 150px;
        }

        .episode-summary {
            color: #444;
            line-height: 1.8;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        .notes {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
            border-radius: 15px;
            border-left: 5px solid #f39c12;
        }

        .notes h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .notes ul {
            list-style-type: none;
            padding-left: 0;
        }

        .notes li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #34495e;
        }

        .notes li:before {
            content: "🔹";
            position: absolute;
            left: 0;
            top: 0;
        }

        @media (max-width: 768px) {
            .container {
                padding: 20px;
                margin: 10px;
            }

            h1 {
                font-size: 2rem;
            }

            .table-container {
                box-shadow: none;
                background: transparent;
                margin: 15px 0;
            }

            table, thead, tbody, th, td, tr {
                display: block;
                width: 100%;
            }

            thead {
                display: none;
            }

            tr {
                margin-bottom: 20px;
                border: 1px solid #ecf0f1;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                background: white;
                padding: 20px;
                transition: transform 0.3s ease;
            }

            tr:hover {
                transform: translateY(-3px);
                background-color: white;
            }

            td {
                padding: 5px 0;
                border: none;
                text-align: left;
            }

            .episode-number {
                display: inline-block;
                background: #4a90e2;
                color: white;
                padding: 4px 12px;
                border-radius: 20px;
                font-size: 0.9rem;
                margin-bottom: 10px;
                width: auto;
                text-align: left;
            }


            .episode-title {
                font-size: 1.25rem;
                width: 100%;
                margin-bottom: 8px;
                color: #2c3e50;
            }

            .episode-gadget {
                width: 100%;
                margin-bottom: 12px;
                font-size: 0.95rem;
                color: #e67e22;
                background: #fff8e1;
                padding: 5px 10px;
                border-radius: 8px;
                display: block;
            }

            .mobile-label {
                display: inline;
                font-weight: bold;
                color: #555;
            }

            .episode-summary {
                font-size: 0.95rem;
                color: #555;
                line-height: 1.6;
                padding-top: 10px;
                border-top: 1px dashed #ecf0f1;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
                margin: 5px;
            }

            h1 {
                font-size: 1.5rem;
            }

            tr {
                padding: 15px;
            }

            .episode-title {
                font-size: 1.15rem;
            }

            .episode-summary {
                font-size: 0.9rem;
            }
        }

        .doraemon-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
    