/*
Theme Name: SAFE TOKYO
Theme URI: https://safetokyo.example.com
Author: SAFE TOKYO Team
Author URI: https://safetokyo.example.com
Description: 18-24歳の東京一人暮らし者向けの安全情報メディアテーマ
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: safe-tokyo
Tags: blog, news, safety, tokyo
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.625;
    color: #fff;
    background: linear-gradient(180deg, #1C2A44 0%, #0B1220 60%, #0B1220 100%);
    background-color: #0B1220;
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
}

/* Typography - デザイン指示書 4章準拠 */
h1 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.25;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.25;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }

    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 24px;
}

/* Page Wrapper with Dotted Background */
.page-wrapper {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 30%, rgba(251, 238, 219, 0.08) 80px, transparent 80px),
        radial-gradient(circle at 60% 70%, rgba(251, 238, 219, 0.08) 120px, transparent 120px),
        radial-gradient(circle at 85% 15%, rgba(251, 238, 219, 0.08) 60px, transparent 60px),
        radial-gradient(circle at 40% 90%, rgba(251, 238, 219, 0.08) 100px, transparent 100px),
        radial-gradient(circle at 10% 60%, rgba(251, 238, 219, 0.08) 70px, transparent 70px),
        radial-gradient(circle at 75% 45%, rgba(251, 238, 219, 0.08) 90px, transparent 90px),
        radial-gradient(circle at 30% 10%, rgba(251, 238, 219, 0.08) 110px, transparent 110px),
        radial-gradient(circle at 90% 80%, rgba(251, 238, 219, 0.08) 75px, transparent 75px);
}

/* Header Styles - 省略（以前と同じ） */
.site-header {
    background-color: #1a2740;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    font-size: 1.1875rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding-right: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 3rem;
    width: auto;
    display: block;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.header-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.header-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.header-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.header-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    #search-toggle {
        display: none;
    }

    .logo-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .header-subtitle {
        margin: 0;
        font-size: 0.625rem;
    }

    .logo span {
        font-size: 1.125rem;
    }
}

.header-search-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header-tag-select {
    height: 42px;
    padding: 0.625rem 2rem 0.625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.header-tag-select option {
    background-color: #1f2937;
    color: #fff;
}

.header-search-input {
    width: 16rem;
    height: 42px;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.header-search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0 1rem;
    height: 42px;
    font-size: 1.1875rem;
    transition: all 0.3s;
}

.header-search-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-input {
    width: 16rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Hamburger Menu - 省略（以前と同じ - 長いので省略）*/
.menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 40rem;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.menu-overlay.active .menu-sidebar {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.menu-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.menu-close:hover {
    color: #1f2937;
}

.menu-content {
    padding: 3rem 1.5rem 1.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.menu-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-section-border {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.menu-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.menu-select {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding: 0.625rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background-color: #fff;
    color: #1f2937;
    cursor: pointer;
}

.menu-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-category-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.menu-category-link:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.menu-page-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.menu-page-link:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.menu-page-link i {
    font-size: 1.125rem;
    color: #9ca3af;
}

.menu-search-input {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.menu-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.menu-sns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.menu-sns-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.menu-sns-link:hover {
    color: #1f2937;
}

.menu-sns-link:hover.twitter {
    color: #1d9bf0;
    background-color: #dbeafe;
}

.menu-sns-link:hover.instagram {
    color: #ec4899;
    background-color: #fce7f3;
}

.menu-sns-link:hover.facebook {
    color: #2563eb;
    background-color: #dbeafe;
}

.menu-sns-link:hover.line {
    color: #16a34a;
    background-color: #dcfce7;
}

.menu-sns-link i {
    font-size: 1.125rem;
}

.menu-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-feature-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.menu-feature-link:hover {
    transform: scale(1.02);
}

.menu-feature-link img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-section picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.hero-section picture source {
    display: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    vertical-align: middle;
}

/* ============================================
   Category Banner - Removed Old Styles
   ============================================ */

}

.category-banner-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}





}

/* Category Tabs */
.category-tabs {
    padding: 1.5rem 0;
    background-color: transparent;
}

.category-tabs-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile Category Dropdown */
.category-dropdown-mobile {
    display: none;
    margin-bottom: 1.5rem;
}

/* Desktop Category Buttons */
.category-tabs-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

/* PC: Add top margin */
@media (min-width: 769px) {
    .category-tabs-buttons {
        margin-top: 10px;
    }
}

/* Mobile: Show dropdown, hide buttons */
@media (max-width: 768px) {
    .category-dropdown-mobile {
        display: block;
    }

    .category-tabs-buttons {
        display: none;
    }
}

.category-tab-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    text-decoration: none;
}

.category-tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.category-tab-btn.active {
    background-color: #fff;
    color: #1C2A44;
    border-color: #fff;
}

.category-search-fields {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .category-search-fields {
        gap: 1rem;
    }
}

.search-field-group {
    flex: 1;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .search-field-group {
        min-width: 200px;
    }
}

.search-field-group label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.select-wrapper {
    position: relative;
    flex: 1;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
}

.category-select {
    width: 100%;
    height: 42px;
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
}

.category-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.category-select option {
    background-color: #1f2937;
    color: #fff;
}

.search-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    flex: 1;
}

.category-search-input {
    flex: 1;
    height: 42px;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
}

.category-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.category-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0 1rem;
    height: 42px;
    font-size: 1.1875rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.search-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.recipe-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 42px;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.recipe-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.recipe-submit-btn i {
    font-size: 1.1875rem;
}

/* レスポンシブ対応: モバイルではレシピ投稿ボタンを下に配置 */
@media (max-width: 768px) {
    .search-input-wrapper {
        flex-wrap: wrap;
    }

    .category-search-input {
        flex: 1;
        min-width: 0;
    }

    .recipe-submit-btn {
        width: 100%;
        margin-top: 0.5rem;
        order: 3;
    }

    .search-btn {
        order: 2;
    }
}

/* Featured Section */
.featured-section {
    padding: 2rem 1rem;
}

.featured-section-title {
    font-size: 1.1875rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.featured-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.featured-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.featured-card-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    background-color: #e5e7eb;
}

.featured-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-card-category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.featured-card-content {
    padding: 1rem;
}

.featured-card-date {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
}

.featured-card-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-excerpt {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Section */
.article-section {
    padding: 0 1rem 3rem 1rem;
}

.article-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.article-section-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .article-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .article-section-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-card-small {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.article-card-small:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.article-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
    background-color: #e5e7eb;
}

.article-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card-small:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #000;
    background-color: #667eea;
    border: 2px solid #fff;
}

.article-card-content {
    padding: 1rem;
}

.article-card-date {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
}

.article-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.article-card-title a {
    text-decoration: none;
    color: inherit;
}

.article-card-excerpt {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-section-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.more-link:hover {
    color: #4b5563;
}

.more-link:hover i {
    transform: translateX(0.25rem);
}

.more-link i {
    font-size: 1.125rem;
    transition: transform 0.3s;
}

/* Category Color Classes - カード背景は常に白 */
/* カテゴリー色は動的に適用されます（インラインスタイル） */

/* Badge Color Classes - デザイン指示書準拠 */
.badge-safety {
    background-color: rgba(166, 200, 255, 0.15);
    color: #A6C8FF;
    border-color: #A6C8FF;
}

.badge-warm {
    background-color: rgba(255, 207, 165, 0.15);
    color: #FFCFA5;
    border-color: #FFCFA5;
}

.badge-care {
    background-color: rgba(255, 214, 232, 0.15);
    color: #FFD6E8;
    border-color: #FFD6E8;
}

.badge-progress {
    background-color: rgba(102, 126, 234, 0.15);
    color: #667EEA;
    border-color: #667EEA;
}

.badge-default {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Left Border Accent - カテゴリー色はボーダーに使用可 */
.article-card-small.border-safety {
    border-left: 4px solid #A6C8FF;
}

.article-card-small.border-warm {
    border-left: 4px solid #FFCFA5;
}

.article-card-small.border-care {
    border-left: 4px solid #FFD6E8;
}

.article-card-small.border-progress {
    border-left: 4px solid #667EEA;
}

/* Concept Section */
.concept-section {
    padding: 2rem 1.5rem;
    background-color: transparent;
}

@media (max-width: 768px) {
    .concept-section {
        padding: 1rem 1.5rem;
    }
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .concept-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.concept-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.concept-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

.concept-description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.625;
}

@media (max-width: 768px) {
    .concept-description {
        font-size: 0.875rem;
    }
}

.concept-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concept-features-slider {
    width: 100%;
    overflow: hidden;
}

.concept-features-slider .swiper-wrapper {
    display: flex;
}

.concept-features-slider .swiper-slide {
    height: auto;
}

@media (min-width: 769px) {
    .concept-features-slider .swiper-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .concept-features-slider .swiper-slide {
        width: 100% !important;
    }

    .concept-pagination {
        display: none;
    }
}

.concept-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.concept-feature-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

.concept-feature-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Concept Features Slider Pagination */
.concept-pagination {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.concept-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.concept-pagination .swiper-pagination-bullet-active {
    background: #1C2A44;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .concept-pagination {
        margin-top: 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 1.5rem;
    background-color: transparent;
}

.cta-content {
    max-width: 1536px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.1875rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 1.875rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid;
}

.cta-btn i {
    font-size: 2.25rem;
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-btn-title {
    font-weight: bold;
    font-size: 1rem;
}

.cta-btn-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .cta-btn-title {
        font-size: 1.125rem;
    }

    .cta-btn-subtitle {
        font-size: 0.75rem;
    }
}

.cta-btn-line {
    background-color: #16a34a;
    color: #fff;
    border-color: #4ade80;
}

.cta-btn-line:hover {
    background-color: #15803d;
}

.cta-btn-mail {
    background-color: #2563eb;
    color: #fff;
    border-color: #60a5fa;
}

.cta-btn-mail:hover {
    background-color: #1d4ed8;
}

.cta-btn-twitter {
    background-color: #1f2937;
    color: #fff;
    border-color: #4b5563;
}

.cta-btn-twitter:hover {
    background-color: #111827;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: #fff;
    padding: 3rem 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-name {
    font-size: 1.875rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.footer-brand-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.footer-sns {
    display: flex;
    gap: 0.75rem;
}

.footer-sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #374151;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-sns-icon:hover {
    background-color: #4b5563;
}

.footer-sns-icon i {
    font-size: 1.1875rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #d1d5db;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #d1d5db;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-powered {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-powered a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-powered a:hover {
    color: #9ca3af;
}

/* Archive Page Styles */
.archive-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background-image: url('images/10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.archive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.4) 0%, rgba(11, 18, 32, 0.4) 100%);
}

.archive-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.archive-hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.archive-hero-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.625;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .archive-hero-title {
        font-size: 3.75rem;
    }

    .archive-hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .archive-hero-description {
        font-size: 1.125rem;
    }
}

/* Archive Intro - カテゴリータブ */
.archive-intro {
    padding: 1rem 1rem;
}

@media (min-width: 768px) {
    .archive-intro {
        padding: 2rem 1rem;
    }
}

/* アーカイブページ - モバイル用カテゴリープルダウン */
.archive-category-dropdown-mobile {
    display: block;
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .archive-category-dropdown-mobile {
        display: none;
    }
}

/* アーカイブページ - PC用カテゴリータブ */
.archive-category-tabs {
    display: none;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

@media (min-width: 769px) {
    .archive-category-tabs {
        display: flex;
        gap: 0.75rem;
        margin-bottom: 2rem;
        margin-top: 10px;
    }
}

.archive-category-tab {
    padding: 0.625rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.archive-category-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.archive-category-tab.active {
    background-color: #fff;
    color: #1C2A44;
    border-color: #fff;
}

/* Archive Main - 記事グリッド */
.archive-main {
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .archive-main {
        padding: 3rem 1rem;
    }
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.archive-card {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.archive-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.archive-card-link {
    text-decoration: none;
    display: block;
}

.archive-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.archive-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.05);
}

.archive-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #000;
    background-color: #667eea;
    border: 2px solid #fff;
}

.archive-card-content {
    padding: 1.25rem;
}

.archive-card-date {
    font-size: 0.75rem;
    color: #000;
    display: block;
    margin-bottom: 0.5rem;
}

.archive-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-card-excerpt {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Archive Pagination */
.archive-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.archive-pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.archive-pagination li {
    margin: 0;
}

.archive-pagination a,
.archive-pagination span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.archive-pagination a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.archive-pagination .current {
    background-color: #fff;
    color: #1C2A44;
}

.archive-pagination .dots {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
}

.archive-pagination .next,
.archive-pagination .prev {
    background-color: transparent;
    padding: 0.625rem 1rem;
    min-width: 2.75rem;
    height: 2.75rem;
    justify-content: center;
}

.archive-pagination .next:hover,
.archive-pagination .prev:hover {
    background-color: transparent;
}

.archive-pagination .next i,
.archive-pagination .prev i {
    display: none;
}

/* Archive Empty State */
.archive-empty {
    text-align: center;
}

.archive-empty-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.archive-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.archive-empty-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.archive-empty-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #fff;
    color: #1C2A44;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.archive-empty-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Archive Note Section */
.archive-note {
    padding: 2rem 1rem;
}

.archive-note-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    border-left: 4px solid #A6C8FF;
    background-color: rgba(166, 200, 255, 0.05);
    border-radius: 0.5rem;
}

.archive-note-icon {
    font-size: 1.5rem;
    color: #A6C8FF;
    flex-shrink: 0;
    line-height: 1;
}

.archive-note-text {
    flex: 1;
}

.archive-note-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .archive-note-text p {
        font-size: 1rem;
    }
}

/* Archive CTA Section */
.archive-cta {
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .archive-cta {
        padding: 4rem 1rem;
    }
}

.archive-cta-content {
    max-width: 1536px;
    margin: 0 auto;
    text-align: center;
}

.archive-cta-title {
    font-size: 1.1875rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .archive-cta-title {
        font-size: 1.875rem;
    }
}

.archive-cta-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .archive-cta-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

.archive-cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .archive-cta-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Page Hero (会社概要・プライバシーポリシーなど) */
.page-hero {
    height: 25vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background-image: url('images/10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media (min-width: 768px) {
    .page-hero {
        height: 30vh;
        min-height: 250px;
        padding: 2rem 1rem;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.5) 0%, rgba(11, 18, 32, 0.7) 100%);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3rem;
    }
}

.page-hero-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.625;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .page-hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-description {
        font-size: 1.125rem;
    }
}

/* Company Page Styles */
.company-section {
}

.company-content {
    max-width: 900px;
    margin: 0 auto;
}

/* 会社情報テーブル */
.company-table-wrapper {
    margin-bottom: 4rem;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-table tbody tr:last-child {
    border-bottom: none;
}

.company-table th {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: left;
    padding: 1.25rem 1.5rem;
    width: 180px;
    vertical-align: top;
}

.company-table td {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    padding: 1.25rem 1.5rem;
    line-height: 1.6;
}

.company-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.company-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .company-table th {
        padding-bottom: 0.5rem;
        border-bottom: none;
        font-weight: 700;
        color: #A6C8FF;
    }

    .company-table td {
        padding-top: 0;
        padding-bottom: 1.5rem;
    }

    .company-table tbody tr {
        display: block;
    }
    .company-table tbody tr {
        display: block;
    }
    .company-table tbody tr {
        display: block;
    }
    .company-table tbody tr {
        display: block;
    }
    .company-table tbody tr {
        display: block;
    }
}

/* ミッション */
.company-mission {
    margin-bottom: 4rem;
}

.company-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.company-mission-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #A6C8FF;
    border-radius: 0.5rem;
    padding: 2rem;
}

.company-mission-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-mission-text:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .company-section-title {
        font-size: 2.25rem;
    }

    .company-mission-text {
        font-size: 1.125rem;
    }
}

/* ビジョン */
.company-vision {
    margin-bottom: 2rem;
}

.company-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .company-vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.company-vision-item {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.company-vision-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.company-vision-icon {
    font-size: 3rem;
    color: #A6C8FF;
    margin-bottom: 1.5rem;
}

.company-vision-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.company-vision-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .company-vision-title {
        font-size: 1.5rem;
    }

    .company-vision-text {
        font-size: 1rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-section {
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(166, 200, 255, 0.05);
    border-left: 4px solid #A6C8FF;
    border-radius: 0.5rem;
}

.privacy-intro p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.privacy-section-block {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .privacy-section-block {
        margin-bottom: 3rem;
    }
}

.privacy-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(166, 200, 255, 0.3);
}

.privacy-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #A6C8FF;
}

.privacy-contact {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.privacy-contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.privacy-date {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.privacy-date p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .privacy-intro p {
        font-size: 1.125rem;
    }

    .privacy-section-title {
        font-size: 1.875rem;
    }

    .privacy-text,
    .privacy-list li {
        font-size: 1.125rem;
    }

    .privacy-contact p {
        font-size: 1rem;
    }
}

/* Checklist Archive Page Styles */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .checklist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.checklist-card {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.checklist-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.checklist-card-link {
    text-decoration: none;
    display: block;
}

.checklist-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding-top: 56.25%; /* 16:9 アスペクト比 (9/16 = 0.5625) */
    overflow: hidden;
    background-color: #e5e7eb;
}

.checklist-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.checklist-card:hover .checklist-card-image img {
    transform: scale(1.05);
}

.checklist-card-content {
    padding: 1.5rem;
}

.checklist-card-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.checklist-card-excerpt {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checklist-card-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #000;
    margin-bottom: 1rem;
}

.checklist-card-count i {
    font-size: 1rem;
    color: #000;
}

.checklist-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(75, 85, 99, 0.2);
}

.checklist-card-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}

.checklist-card-cta i {
    font-size: 1.125rem;
    color: #000;
    transition: transform 0.3s;
}

.checklist-card:hover .checklist-card-cta i {
    transform: translateX(0.25rem);
}

/* Checklist Single Page Styles */
.checklist-section {
    padding: 0;
}

.checklist-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .checklist-content {
        padding-top: 4rem;
    }
}

/* 進捗表示 */
/* チェックリストヘッダー（サムネイルと進捗を横並び） */
.checklist-header {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    align-items: stretch;
}

.checklist-thumbnail {
    flex-shrink: 0;
    width: 450px;
}

.checklist-thumbnail img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem 0 0 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.checklist-progress {
    flex: 1;
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checklist-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.checklist-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .checklist-header {
        flex-direction: column;
    }

    .checklist-thumbnail {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .checklist-thumbnail img {
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .checklist-progress {
        border-radius: 0 0 0.5rem 0.5rem;
    }
}

.checklist-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checklist-progress-count {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.checklist-progress-bar {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 0.5rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.checklist-progress-fill {
    height: 100%;
    background-color: #A6C8FF;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

/* チェックリスト項目 */
.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    background-color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.checklist-item.checked {
    opacity: 0.6;
    border-left-color: #A6C8FF;
    background-color: #f9fafb;
}

.checklist-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.checklist-checkbox {
    display: none;
}

.checklist-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.125rem;
}

.checklist-icon .unchecked-icon {
    display: block;
    color: #9ca3af;
}

.checklist-icon .checked-icon {
    display: none;
    color: #A6C8FF;
}

.checklist-item.checked .checklist-icon .unchecked-icon {
    display: none;
}

.checklist-item.checked .checklist-icon .checked-icon {
    display: block;
}

.checklist-text {
    flex: 1;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.6;
    font-weight: 500;
}

.checklist-item.checked .checklist-text {
    text-decoration: line-through;
    color: #6b7280;
}

.checklist-description {
    margin-top: 0.75rem;
    margin-left: 2.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid #e5e7eb;
}

/* リセットボタン */
.checklist-actions {
    margin-top: 2rem;
    text-align: center;
}

.checklist-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.checklist-reset-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.checklist-reset-btn i {
    font-size: 1.125rem;
}

/* ====================================
   オープンチャット
   ==================================== */

/* オープンチャットグリッド */
.openchat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .openchat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .openchat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* オープンチャットカード */
.openchat-card {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.openchat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.openchat-card-link {
    text-decoration: none;
    display: block;
}

.openchat-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    background-color: #e5e7eb;
}

.openchat-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.openchat-card:hover .openchat-card-image img {
    transform: scale(1.05);
}

.openchat-card-content {
    padding: 1.5rem;
}

.openchat-card-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.openchat-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.openchat-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.openchat-card-members {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #667EEA;
}

.openchat-card-members i {
    font-size: 1rem;
}

.openchat-card-category {
    display: flex;
    align-items: center;
}

.openchat-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.openchat-badge-general {
    background-color: rgba(166, 200, 255, 0.2);
    color: #667EEA;
}

.openchat-badge-area {
    background-color: rgba(255, 207, 165, 0.2);
    color: #FF8C42;
}

.openchat-badge-hobby {
    background-color: rgba(255, 214, 232, 0.2);
    color: #FF6B9D;
}

.openchat-badge-support {
    background-color: rgba(102, 126, 234, 0.2);
    color: #667EEA;
}

.openchat-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.openchat-card-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: #667EEA;
}

.openchat-card-cta i {
    color: #667EEA;
    font-size: 1.1875rem;
}

/* オープンチャット詳細ページ */
.openchat-detail-section {
}

.openchat-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.openchat-detail-image {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.openchat-detail-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    display: block;
}

.openchat-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(166, 200, 255, 0.05);
    border-radius: 0.5rem;
}

.openchat-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.openchat-meta-item i {
    font-size: 1.1875rem;
    color: #A6C8FF;
}

.openchat-detail-description {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    color: #1f2937;
}

.openchat-detail-action {
    margin-bottom: 3rem;
    text-align: center;
}

.openchat-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #06C755 0%, #00B140 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(6, 199, 85, 0.3);
    transition: all 0.3s;
}

.openchat-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(6, 199, 85, 0.4);
}

.openchat-join-btn i {
    font-size: 1.5rem;
}

.openchat-join-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.openchat-detail-notice {
    padding: 2rem;
    background-color: rgba(255, 207, 165, 0.1);
    border-left: 4px solid #FFCFA5;
    border-radius: 0.5rem;
}

.openchat-notice-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.openchat-notice-title i {
    font-size: 1.5rem;
    color: #FFCFA5;
}

.openchat-notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.openchat-notice-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
}

.openchat-notice-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFCFA5;
    font-weight: bold;
}

.openchat-notice-list li:last-child {
    margin-bottom: 0;
}

.openchat-related-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.openchat-related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .openchat-related-title {
        font-size: 2.25rem;
    }
}

/* ========================================
   投稿詳細ページ (single.php)
   ======================================== */

.post-detail {
    background-color: #0B1220;
    min-height: 100vh;
}

/* パンくずリスト */
.breadcrumbs-container {
    background-color: transparent;
    padding: 1rem 0;
}

.breadcrumbs {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #A6C8FF;
}

.breadcrumbs a {
    color: #A6C8FF;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #FFFFFF;
}

.breadcrumbs .separator {
    color: #667EEA;
}

.breadcrumbs .current {
    color: #FFFFFF;
}

/* 投稿ヘッダー */
.post-header {
    background: linear-gradient(180deg, #141B2B 0%, #0B1220 100%);
    padding: 3rem 0;
}

.post-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-category {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-date {
    color: #A6C8FF;
    font-size: 0.875rem;
}

.post-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.post-tags li a {
    color: #A6C8FF;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.post-tags li a:hover {
    color: #FFFFFF;
}

.post-description {
    background-color: rgba(166, 200, 255, 0.05);
    border-left: 4px solid #667EEA;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    color: #E5E7EB;
    line-height: 1.8;
}

.post-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(166, 200, 255, 0.1);
    border-bottom: 1px solid rgba(166, 200, 255, 0.1);
    margin-bottom: 2rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-author img {
    border-radius: 9999px;
}

.author-name {
    color: #FFFFFF;
    font-weight: 600;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    color: #A6C8FF;
    font-size: 0.875rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.share-twitter {
    background-color: #1DA1F2;
    color: #FFFFFF;
}

.share-twitter:hover {
    background-color: #1a8cd8;
    transform: translateY(-2px);
}

.share-facebook {
    background-color: #1877F2;
    color: #FFFFFF;
}

.share-facebook:hover {
    background-color: #1666d8;
    transform: translateY(-2px);
}

.share-line {
    background-color: #06C755;
    color: #FFFFFF;
}

.share-line:hover {
    background-color: #05b04a;
    transform: translateY(-2px);
}

.post-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
}

.post-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
}

/* 目次 */
.post-toc {
    background-color: #141B2B;
    padding: 2rem 0;
}

.post-toc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.toc-title {
    color: #FFFFFF;
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667EEA;
}

.toc-content {
    color: #E5E7EB;
    line-height: 2;
}

/* 本文 */
.post-content {
    background-color: #0B1220;
    padding: 3rem 0;
}

.post-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: #E5E7EB;
    line-height: 1.8;
}

.post-content-container h2 {
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667EEA;
}

.post-content-container h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.post-content-container h4 {
    color: #FFFFFF;
    font-size: 1.1875rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content-container p {
    margin-bottom: 1.5rem;
}

.post-content-container ul,
.post-content-container ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content-container li {
    margin-bottom: 0.5rem;
}

.post-content-container a {
    color: #667EEA;
    text-decoration: underline;
}

.post-content-container a:hover {
    color: #A6C8FF;
}

.post-content-container img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.post-content-container blockquote {
    background-color: rgba(166, 200, 255, 0.05);
    border-left: 4px solid #667EEA;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

/* フッター */
.post-footer {
    background-color: #141B2B;
    padding: 3rem 0;
}

.post-footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.post-footer-tags {
    margin-bottom: 2rem;
}

.footer-tags-title {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.footer-tags-list li a {
    display: inline-block;
    background-color: rgba(166, 200, 255, 0.1);
    color: #A6C8FF;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-tags-list li a:hover {
    background-color: rgba(166, 200, 255, 0.2);
    color: #FFFFFF;
}

.post-footer-share {
    padding-top: 2rem;
    border-top: 1px solid rgba(166, 200, 255, 0.1);
}

.footer-share-title {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    color: #FFFFFF;
}

.footer-share-btn i {
    font-size: 1.1875rem;
}

.footer-share-twitter {
    background-color: #1DA1F2;
}

.footer-share-twitter:hover {
    background-color: #1a8cd8;
    transform: translateY(-2px);
}

.footer-share-facebook {
    background-color: #1877F2;
}

.footer-share-facebook:hover {
    background-color: #1666d8;
    transform: translateY(-2px);
}

.footer-share-line {
    background-color: #06C755;
}

.footer-share-line:hover {
    background-color: #05b04a;
    transform: translateY(-2px);
}

/* ナビゲーション */
.post-navigation {
    background-color: #0B1220;
    padding: 2rem 0;
}

.post-navigation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.post-nav-prev a,
.post-nav-next a,
.post-nav-back a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.post-nav-prev a:hover,
.post-nav-next a:hover,
.post-nav-back a:hover {
    opacity: 0.8;
}

.nav-arrow {
    font-size: 1.1875rem;
}

.column-nav-next a,
.column-nav-prev a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.column-nav-next a:hover,
.column-nav-prev a:hover {
    opacity: 0.8;
}

/* レスポンシブ */
@media (min-width: 768px) {
    .post-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .post-meta-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-navigation-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-share-buttons {
        flex-direction: column;
    }

    .footer-share-btn {
        width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
        justify-content: center;
    }
}

/* ========================================
   コラム詳細ページ (single-column.php)
   ======================================== */

.column-detail {
    background-color: transparent;
    min-height: 100vh;
}

.column-header {
    background: transparent;
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .column-header {
        padding: 3rem 0;
    }
}

.column-header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .column-header-container {
        padding: 0 1.5rem;
    }
}

.column-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.column-meta .article-category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fff;
}

.column-meta .column-date {
    color: #E5E7EB;
    font-size: 0.875rem;
}

.column-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .column-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.column-description {
    background-color: transparent;
    border-left: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 2rem;
    color: #E5E7EB;
    line-height: 1.8;
}

.column-thumbnail {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
}

.column-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-toc {
    background-color: #141B2B;
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .column-toc {
        padding: 2rem 0;
    }
}

.column-toc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .column-toc-container {
        padding: 0 1.5rem;
    }
}

.column-content {
    background-color: transparent;
    padding: 0 0 2rem 0;
}

@media (min-width: 768px) {
    .column-content {
        padding: 0 0 3rem 0;
    }
}

.column-content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    color: #E5E7EB;
    line-height: 1.8;
}

/* コラムコンテンツの見出しと段落のサイズ */
.column-content-container h1 {
    font-size: 38px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

.column-content-container h2 {
    font-size: 30px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.column-content-container h3 {
    font-size: 24px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.column-content-container h4 {
    font-size: 20px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

.column-content-container h5 {
    font-size: 18px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

.column-content-container h6 {
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

.column-content-container p {
    font-size: 16px !important;
    line-height: 1.9 !important;
}

@media (min-width: 768px) {
    .column-content-container {
        padding: 0 1.5rem;
    }
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .column-content-container h1 { font-size: 34px !important; }
    .column-content-container h2 { font-size: 26px !important; }
    .column-content-container h3 { font-size: 22px !important; }
    .column-content-container h4 { font-size: 18px !important; }
    .column-content-container h5 { font-size: 16px !important; }
    .column-content-container h6 { font-size: 15px !important; }
    .column-content-container p  { font-size: 16px !important; }
}

/* モバイル対応 */
@media (max-width: 767px) {
    .column-content-container h1 { font-size: 30px !important; }
    .column-content-container h2 { font-size: 24px !important; }
    .column-content-container h3 { font-size: 20px !important; }
    .column-content-container h4 { font-size: 18px !important; }
    .column-content-container h5 { font-size: 16px !important; }
    .column-content-container h6 { font-size: 14px !important; }
    .column-content-container p  { font-size: 15px !important; }
}

.column-navigation {
    background-color: transparent;
    padding: 2rem 0;
}

.column-navigation-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .column-navigation-container .nav-label {
        font-size: calc(1em - 2px);
    }

    .column-navigation-container .nav-arrow {
        font-size: calc(1em - 2px);
    }
}

@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   レシピページ用スタイル
   ========================================================================== */

/* レシピ詳細ページ */
.recipe-detail {
    background-color: #0B1220;
    min-height: 100vh;
}

.recipe-header {
    background: linear-gradient(180deg, #141B2B 0%, #0B1220 100%);
    padding: 3rem 0;
}

.recipe-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.recipe-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.recipe-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.recipe-category-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 207, 165, 0.1);
    color: #FFCFA5;
    border: 1px solid rgba(255, 207, 165, 0.3);
    border-radius: 1.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.recipe-category-badge:hover {
    background-color: rgba(255, 207, 165, 0.2);
}

.recipe-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.recipe-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
}

.recipe-description {
    background-color: rgba(255, 207, 165, 0.05);
    border-left: 4px solid #FFCFA5;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
    line-height: 1.8;
}

.recipe-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD6E8;
    font-size: 0.95rem;
}

.recipe-time i {
    font-size: 1.2rem;
}

.recipe-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recipe-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.recipe-section-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #FFCFA5;
}

.recipe-ingredients {
    color: #E5E7EB;
    line-height: 2;
    white-space: pre-wrap;
}

.recipe-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.recipe-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
    line-height: 1.8;
}

.recipe-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
}

.recipe-comment {
    background-color: rgba(255, 214, 232, 0.05);
    border-left: 4px solid #FFD6E8;
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: #E5E7EB;
    line-height: 1.8;
    font-style: italic;
}

.recipe-instagram {
    display: flex;
    justify-content: center;
}

.recipe-instagram iframe {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.recipe-tags-section {
    padding: 2rem 0;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.recipe-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(166, 200, 255, 0.1);
    color: #A6C8FF;
    border: 1px solid rgba(166, 200, 255, 0.2);
    border-radius: 1.5rem;
    font-size: 0.875rem;
}

.recipe-footer {
    padding: 2.5rem 0;
    background-color: #0F1626;
}

.recipe-footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.recipe-share {
    text-align: center;
}

.share-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn i {
    font-size: 1.5rem;
}

.share-btn span {
    font-size: 0.875rem;
}

.share-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.share-twitter:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.share-facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.share-line:hover {
    border-color: #00B900;
    color: #00B900;
}

.recipe-navigation {
    padding: 2rem 0;
    background-color: #0B1220;
}

.recipe-navigation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.recipe-nav-prev a,
.recipe-nav-next a,
.recipe-nav-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s;
}

.recipe-nav-prev a:hover,
.recipe-nav-next a:hover,
.recipe-nav-back a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #667EEA;
}

/* レシピページ専用スタイル */
.archive-card-time {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
}

.archive-card-time i {
    font-size: 1rem;
}

.badge-recipe {
    background-color: rgba(255, 207, 165, 0.9);
    color: #1C2A44;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .recipe-title {
        font-size: 1.5rem;
    }

    .recipe-section-title {
        font-size: 1.1875rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .recipe-navigation-container {
        flex-direction: column;
    }

    .recipe-nav-prev,
    .recipe-nav-next,
    .recipe-nav-back {
        width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    }

    .recipe-nav-prev a,
    .recipe-nav-next a,
    .recipe-nav-back a {
        width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
        justify-content: center;
    }
}

/* ==========================================================================
   レシピ投稿フォーム
   ========================================================================== */

.recipe-submit-page {
    background-color: #0B1220;
    min-height: 100vh;
}

.recipe-submit-section {
    padding: 3rem 0;
    background-color: #0B1220;
}

.recipe-submit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.recipe-submit-form {
    background: linear-gradient(180deg, #141B2B 0%, #0F1626 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-message i {
    font-size: 1.5rem;
}

.form-success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ADE80;
}

.form-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #F87171;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: '*';
    color: #F87171;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: all 0.3s;
}

input.form-control,
select.form-control {
    height: auto;
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #667EEA;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFFFFF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-help {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ファイルアップロード */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #A6C8FF;
    cursor: pointer;
    transition: all 0.3s;
}

.file-label:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #667EEA;
}

.file-label i {
    font-size: 1.5rem;
}

.image-preview {
    margin-top: 1rem;
}

.image-preview img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 手順入力 */
#steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
}

.btn-remove-step {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.375rem;
    color: #F87171;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove-step:hover {
    background-color: rgba(239, 68, 68, 0.2);
}

.btn-add-step {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #A6C8FF;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-add-step:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #667EEA;
}

/* 送信ボタン */
.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border: none;
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-submit i {
    font-size: 1.125rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .recipe-submit-form {
        padding: 1.5rem;
    }

    .step-number {
        order: 1;
    }

    .btn-remove-step {
        order: 3;
        margin-left: auto;
    }
}

/* =============================================
   投稿方法タブ切り替え
   ============================================= */
.submit-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.submit-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-tab i {
    font-size: 1.1875rem;
}

.submit-tab:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.submit-tab.active {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =============================================
   Instagram投稿グリッド
   ============================================= */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-post-item {
    cursor: pointer;
}

.instagram-post-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.instagram-post-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instagram-post-item:hover .instagram-post-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.instagram-post-item input[type="radio"]:checked + .instagram-post-card {
    border-color: #667EEA;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.instagram-post-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    background-color: rgba(255, 255, 255, 0.05);
}

.instagram-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
}

.instagram-post-item input[type="radio"]:checked + .instagram-post-card .instagram-post-image::after {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1875rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.instagram-post-caption {
    padding: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    background-color: rgba(0, 0, 0, 0.3);
    min-height: 3rem;
}

/* =============================================
   Instagram連携メッセージ
   ============================================= */
.instagram-connect-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
}

.instagram-connect-message i {
    font-size: 4rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.instagram-connect-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.instagram-connect-message p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-connect-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-connect-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #FFFFFF;
}

.btn-connect-instagram i {
    font-size: 1.1875rem;
}

/* =============================================
   レスポンシブ（タブ）
   ============================================= */
@media (max-width: 768px) {
    .submit-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .submit-tab {
        width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    }

    .instagram-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .instagram-connect-message {
        padding: 2rem 1.5rem;
    }

    .instagram-connect-message i {
        font-size: 3rem;
    }

    .instagram-connect-message h3 {
        font-size: 1.1875rem;
    }
}

/* =============================================
   法務チェックリスト
   ============================================= */
.legal-check-section {
    margin-top: 2rem;
}

.legal-check-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(255, 207, 165, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
}

.legal-check-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1875rem;
    font-weight: 600;
    color: #FFCFA5;
    margin-bottom: 1rem;
}

.legal-check-title i {
    font-size: 1.5rem;
}

.legal-check-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.legal-check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.legal-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.legal-check-agree {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 207, 165, 0.5);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-check-agree:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: #FFCFA5;
}

.legal-check-agree input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    cursor: pointer;
    accent-color: #667EEA;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.legal-check-agree span {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;
}

/* レスポンシブ（法務チェックリスト） */
@media (max-width: 768px) {
    .legal-check-box {
        padding: 1.5rem;
    }

    .legal-check-title {
        font-size: 1.125rem;
    }

    .legal-check-list li {
        font-size: 0.875rem;
    }

    .legal-check-agree {
        padding: 1rem;
    }
}

/* =============================================
   本人確認済みバッジ
   ============================================= */
.recipe-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    cursor: help;
}

.recipe-verified-badge i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .recipe-verified-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* =============================================
   Instagram連携UI
   ============================================= */
.instagram-info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.instagram-info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.instagram-info-box i {
    color: #667EEA;
    margin-right: 0.5rem;
}

.instagram-user-info {
    margin-top: 0.75rem !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.instagram-post-date {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-disconnect-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.btn-disconnect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-disconnect:hover {
    background-color: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.5);
    color: #ff6b6b;
}

/* レスポンシブ（Instagram連携UI） */
@media (max-width: 768px) {
    .instagram-info-box {
        padding: 1rem;
    }

    .instagram-info-box p {
        font-size: 0.875rem;
    }

    .instagram-disconnect-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* 記事詳細ページ - 2カラムレイアウト */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.column-article {
    min-width: 0;
}

/* サイドバー */
.article-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.sidebar-widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

/* 検索フォーム */
.search-form-wrapper {
    display: flex;
    gap: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.875rem;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-submit:hover {
    transform: translateY(-2px);
}

/* 最近の投稿 */
.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.recent-post-link:hover {
    opacity: 0.8;
}

.recent-post-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-category {
    display: inline-block;
    font-size: 0.75rem;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.recent-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* カテゴリーリスト */
.categories-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.category-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.category-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
        max-height: none;
    }
}


/* 記事コンテンツ内の見出し */
.column-content-container .wp-block-heading,
.column-content-container h2 {
    padding-bottom: 50px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .column-content-container .wp-block-heading,
    .column-content-container h2 {
        padding-bottom: 30px;
    }
}

/* ============================================
   SAFE ROOM Page Styles
   ============================================ */

/* SAFE ROOM Section */
.saferoom-section {
    padding: 4rem 0;
}

.saferoom-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* SAFE ROOM Intro */
.saferoom-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
}

.saferoom-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.saferoom-text {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.saferoom-text br {
    display: none;
}

@media (min-width: 768px) {
    .saferoom-text {
        font-size: 1.125rem;
    }

    .saferoom-text br {
        display: inline;
    }
}

/* SAFE ROOM Features (使い方セクション) */
.saferoom-features {
    margin-bottom: 4rem;
}

.saferoom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.saferoom-feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.saferoom-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.saferoom-feature-title {
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.saferoom-feature-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* SAFE ROOM Details */
.saferoom-details {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.saferoom-details-content {
    max-width: 800px;
    margin: 0 auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .saferoom-section {
        padding: 2rem 0;
    }

    .saferoom-intro {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .saferoom-section-title {
        font-size: 1.5rem;
    }

    .saferoom-text {
        font-size: 1rem;
    }

    .saferoom-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .saferoom-feature-item {
        padding: 1.5rem;
    }

    .saferoom-feature-title {
        font-size: 1.125rem;
    }

    .saferoom-feature-text {
        font-size: 0.9375rem;
    }

    .saferoom-details {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .saferoom-intro {
        padding: 1.5rem 1rem;
    }

    .saferoom-section-title {
        font-size: 1.1875rem;
    }

    .saferoom-feature-item {
        padding: 1.25rem;
    }

    .saferoom-details {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   SAFE ROOM Page Styles (Updated - Story Type)
   ============================================ */

/* SAFE ROOM Section */
.saferoom-section {
    padding: 4rem 0;
}

.saferoom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.saferoom-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

/* 1. SAFE ROOMとは（ワンカラムテキスト） */
.saferoom-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.saferoom-intro .saferoom-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.saferoom-text {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.saferoom-text br {
    display: none;
}

@media (min-width: 768px) {
    .saferoom-text {
        font-size: 1.125rem;
    }

    .saferoom-text br {
        display: inline;
    }
}

/* 2. こんな時に使ってみて（画像+テキスト交互） */
.saferoom-usage {
    margin-bottom: 5rem;
}

.saferoom-usage-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.saferoom-usage-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.saferoom-usage-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.saferoom-usage-item-reverse {
    grid-template-columns: 1fr 1fr;
}

.saferoom-usage-item-reverse .saferoom-usage-image {
    order: 2;
}

.saferoom-usage-item-reverse .saferoom-usage-content {
    order: 1;
}

.saferoom-usage-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.saferoom-usage-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
}

.saferoom-usage-content {
    padding: 1rem;
}

.saferoom-usage-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

@media (min-width: 768px) {
    .saferoom-usage-title {
        font-size: 1.5rem;
    }
}

.saferoom-usage-text {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .saferoom-usage-text {
        font-size: 1rem;
    }
}

/* 3. 実際にどう使うか？（週3回のメッセージ詳細） */
.saferoom-messages {
    margin-bottom: 5rem;
}

.saferoom-messages-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    padding: 3rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.saferoom-messages-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.saferoom-messages-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-fit: cover;
}

.saferoom-messages-content {
    padding: 1rem;
}

.saferoom-messages-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

@media (min-width: 768px) {
    .saferoom-messages-subtitle {
        font-size: 1.75rem;
    }
}

.saferoom-messages-text {
    font-size: 0.75rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

@media (min-width: 768px) {
    .saferoom-messages-text {
        font-size: 1.125rem;
    }
}

.saferoom-messages-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .saferoom-messages-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 2rem;
    }
}

.saferoom-messages-list li {
    font-size: 0.75rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .saferoom-messages-list li {
        font-size: 1rem;
    }
}

.saferoom-messages-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(102, 126, 234, 1);
    font-size: 0.75rem;
    line-height: 2;
}

@media (min-width: 768px) {
    .saferoom-messages-list li:before {
        font-size: 1rem;
    }
}

.saferoom-messages-note {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(102, 126, 234, 1);
}

.saferoom-messages-note br {
    display: none;
}

@media (min-width: 768px) {
    .saferoom-messages-note {
        font-size: 1rem;
    }

    .saferoom-messages-note br {
        display: inline;
    }
}

/* 4. SAFE ROOMの特徴（3カラムカード） */
.saferoom-features {
    margin-bottom: 4rem;
}

.saferoom-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.saferoom-feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.saferoom-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.saferoom-feature-icon {
    font-size: 3rem;
    color: rgba(102, 126, 234, 1);
    margin-bottom: 1rem;
}

.saferoom-feature-title {
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.saferoom-feature-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .saferoom-intro,
    .saferoom-usage-item,
    .saferoom-messages-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .saferoom-usage-item-reverse .saferoom-usage-image,
    .saferoom-usage-item-reverse .saferoom-usage-content {
        order: unset;
    }

    .saferoom-intro-image,
    .saferoom-usage-image,
    .saferoom-messages-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .saferoom-section {
        padding: 2rem 0;
    }

    .saferoom-intro,
    .saferoom-usage-item,
    .saferoom-messages-container {
        padding: 2rem 1.5rem;
    }

    .saferoom-section-title {
        font-size: 1.5rem;
    }

    .saferoom-usage-title,
    .saferoom-messages-subtitle {
        font-size: 1.1rem;
    }

    .saferoom-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .saferoom-intro-image,
    .saferoom-usage-image,
    .saferoom-messages-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .saferoom-intro,
    .saferoom-usage-item,
    .saferoom-messages-container {
        padding: 1.5rem 1rem;
    }

    .saferoom-section-title {
        font-size: 1.1875rem;
    }

    .saferoom-intro-image,
    .saferoom-usage-image,
    .saferoom-messages-image {
        height: 200px;
    }

    .saferoom-feature-icon {
        font-size: 2.5rem;
    }
}

/* SAFE ROOM Messages Section - No Image Override */
.saferoom-messages-container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.saferoom-messages-image {
    display: none;
}

/* 重複スタイルは上部で定義済みのため削除 */

/* SAFE ROOM CTA Button */
.saferoom-cta-button {
    text-align: center;
    margin-top: 2.5rem;
}

.saferoom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.saferoom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.saferoom-cta-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .saferoom-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .saferoom-cta-btn i {
        font-size: 1.1875rem;
    }
}

/* SAFE ROOM CTA Button - LINE Green Color Override */
.saferoom-cta-btn {
    background: #06C755 !important;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4) !important;
}

.saferoom-cta-btn:hover {
    background: #05B04D !important;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.6) !important;
}

/* SAFE ROOM CTA Button - Wider Width */
.saferoom-cta-btn {
    padding: 1rem 4rem !important;
    min-width: 280px;
}

@media (max-width: 768px) {
    .saferoom-cta-btn {
        padding: 0.875rem 3rem !important;
        min-width: 240px;
    }
}

/* SAFE ROOM CTA Button - Even Wider */
.saferoom-cta-btn {
    padding: 1rem 5.5rem !important;
    min-width: 360px !important;
}

@media (max-width: 768px) {
    .saferoom-cta-btn {
        padding: 0.875rem 4rem !important;
        min-width: 280px !important;
    }
}

/* SAFE ROOM CTA Button - Center Text */
.saferoom-cta-btn {
    justify-content: center !important;
    text-align: center !important;
}

/* Category Banner Swiper Slider */
.category-banner {
    margin: 0;
    padding: 0;
    position: relative;
}

.category-banner-slider {
    position: relative;
    overflow: hidden;
}

.category-banner-item {
    position: relative;
    display: block;
    transition: all 0.3s ease;
}

.category-banner-link {
    display: block;
    position: relative;
}

.category-banner-link img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Pagination Dots */
.banner-pagination {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.banner-pagination .swiper-pagination-bullet-active {
    background: #1C2A44;
    width: 32px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-banner {
        padding: 20px 20px;
    }

    .banner-pagination {
        margin-top: 20px;
    }
}

/* Column Content List Styles */
.column-content ul {
    background: rgba(102, 126, 234, 0.08);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 24px 24px 24px 48px;
    margin: 24px 0;
    list-style-position: outside;
}

.column-content ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.75;
    position: relative;
}

.column-content ul li:last-child {
    margin-bottom: 0;
}

.column-content ul li::marker {
    color: #667eea;
}

/* Ordered List Styles */
.column-content ol {
    background: rgba(102, 126, 234, 0.08);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 24px 24px 24px 48px;
    margin: 24px 0;
    list-style-position: outside;
    counter-reset: item;
}

.column-content ol li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.75;
    position: relative;
}

.column-content ol li:last-child {
    margin-bottom: 0;
}

.column-content ol li::marker {
    color: #667eea;
    font-weight: 600;
}

/* Mobile Responsive for Lists */
@media (max-width: 768px) {
    .column-content ul,
    .column-content ol {
        padding: 20px 20px 20px 40px;
        margin: 20px 0;
    }
}
