        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff5f5;
            font-size: 16px;
        }
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 15px;
        }
        header {
            background: linear-gradient(135deg, #ff9a9e, #fad0c4);
            color: #333;
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        header h1 {
            color: #333;
            font-size: 1.8em;
            margin-bottom: 10px;
        }
        header p {
            color: #444;
            font-size: 1.1em;
        }
        .nav-container {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 10px 0;
        }
        nav {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .nav-menu {
            display: flex;
            justify-content: flex-start;
            list-style: none;
            gap: 15px;
            padding: 5px 0;
            white-space: nowrap;
        }
        .nav-menu a {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background-color: #fff5f5;
            font-size: 0.9em;
        }
        .nav-menu a:hover, .nav-menu a.active {
            background-color: #d32f2f;
            color: white;
        }
        .tab-button:hover {
            background: #ffd6d6;
            color: #d32f2f;
        }
        .tab-button.active {
            background: #d32f2f;
            color: white;
        }
        .section {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .section-title {
            color: #ff9a9e;
            border-bottom: 2px solid #ff9a9e;
            padding-bottom: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2em;
        }
        .section-title::before {
            content: "♥";
            color: #ff9a9e;
        }
        .drama-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .drama-item {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .drama-image {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .drama-info {
            padding: 15px;
        }
        .drama-title {
            font-size: 1.1em;
            margin-bottom: 8px;
            color: #333;
        }
        .drama-date {
            color: #666;
            font-size: 0.85em;
            margin-bottom: 8px;
        }
        .drama-genre {
            display: inline-block;
            background-color: #ff9a9e;
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75em;
            margin-right: 6px;
            margin-bottom: 8px;
        }
        .drama-description {
            position: relative;
            max-height: 4.8em;
            min-height: 2em;
            overflow: hidden;
            line-height: 1.6;
            transition: max-height 0.3s ease;
            margin-top: 8px;
            color: #666;
            font-size: 0.85em;
        }
        .drama-description.expanded {
            max-height: 500px;
        }
        .drama-description::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            height: 24px;
            background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .drama-description.expanded::after {
            opacity: 0;
        }
        .drama-description + .desc-toggle::before {
            content: '続きを読む';
        }
        .drama-description.expanded + .desc-toggle::before {
            content: '閉じる';
        }
        .highlight {
            background: linear-gradient(135deg, #fff5f5, #ffe3e3);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid #ffd6d6;
        }
        .highlight-title {
            color: #ff9a9e;
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 1.1em;
        }
        .highlight p {
            font-size: 0.9em;
            color: #666;
        }
        footer {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #ff9a9e, #fad0c4);
            color: #333;
            margin-top: 30px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .footer-links a {
            color: #333;
            text-decoration: none;
            font-size: 0.9em;
        }
        .footer-links a:hover {
            text-decoration: underline;
            color: #d32f2f;
        }
        .cast-info {
            font-size: 0.8em;
            color: #888;
            margin-top: 5px;
        }
        .rating ,.drama-tvq{
            display: flex;
            align-items: center;
            margin-top: 8px;
        }
        .rating span ,.drama-tvq{
            color: #ff9a9e;
            margin-right: 5px;
        }
        .star {
            color: #ffd700;
            font-size: 0.9em;
        }
        @media (min-width: 768px) {
            .container {
                max-width: 1200px;
                padding: 20px;
            }
            .drama-list {
                grid-template-columns: repeat(5, 1fr);
            }
            .nav-menu {
                justify-content: center;
            }
        }
        .today-drama-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding-bottom: 10px;
        }
        @media (max-width: 1200px) {
            .today-drama-list {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 900px) {
            .today-drama-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .today-drama-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 400px) {
            .today-drama-list {
                grid-template-columns: 1fr;
            }
        }
        .today-drama-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(211,47,47,0.08);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-width: 0;
            padding: 16px;
        }
        .today-drama-image {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 10px;
            border:1px solid #ccc;
        }
        .today-drama-title {
            color: #d32f2f;
            font-size: 1.1em;
            font-weight: bold;
            margin-bottom: 6px;
        }
        .today-drama-time {
            color: #d32f2f;
            font-size: 0.87em;
            margin-bottom: 6px;
        }
        .today-drama-desc {
            position: relative;
            max-height: 4.8em; /* 3行のテキストの高さ */
            overflow: hidden;
            line-height: 1.6;
            transition: max-height 0.3s ease;
            margin-bottom: 8px;
        }
        .today-drama-desc.expanded {
            max-height: 900px; /* 拡張後の最大高さ */
        }
        .today-drama-desc::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            height: 24px;
            background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .today-drama-desc.expanded::after {
            opacity: 0;
        }
        .desc-toggle {
            display: none;
            color: #d32f2f;
            font-size: 0.9em;
            padding: 4px 0;
            cursor: pointer;
            user-select: none;
        }
        .desc-toggle:hover {
            text-decoration: underline;
        }
        .today-drama-desc + .desc-toggle::before {
            content: '続きを読む';
        }
        .today-drama-desc.expanded + .desc-toggle::before {
            content: '閉じる';
        }
        .today-drama-terebi {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 4px;
        }
        .today-drama-links {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 18px;
        }
        .today-link-btn {
            background: #fff5f5;
            color: #d32f2f;
            border: 1.5px solid #ffd6d6;
            border-radius: 20px;
            padding: 8px 22px;
            font-size: 1em;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.18s cubic-bezier(.4,0,.2,1);
            box-shadow: 0 2px 8px rgba(211,47,47,0.04);
        }
        .today-link-btn:hover {
            background: #ffd6d6;
            border-color: #d32f2f;
        }
        .news-section {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-top: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .section-header h2 {
            color: #333;
            font-size: 1.5em;
        }
        .more-link {
            color: #d32f2f;
            text-decoration: none;
            font-size: 0.9em;
            padding: 5px 15px;
            border-radius: 15px;
            background: #fff5f5;
            transition: all 0.3s ease;
        }
        .more-link:hover {
            background: #ffd6d6;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .news-link {
            text-decoration: none;
            color: inherit;
        }
        .news-image {
            position: relative;
        }
        .news-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .news-category {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #d32f2f;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8em;
        }
        .news-content {
            padding: 15px;
        }
        .news-date {
            color: #666;
            font-size: 0.9em;
        }
        .news-title {
            margin: 10px 0;
            font-size: 1.1em;
            color: #333;
            line-height: 1.4;
        }
        .news-excerpt {
            color: #666;
            font-size: 0.9em;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .section{padding:15px}
            .container{padding:15px 0;}
        }