@media screen and (min-width: 0px) {
  html {
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  :root {
    --accent: #2563b0;
  }
  body {
    margin: 0;
    background: #f1f3f6;
    background: hsl(from var(--accent) h 22% 95.5%);
    color: #333;
    font-size: 14px;
  }
  a {
    color: var(--accent);
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  .button {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 250ms;
  }
  .button:hover {
    background: #eef1f5;
  }
  .button--primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
  }
  .button--primary:hover {
    background: var(--accent);
    filter: brightness(0.92);
  }
  .button--danger {
    border-color: #e4b8b8;
    color: #c33;
  }
  .button--danger:hover {
    background: #fbe4e4;
  }
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid #e2e6ec;
  }
  .site-header__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }
  .site-header__controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .site-header__simple-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
  }
  .site-header__user {
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef1f5;
    font-size: 12px;
    color: #667;
  }
  .site-header__logout {
    font-size: 12px;
    color: #667;
  }
  .site-header__logout:hover {
    color: var(--accent);
  }
  .login {
    max-width: 360px;
    margin: 12vh auto 0;
    padding: 0 20px;
  }
  .login__title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
  }
  .login__form {
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(20, 30, 60, 0.1);
  }
  .login__label {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
  }
  .login__label input {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 9px 10px;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    font-size: 14px;
  }
  .login__remember {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    user-select: none;
  }
  .login__submit {
    width: 100%;
  }
  .login__error {
    margin: 0 0 14px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #fbe4e4;
    color: #c33;
    font-size: 13px;
  }
  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 20px 0;
  }
  .category-tabs__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid #c8ced8;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 250ms, color 250ms;
  }
  .category-tabs__tab::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tab-color, #c8ced8);
  }
  .category-tabs__tab:hover {
    background: #eef1f5;
  }
  .category-tabs__tab.is-active {
    border-color: var(--tab-color, var(--accent));
    background: var(--tab-color, var(--accent));
    color: #fff;
  }
  .category-tabs__tab.is-active::before {
    background: #fff;
  }
  .feed-area {
    padding: 16px 20px 40px;
  }
  .feed-area__empty {
    margin: 40px 0;
    text-align: center;
    color: #889;
  }
  .feed-grid {
    position: relative;
  }
  .grid-sizer {
    width: 49%;
  }
  .gutter-sizer {
    width: 2%;
  }
  .feed-card {
    width: 49%;
  }
  .feed-card[data-span="2"], .feed-card[data-span="3"] {
    width: 100%;
  }
  .feed-card {
    margin-bottom: 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(20, 30, 60, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 50vh;
  }
  .feed-card__header {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid #eef1f5;
  }
  .feed-card__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
  }
  .feed-card__title a {
    color: #222;
  }
  .feed-card__body {
    flex: 1 1 auto;
    padding: 8px 14px;
    min-height: 24px;
    overflow-y: auto;
  }
  .feed-card__items {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .feed-card__item {
    padding: 5px 0;
    border-bottom: 1px dotted #e4e8ee;
    font-size: 13px;
    line-height: 1.5;
  }
  .feed-card__item:last-child {
    border-bottom: none;
  }
  .feed-card__item a:visited {
    color: #aaa;
  }
  .feed-card__date {
    margin-left: 4px;
    color: #99a;
    font-size: 11px;
    white-space: nowrap;
  }
  .feed-card__empty {
    margin: 8px 0;
    color: #99a;
    font-size: 12px;
  }
  .feed-card__empty--error {
    color: #c33;
  }
  .feed-card__footer {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-top: 1px solid #eef1f5;
    background: #fafbfc;
  }
  .feed-card__refresh, .feed-card__settings {
    padding: 4px 12px;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
  }
  .feed-card__refresh:hover, .feed-card__settings:hover {
    background: #eef1f5;
  }
  .feed-card__refresh:disabled, .feed-card__settings:disabled {
    opacity: 0.6;
    cursor: default;
  }
  .feed-card__fetched {
    margin-left: auto;
    color: #99a;
    font-size: 11px;
  }
  .modal {
    position: fixed;
    inset: 0;
    z-index: 130;
  }
  .modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 60, 0.45);
  }
  .modal__panel {
    position: relative;
    max-width: 480px;
    margin: 10vh auto 0;
    padding: 20px 24px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 30, 60, 0.25);
  }
  .modal__title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
  }
  .modal__note {
    margin: 0 0 12px;
    color: #667;
    font-size: 12px;
  }
  .modal__hint {
    display: block;
    margin-top: 4px;
    color: #889;
    font-size: 11px;
  }
  .modal__label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
  }
  .modal__label input,
  .modal__label select {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    font-size: 14px;
  }
  .modal__error {
    margin: 8px 0;
    color: #c33;
    font-size: 13px;
  }
  .modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
  }
  .modal__delete {
    margin-right: auto;
  }
  .category-list {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
  }
  .category-list__row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
  }
  .category-list__color {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    background: none;
    cursor: pointer;
  }
  .category-list__label {
    flex: 1;
    font-size: 13px;
    color: #555;
  }
  .category-list__name {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    font-size: 13px;
  }
  .category-add {
    display: flex;
    gap: 6px;
  }
  .category-add input {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #c8ced8;
    border-radius: 6px;
    font-size: 13px;
  }
  .reorder-hint {
    margin: 0;
    padding: 8px 20px;
    background: #fff7e0;
    border-bottom: 1px solid #f0e2b8;
    color: #8a6d3b;
    font-size: 13px;
  }
  body.reorder-mode .feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    height: auto !important;
  }
  body.reorder-mode .grid-sizer,
  body.reorder-mode .gutter-sizer {
    display: none;
  }
  body.reorder-mode .feed-grid .feed-card {
    width: auto;
    margin-bottom: 0;
    max-height: 220px;
    cursor: move;
  }
  body.reorder-mode .feed-card__header {
    cursor: move;
  }
  body.reorder-mode .feed-card a {
    pointer-events: none;
  }
  body.reorder-mode .feed-card__footer {
    display: none;
  }
  .feed-card--ghost {
    opacity: 0.4;
    outline: 2px dashed var(--accent);
  }
  body.display-simple {
    background: #fff;
  }
  body.display-simple .site-header {
    border-bottom: 1px solid #ccc;
  }
  body.display-simple .category-tabs__tab {
    border-radius: 0;
  }
  body.display-simple .feed-card {
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 8px;
  }
  body.display-simple .feed-card__header, body.display-simple .feed-card__footer {
    padding: 6px 10px;
    background: none;
  }
  body.display-simple .feed-card__body {
    padding: 4px 10px;
  }
  body.display-simple .feed-card__item {
    padding: 3px 0;
    border-bottom: none;
    font-size: 12px;
  }
  body.display-simple .feed-card__item a {
    text-decoration: underline;
  }
  div,
  span,
  li,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  a,
  b,
  strong {
    font-family: YakuHanJP, "Manrope", "Kosugi", sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  div,
  span,
  li,
  p,
  b,
  strong {
    color: #333;
    line-height: 1.6;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    color: #333;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 10px 12px;
  }
  .category-tabs {
    padding: 10px 12px 0;
  }
  .feed-area {
    padding: 12px 12px 30px;
  }
  .feed-card__title {
    font-size: 13px;
  }
  .modal__panel {
    margin: 5vh 12px 0;
  }
  window,
  body {
    font-size: 14px;
  }
  body.aft26 .page-title {
    font-family: YakuHanJP, "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.4rem;
  }
  body.aft26 .sec-title {
    font-family: YakuHanJP, "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }
  body.aft26 .sec-subheading {
    font-family: YakuHanJP, "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    color: #555;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .grid-sizer,
  .feed-card {
    width: 32%;
  }
  .feed-card[data-span="2"] {
    width: 66%;
  }
  .feed-card[data-span="3"] {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1535px) {
  .grid-sizer,
  .feed-card {
    width: 23.5%;
  }
  .feed-card[data-span="2"] {
    width: 49%;
  }
  .feed-card[data-span="3"] {
    width: 74.5%;
  }
}
@media screen and (min-width: 1536px) and (max-width: 1791px) {
  .grid-sizer,
  .feed-card {
    width: 18.4%;
  }
  .feed-card[data-span="2"] {
    width: 38.8%;
  }
  .feed-card[data-span="3"] {
    width: 59.2%;
  }
}
@media screen and (min-width: 1792px) {
  .grid-sizer,
  .feed-card {
    width: 15%;
  }
  .feed-card[data-span="2"] {
    width: 32%;
  }
  .feed-card[data-span="3"] {
    width: 49%;
  }
}

/*# sourceMappingURL=style.css.map */
