/* === Theatre Power — 記事一覧ページ固有スタイル (articles.css) === */
/* 更新: 2026-03-23 */


/* ----------------------------------------
   1. ページ見出し
   ---------------------------------------- */
.concept-title {
    /* base style is in common.css; this page uses tight spacing */
    margin-bottom: 10px;
}


/* ----------------------------------------
   2. 検索コンポーネント
   ---------------------------------------- */
.search-container {
    margin-bottom: 40px;
    text-align: center;
}

.search-input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

#js-search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    font-size: 1rem;
    border: 2px solid #eee;
    border-radius: 30px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: block;
}

#js-search-input:focus {
    border-color: #BC221C;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.2rem;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.quick-tags {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

.q-tag {
    cursor: pointer;
    text-decoration: underline;
    margin: 0 6px;
    transition: color 0.2s;
    display: inline-block;
}

.q-tag:hover {
    color: #BC221C;
}


/* ----------------------------------------
   3. 記事グリッド（余白調整）
   ---------------------------------------- */
.articles-main {
    padding-bottom: 80px;
}

