<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Short Info Archive Styles
 */

.short-info-archive {
    padding: 30px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ��綺����靘√�阪�� */
.sort-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.sort-options {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.sort-label {
    margin-right: 15px;
    font-weight: 600;
    color: #333;
    position: relative;
}

.sort-select-wrapper {
    position: relative;
    width: 100px;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 8px 12px;
    padding-right: 30px;
    border: 1px solid #eee;
    border-radius: 20px;
    background-color: #fff;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sort-select:hover {
    border-color: #4CAF50;
}

.sort-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.sort-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
}

.sort-select option {
    padding: 8px;
    font-size: 14px;
}

/* ��膣∽��桁� */
.search-box {
    flex: 0 0 300px;
}

.short-info-search-form {
    position: relative;
}

.search-field {
    width: 100%;
    padding: 8px 15px;
    padding-right: 40px;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #4CAF50;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background-color: #3d9140;
}

.icon-search {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"&gt;&lt;path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/&gt;&lt;/svg&gt;');
    background-size: contain;
    background-repeat: no-repeat;
}

/* 膈����阪���桁� */
.filter-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 15px 0;
    position: relative;
}

.filter-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.filter-toggle-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"&gt;&lt;path d="M7 10l5 5 5-5z"/&gt;&lt;/svg&gt;');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.filter-toggle.active .filter-toggle-icon {
    transform: rotate(180deg);
}

.filter-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    position: relative;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-row:after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0.03), rgba(0,0,0,0.08), rgba(0,0,0,0.03));
}

.filter-row:last-child:after {
    display: none;
}

.filter-label {
    flex: 0 0 80px;
    font-weight: 600;
    color: #333;
    padding-top: 5px;
    position: relative;
}

.filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    margin: 0;
    color: #555;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.25s ease;
    background-color: #fff;
    border: 1px solid #eee;
    font-size: 14px;
}

.filter-option:hover {
    color: #4CAF50;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.15);
}

.filter-option.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.25);
}

/* 紊�膾ф��膈丈�桁� */
.filter-group {
    position: relative;
    margin: 0;
}

.filter-parent {
    display: inline-block;
    margin-right: 0;
    padding-right: 28px;
    position: relative;
}

.filter-parent:after {
    content: '��';
    font-size: 8px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.filter-group.open .filter-parent:after {
    transform: translateY(-50%) rotate(180deg);
}

.filter-children {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    min-width: 180px;
    padding: 8px 0;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-children:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

.filter-child {
    display: block;
    margin: 0;
    padding: 8px 15px;
    border-radius: 0;
    border: none;
    text-align: left;
    font-size: 14px;
}

.filter-child:hover {
    background-color: #f5f5f5;
}

.filter-child.active {
    background-color: rgba(76, 175, 80, 0.12);
    color: #4CAF50;
    border-color: transparent;
    box-shadow: none;
}

/* �㊤�т拭����弱�絮� */
.short-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.short-info-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.short-info-item:hover {
    transform: translateY(-5px);
}

.short-info-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.short-info-thumbnail {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    height:450px;
}

.short-info-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.short-info-content {
    padding: 15px;
}

.short-info-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.short-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.short-info-tag {
    font-size: 12px;
    padding: 2px 6px;
    background-color: #f5f5f5;
    border-radius: 3px;
    color: #666;
}

/* ��蕁球��� */
.pagination-container {
    margin: 40px 0;
    text-align: center;
}

.pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 15px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    margin: 0 3px;
    border-radius: 50%;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background-color: #4CAF50;
    color: white;
}

.page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
    color: #333;
}

.pagination-prev,
.pagination-next {
    padding: 0 10px;
}

/* ��綺�綣顒乗� - 篌���腱糸����丞ず */
@media (max-width: 1200px) {
    .short-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .short-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .sort-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-options {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .search-box {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {

    .short-info-thumbnail {
        height:unset;
    }

    .short-info-archive {
        padding: 20px 0;
    }
    
    .sort-section {
        margin-bottom: 20px;
    }
    
    .sort-label {
        margin-bottom: 8px;
    }
    
    .sort-select-wrapper {
        width: 90px;
    }
    
    .sort-select {
        padding: 6px 10px;
        padding-right: 25px;
        font-size: 13px;
    }
    
    .sort-select-arrow {
        right: 10px;
    }
    
    .filter-toggle {
        display: flex;
    }
    
    .filter-section {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }
    

    .filter-section.active .filter-row {
        display: flex;
        flex-direction: column;
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .filter-label {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .filter-options {
        width: 100%;
    }
    
    .short-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 腱糸���篋�膾ф��膈丈�桁�篌��� */
    .filter-children {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
        min-width: 150px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .short-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .short-info-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .short-info-content {
        padding: 10px;
    }
    
    .short-info-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .short-info-tag {
        font-size: 10px;
        padding: 1px 5px;
    }
    
    .filter-option {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .pagination {
        padding: 0;
    }
    
    .page-numbers {
        min-width: 30px;
        height: 30px;
        margin: 0 2px 5px;
        font-size: 12px;
    }
    
    .search-field {
        padding: 6px 12px;
        padding-right: 35px;
        font-size: 13px;
    }
    
    .search-submit {
        width: 26px;
        height: 26px;
    }
    
    .icon-search {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 360px) {
    .short-info-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .short-info-item {
        margin-bottom: 15px;
    }
} </pre></body></html>