/* ==========================
   全体ベース（共通）
========================== */
* {
    box-sizing: border-box;
}

body {
    background: #f6f6f6;
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    margin: 0;
}

html {
    overflow-y: scroll;
}

a {
    color: #ff2f93;
    text-decoration: none;
}

@media (min-width: 1024px) {
    body {
        max-width: 1520px;
        margin: 0 auto;
    }
}

.siteTitle {
    background-color: #ffd6e8;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.2) 0,
            rgba(255,255,255,0.2) 10px,
            transparent 10px,
            transparent 20px
        );
}

.siteTitle__logo {
    background-image: url("/img/titlelogo.png");
    height: 50px;
    width: min(190px, 48vw);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    margin: 0;
    display: block;
}

.siteTitle--withAuth {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 74px;
    padding: 8px 14px;
}

.siteTitle__search {
    flex: 1;
    min-width: 180px;
    width: auto;
    margin: 0;
}

@media (max-width: 767px) {
    .siteTitle__logo {
        height: 42px;
        width: min(170px, 48vw);
    }
}

@media (min-width: 768px) {
    .siteTitle--withAuth {
        min-height: 60px;
        padding: 8px 10px;
    }
}

.video-thumb-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.video-thumb-wrap .title {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    color: black;
    position: absolute;
    left: 5px;
    right: 5px;
    z-index: 10;
    background-color: rgba(255, 182, 193, 0.7);
    padding: 5px;
    border-radius: 5px;
}

.video-info .play-count,
.play-count {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-info .user-icon,
.user-icon {
    margin-left: 8px;
    display: inline-block;
    order: 1;
}

.video-info .user-icon img,
.user-icon img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff5fa2;
}

.video-info .play-count::before,
.play-count::before {
    font-size: 12px;
    color: #888;
    order: 2;
}

.play-count span {
    order: 3;
}

.play-count .posted-at {
    margin-left: 6px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #fff;
    z-index: 5;
}

/* ==========================
   768px以上のサムネ描画（共通）
========================== */
@media (min-width: 768px) {
    .video-thumb-wrap {
        max-height: 370px;
    }

    .video-thumb {
        position: relative;
        width: 100%;
        aspect-ratio: 9 / 16;
        background-size: cover;
        background-position: center;
        cursor: pointer;
        overflow: hidden;
        border-radius: 12px;
    }

    .video-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0) 60%,
            rgba(0,0,0,0.35)
        );
    }

    .play-btn {
        font-size: 24px;
        background: rgba(0, 0, 0, 0.6);
        padding: 6px 10px;
        transition: transform 0.15s ease, background 0.15s ease;
    }

    .video-thumb:hover .play-btn {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(0, 0, 0, 0.75);
    }

    .video-thumb-wrap .title {
        font-size: 15px;
        top: 72%;
    }
}

/* ==========================
   video-grid（指定通り）
   スマホ縦: 2
   スマホ横: 3
   タブレット: 4
   小さめPC: 5
   PC以上: 5
========================== */

/* スマホ（縦） */
@media (max-width: 599px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
        padding: 10px;
    }
}

/* スマホ（横） */
@media (min-width: 600px) and (max-width: 767px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 10px;
    }
}

/* タブレット：4列 */
@media (min-width: 768px) and (max-width: 1023px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        justify-content: center;
        padding: 10px;
    }

    .video-info {
        padding: 10px 12px;
        border-top: 1px solid #eee;
        font-size: 13px;
        line-height: 1.5;
    }

    .video-info .tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .video-info .tag-link {
        display: inline-block;
        background-color: #e0e0e0;
        color: #333;
        padding: 3px 8px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 12px;
        transition: background-color 0.2s ease;
    }

    .video-info .tag-link:hover {
        background-color: #cfcfcf;
    }

    .video-info .tag-list span {
        font-size: 12px;
        color: #999;
    }
}

/* 小さめPC / ノート：5列 */
@media (min-width: 1024px) and (max-width: 1549px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        justify-content: center;
        padding: 10px;
    }
}

/* PC（標準）〜大画面：5列 */
@media (min-width: 1550px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(6, 240px);
        gap: 14px;
        justify-content: center;
    }
}

/* ==========================
   1024px以上のカード/オーバーレイ等
========================== */
@media (min-width: 1024px) {
    .video-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        border: 1px solid #f0f0f0;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
    }

    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.14);
        border-color: #ff69b4;
    }

    .video-item {
        position: relative;
    }

    .thumb-label {
        position: absolute;
        bottom: 6px;
        left: 6px;
        right: 6px;
        background: rgba(0,0,0,0.6);
        color: #fff;
        font-size: 13px;
        padding: 4px 6px;
        border-radius: 6px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        z-index: 6;
    }

    .video-info {
        padding: 10px 12px;
        border-top: 1px solid #eee;
        font-size: 13px;
        line-height: 1.5;
    }

    .video-info .tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    .video-info .tag-link {
        display: inline-block;
        background-color: #dcdcdc;
        color: #333;
        padding: 2px 6px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 12px;
        transition: background-color 0.2s;
    }

    .video-info .tag-link:hover {
        background-color: #c0c0c0;
    }

    .video-info .tag-list span {
        font-size: 12px;
        color: #999;
    }

    #videoOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.75);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.25s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    #videoContainer {
        position: relative;
        width: 90vw;
        max-width: 480px;
        max-height: calc(100dvh - 24px);
        aspect-ratio: 9 / 16;
        background: #000;
        border-radius: 14px;
        overflow: hidden;
        animation: popupIn 0.25s ease;
    }

    @keyframes popupIn {
        from { transform: scale(0.85); opacity: 0; }
        to   { transform: scale(1); opacity: 1; }
    }

    #videoPlayerArea {
        position: relative;
        width: 100%;
        height: 100%;
    }

    #videoPlayerArea video {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        background: #000;
        object-fit: cover;
        object-position: center;
    }

    #closeBtn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 26px;
        padding: 6px 12px;
        background: rgba(0,0,0,0.6);
        color: #fff;
        border-radius: 8px;
        cursor: pointer;
        z-index: 10;
    }
}

@media (min-width: 768px) and (max-height: 900px) {
    #videoContainer {
        width: calc((100dvh - 24px) * 9 / 16);
        max-width: calc((100dvh - 24px) * 9 / 16);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #videoOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.75);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    #closeBtn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 26px;
        padding: 6px 12px;
        background: rgba(0,0,0,0.6);
        color: #fff;
        border-radius: 8px;
        cursor: pointer;
        z-index: 10;
    }
}

/* ==========================
   767px以下（スマホ共通の見た目）
   ※ grid列だけは上で max599 / 600-767 に分岐済み
========================== */
@media (max-width: 767px) {
    .video-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .video-thumb-wrap {
        height: 200px;
        max-height: 200px;
    }

    .video-thumb {
        width: 100%;
        aspect-ratio: 9 / 16;
        cursor: pointer;
        border-radius: 10px;
        background-size: cover;
        background-position: center;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .play-btn {
        font-size: 17px;
        color: white;
        background: rgba(0,0,0,0.5);
        padding: 8px 10px;
        cursor: pointer;
    }

    .video-thumb-wrap .title {
        font-size: 14px;
        top: 65%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .video-info {
        border-radius: 12px;
    }

    .video-info .tag-list {
        display: none;
        flex-wrap: wrap;
        gap: 6px;
    }

    .video-info .tag-link {
        background: linear-gradient(135deg, #f1f1f1, #e2e2e2);
        color: #333;
        padding: 4px 10px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .video-info .tag-link:hover {
        background: #d0d0d0;
        transform: translateY(-1px);
    }

    .video-info .tag-list span {
        font-size: 13px;
        color: #aaa;
    }

    #videoOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(2px);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    #videoContainer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        border-radius: 0;
        overflow: hidden;
        background: #000;
    }

    #videoPlayerArea {
        width: 100%;
        height: 100%;
    }

    #videoPlayerArea video {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        background: #000;
        object-fit: cover;
        object-position: center;
    }

    .popup-seek-controls {
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
        z-index: 40;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        margin: 0 12px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: #0b0b10;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
        pointer-events: auto;
    }

    .popup-seek-controls[hidden] {
        display: none !important;
    }

    .popup-seek-controls__time {
        min-width: 38px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 11px;
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

    .popup-seek-controls__time--current {
        text-align: left;
    }

    .popup-seek-controls__time--duration {
        text-align: right;
    }

    .popup-seek-controls__range {
        --seek-progress: 0%;
        flex: 1;
        height: 24px;
        margin: 0;
        appearance: none;
        -webkit-appearance: none;
        background: transparent;
        cursor: pointer;
        touch-action: pan-y;
    }

    .popup-seek-controls__range:disabled {
        cursor: default;
        opacity: 0.45;
    }

    .popup-seek-controls__range::-webkit-slider-runnable-track {
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #ff5fa2 0 var(--seek-progress), rgba(255,255,255,0.24) var(--seek-progress) 100%);
    }

    .popup-seek-controls__range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        margin-top: -6px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.32);
    }

    .popup-seek-controls__range::-moz-range-track {
        height: 4px;
        border: 0;
        border-radius: 999px;
        background: rgba(255,255,255,0.24);
    }

    .popup-seek-controls__range::-moz-range-progress {
        height: 4px;
        border-radius: 999px;
        background: #ff5fa2;
    }

    .popup-seek-controls__range::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.32);
    }
    
    #closeBtn {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 9999;
        font-size: 20px;
        padding: 12px 14px;
        background: rgba(0,0,0,0.6);
        border-radius: 10px;
        cursor: pointer;
        line-height: 1;
        color: white;
    }
}

.global-nav {
    background: #ffb6c1;
    border-bottom: 1px solid #ffd6e7;
    box-shadow: 0 2px 6px rgba(255, 95, 162, 0.08);
}

@media (min-width: 768px) {
    .global-nav__list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        padding: 6px 16px;
        margin: 0;
        list-style: none;
        flex-wrap: wrap;
        overflow: visible;
    }

    .global-nav__list li a {
        position: relative;
        display: inline-block;
        padding: 5px 14px;
        background: #ffffff;
        border-radius: 999px;
        color: #d94c8b;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 1px 4px rgba(255, 95, 162, 0.18);
        transition:
            transform 0.15s ease,
            box-shadow 0.15s ease,
            background 0.15s ease;
        line-height: 1.4;
    }

    .global-nav__list li a:hover {
        background: #ffe3f0;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(255, 95, 162, 0.22);
    }

    .global-nav__list li a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 3px;
        width: 50%;
        height: 2px;
        background: linear-gradient(90deg, #ff9ac6, #ff5fa2);
        transform: translateX(-50%) scaleX(0);
        transition: transform 0.2s ease;
        border-radius: 2px;
    }

    .global-nav__list li a:hover::after {
        transform: translateX(-50%) scaleX(1);
    }
}

@media (max-width: 767px) {
    .global-nav {
        padding: 1px 0;
    }

    .global-nav__list {
        display: flex;
        gap: 8px;
        padding: 4px 10px;
        margin: 0;
        list-style: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .global-nav__list::-webkit-scrollbar {
        display: none;
    }

    .global-nav__list li {
        flex: 0 0 auto;
    }

    .global-nav__list li a {
        position: relative;
        display: inline-block;
        padding: 4px 12px;
        background: #ffffff;
        border-radius: 999px;
        color: #d94c8b;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 1px 4px rgba(255, 95, 162, 0.16);
        transition:
            transform 0.15s ease,
            box-shadow 0.15s ease,
            background 0.15s ease;
    }

    .global-nav__list li a:hover,
    .global-nav__list li a:active {
        background: #ffe3f0;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(255, 95, 162, 0.22);
    }

    .global-nav__list li a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 3px;
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, #ff9ac6, #ff5fa2);
        transform: translateX(-50%) scaleX(0);
        transition: transform 0.2s ease;
        border-radius: 2px;
    }

    .global-nav__list li a:hover::after,
    .global-nav__list li a:active::after {
        transform: translateX(-50%) scaleX(1);
    }
}

:root{
  --blue: #2563eb;
  --border: #e5e7eb;
  --border-focus: rgba(37,99,235,.75);
  --highlight: rgba(37,99,235,.18);
  --text: #0f172a;
  --muted: #94a3b8;
  --auth-bg: rgba(255, 255, 255, 0.7);
  --auth-border: #f2c2d8;
  --auth-link-color: #d94c8b;
  --auth-link-border: #ff66b2;
  --auth-link-bg: transparent;
  --auth-dropdown-bg: rgba(255, 255, 255, 0.9);
  --auth-dropdown-link-color: #333;
  --auth-dropdown-link-border: #f2c2d8;
}

/* 検索フォーム本体 */
.site-search{
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  padding: 8px 12px;

  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  margin-inline: auto; /
  transition: border-color .15s ease, box-shadow .15s ease;
}

@media (min-width: 768px){
  .site-search:not(.siteTitle__search){
    margin-top: 16px; /* ← PC時だけ上に余白 */
  }
}

.site-search:focus-within{
  border-color: var(--border-focus);
  box-shadow:
    0 10px 28px rgba(37,99,235,.14),
    0 0 0 4px var(--highlight);
}

/* 入力欄 */
.site-search__input{
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;

  font-size: 15px;
  padding: 6px 4px; /* 縦を少し細め */
  color: var(--text);
}

.site-search__input::placeholder{
  color: var(--muted);
}

/* ボタン：背景なしで“アイコンだけ” */
.site-search__btn{
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border: 0;
  background: transparent;
  cursor: pointer;

  color: #ff2f93;

  transition: transform .15s ease, opacity .15s ease;
}

.site-search__btn:hover{
  opacity: .85;
  transform: translateY(-1px) scale(1.02);
}

.site-search__btn:active{
  transform: translateY(0) scale(1.0);
}

/* 虫眼鏡サイズ（少し大きめ） */
.site-search__icon{
  width: 22px;
  height: 22px;
}

/* スマホ微調整 */
@media (max-width: 480px){
  .site-search{
    padding: 6px 10px;
    border-radius: 12px;
  }
  .site-search__input{
    font-size: 14px;
  }
  .site-search__btn{
    width: 34px;
    height: 34px;
  }
  .site-search__icon{
    width: 21px;
    height: 21px;
  }
}

/* タブレット以上 */
@media (min-width: 768px){
  .site-search{
    width: min(820px, 100%);
    padding: 10px 14px;
    border-radius: 16px;
  }
  .site-search__input{
    font-size: 16px;
    padding: 8px 10px;
  }
  .site-search__btn{
    width: 42px;
    height: 42px;
  }
  .site-search__icon{
    width: 24px;
    height: 24px;
  }
}

.single_content-header-title {
    margin-top: 15px;
    padding: 15px 5px 15px 10px;
    font-family: "Helvetica Neue", sans-serif;
    position: relative;
    font-weight: 700;
    color: #000;
    background-color: #ffe4e1;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .single_content-header-title {
        font-size: 26px;
        line-height: 35px;
    }
}

@media (max-width: 767px) {
    .single_content-header-title {
        font-size: 20px;
        line-height: 25px;
    }
}

.siteTitle__auth {
    position: static;
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--auth-bg);
    padding: 6px 10px;
    font-size: 14px;
}

.siteTitle__quickAction,
.siteTitle__authLink,
.siteTitle__quickIcon {
    text-decoration: none;
    border-radius: 999px;
    color: var(--auth-link-color);
    border: 1px solid var(--auth-link-border);
    background: var(--auth-link-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.siteTitle__quickAction,
.siteTitle__authLink {
    padding: 6px 12px;
}

.siteTitle__quickAction {
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(255, 105, 180, 0.16);
}

.siteTitle__quickAction svg,
.siteTitle__authLink svg,
.siteTitle__quickIcon svg {
    width: 25px;
    height: 25px;
    opacity: 0.9;
}

@media (max-width: 767px) {
	.siteTitle__quickAction svg,
	.siteTitle__authLink svg,
	.siteTitle__quickIcon svg {
    	width: 16px;
    	height: 16px;
	}
}

.siteTitle__quickAction:hover,
.siteTitle__authLink:hover,
.siteTitle__quickIcon:hover,
.siteTitle__quickAction:focus-visible,
.siteTitle__authLink:focus-visible,
.siteTitle__quickIcon:focus-visible,
.siteTitle__authIconToggle:hover,
.siteTitle__authIconToggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 105, 180, 0.22);
}

.siteTitle__quickIcon {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.siteTitle__quickIcon--link {
    cursor: pointer;
}

.siteTitle__noticeWrap,
.siteTitle__authIconWrap {
    position: relative;
    display: flex;
    align-items: center;
}

.siteTitle__noticeBadge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #4a49ff;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 6px;
    z-index: 4;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 6px 14px rgba(74, 73, 255, 0.28);
}

@media (max-width: 767px) {
    .siteTitle__noticeBadge {
        top: -4px;
        right: -4px;
        min-width: 20px;
        height: 20px;
        font-size: 10px;
        line-height: 16px;
        padding: 0 5px;
    }
}

.siteTitle__noticePanel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    max-width: min(92vw, 320px);
    background: #fff;
    border: 1px solid var(--auth-border);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 10px;
    z-index: 21;
}

.siteTitle__noticePanel h3 {
    margin: 0 0 8px;
    font-size: 14px;
}

.siteTitle__noticeList {
    max-height: 280px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.siteTitle__noticeItem {
    display: block;
    color: #222;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
}

.siteTitle__noticeItem.is-unread {
    border-color: #ff89bd;
    background: #fff4f9;
}

.siteTitle__noticeMsg {
    display: block;
    font-size: 13px;
}

.siteTitle__noticeMsg a,
.notice-link {
    color: #ff4db8;
    overflow-wrap: anywhere;
    word-break: break-all;
}

.siteTitle__noticeMeta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.siteTitle__noticeTime {
    display: block;
    color: #666;
    font-size: 11px;
}

.siteTitle__noticeDetailLink {
    color: #ff4db8;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.siteTitle__noticeEmpty {
    margin: 8px 0;
    color: #777;
    font-size: 13px;
}

.siteTitle__noticePanelLink {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0d7e5;
    color: #ff4db8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.siteTitle__authIconToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.siteTitle__authIcon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.siteTitle__authDropdown {
    display: none;
    position: absolute;
    top: 0;
    right: calc(100% + 8px);
    left: auto;
    background: var(--auth-dropdown-bg);
    border: 1px solid var(--auth-border);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(10, 14, 34, 0.28);
    backdrop-filter: blur(8px);
    padding: 12px;
    font-size: 14px;
    width: 260px;
    text-align: left;
    transform: none;
    z-index: 20;
}

.siteTitle__authDropdownSection {
    padding: 2px 0 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.siteTitle__authDropdownSection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.siteTitle__authDropdownHeading {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #c8ceff;
}

.siteTitle__authDropdownItem {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--auth-dropdown-link-color);
    padding: 8px 10px;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.siteTitle__authDropdownItem:hover,
.siteTitle__authDropdownItem:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.siteTitle__authDropdownIcon {
    width: 20px;
    text-align: center;
    flex: 0 0 20px;
    font-size: 15px;
}

.siteTitle__authDropdownNoticeLink {
    justify-content: flex-start;
}

.siteTitle__authDropdownNoticeBadge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #5a65ff;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 6px;
    text-align: center;
}

.siteTitle__authDropdownItem--logout {
    color: #ffd4e6;
}

.siteTitle__noticeBadge[hidden],
.siteTitle__authDropdownNoticeBadge[hidden] {
    display: none !important;
}

.siteTweetModalBackdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(17, 24, 39, 0.55);
}

.siteTweetModalBackdrop[hidden] {
    display: none;
}

.siteTweetModal {
    width: min(680px, 100%);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.siteTweetModal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
}

.siteTweetModal__close {
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: #111827;
    cursor: pointer;
}

.siteTweetModal__title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

.siteTweetModal__form {
    padding: 16px 18px 20px;
}

.siteTweetModal__label {
    display: inline-block;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
}

.siteTweetModal__textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #e5cad8;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
}

.siteTweetModal__submitWrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.siteTweetModal__submit {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    background: #1d9bf0;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.siteTweetModal__toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.siteTweetModal__toolbarNote {
    margin: -4px 0 10px;
    color: #6b7280;
    font-size: 12px;
}

.siteTweetModal__toolbarBtn {
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 600;
    color: #374151;
}

.siteTweetModal__panel {
    border: 1px solid #f3f4f6;
    background: #f9fafb;
    border-radius: 10px;
    padding: 10px;
}

.siteTweetModal__panel[hidden] {
    display: none;
}

.siteTweetModal__emojiPicker {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.siteTweetModal__emojiBtn {
    border: 1px solid #e5cad8;
    background: #fff;
    border-radius: 8px;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 18px;
}

.siteTweetModal__videoPicker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    max-height: 360px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
}

.siteTweetModal__videoOption {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.siteTweetModal__videoOption input {
    margin-right: 4px;
}

.siteTweetModal__videoOption span {
    color: #111827;
}

.siteTweetModal__videoThumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    background: #e5e7eb;
}

.siteTweetModal__videoMore {
    margin-top: 8px;
    text-align: center;
}

.siteTweetModal__videoMore button {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    padding: 6px 14px;
    cursor: pointer;
}

.siteTweetModal__selectedVideo {
    position: relative;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 8px 34px 8px 8px;
}

.siteTweetModal__selectedVideo[hidden] {
    display: none;
}

.siteTweetModal__selectedVideo img {
    width: 72px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #e5e7eb;
}

.siteTweetModal__selectedVideo p {
    margin: 0;
    color: #374151;
    font-size: 13px;
}

.siteTweetModal__selectedVideoClear {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 999px;
    background: #e5e7eb;
    color: #111827;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

/* auth周りは従来通り 767px以下で縮小 */
@media (max-width: 767px) {
  .siteTitle__auth {
    font-size: 13px;
    padding: 5px 8px;
    gap: 8px;
  }

  .siteTitle__quickAction,
  .siteTitle__authLink {
    padding: 6px 10px;
  }

  .siteTitle__quickIcon,
  .siteTitle__authIconToggle {
    width: 35px;
    height: 35px;
  }

  .siteTitle__authIcon {
    width: 35px;
    height: 35px;
  }

  .siteTitle__noticePanel {
    right: 0;
    left: auto;
    width: min(88vw, 320px);
    max-width: calc(100vw - 16px);
  }

  .siteTitle__noticeMeta {
    align-items: flex-start;
  }

  .siteTitle__authDropdown {
    top: 0;
    right: calc(100% + 6px);
    left: auto;
    width: min(88vw, 260px);
  }

  .siteTweetModalBackdrop {
    padding: 10px;
  }

  .siteTweetModal__title {
    font-size: 24px;
  }

  .siteTweetModal__videoPicker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-more {
    display: flex;
    justify-content: center;
    margin: 20px 0 36px;
}

.video-more-button {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 10px 24px;
    width:98%;
    background: #ff69b4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(255, 105, 180, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.video-more-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(255, 105, 180, 0.35);
}

.video-more-button:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .video-more {
        margin: 16px 0 28px;
    }

    .video-more-button {
        padding: 10px 22px;
        font-size: 14px;
    }

    .video-more-button:hover {
        transform: none;
        box-shadow: 0 6px 14px rgba(255, 105, 180, 0.25);
    }

    .video-more-button:active {
        transform: scale(0.98);
    }
}

.tag-wrap{
  padding:7px;
}

.tag-wrap--top {
  background: #454545;
  padding: 14px;
  border-radius: 10px;
  overflow-x: auto;
}

.content-inner-pad {
  padding: 7px;
}

.tag-toolbar{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin:8px 0 12px;
}

.tag-toolbar a{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #ffd1e3;
  text-decoration:none;
  font-size:14px;
}
.tag-toolbar a.active{
  background:#ff66b2;
  border-color:#ff66b2;
  color:#fff;
}

.tag-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.tag-grid--top-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.tag-btn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 7px;
  border-radius:14px;
  background:#fff;
  border:1px solid #ffe0ee;
  text-decoration:none;
  color:#333;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
  min-width:0;
}

.tag-btn--top-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: none;
  flex: 0 0 auto;
  min-width: max-content;
}

.tag-btn--top-chip .tag-name {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}

.tag-btn--top-chip:hover {
  opacity: 0.9;
}

.tag-btn--top-chip .tag-cnt {
  display: none;
}

.tag-name{
  font-size:14px;
  font-weight:600;
  min-width:0;
  flex:1 1 auto;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tag-cnt{
  font-size:12px;
  color:#ff2f93;
  background:#ffe9f2;
  border:1px solid rgba(255,102,178,.25);
  padding:3px 10px;
  border-radius:999px;
  flex:0 0 auto;
}

@media (max-width: 768px){
  .tag-grid{ grid-template-columns: repeat(2, 1fr); }
  .tag-name{ font-size:15px; }

  .tag-wrap--top {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .tag-grid--top-chips {
    gap: 10px;
  }

  .tag-btn--top-chip {
    padding: 9px 14px;
  }

  .tag-btn--top-chip .tag-name {
    font-size: 14px;
  }
}

#videoMeta {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 12px;
    background: rgba(0, 0, 0, 0.64);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease;
}

#videoMeta.is-visible {
    opacity: 1;
    pointer-events: auto;
}

#videoMetaSheet {
    width: min(100%, 420px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(18, 19, 28, 0.96);
    color: #fff;
    padding: 14px 12px 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

#videoMeta a,
#videoMeta button {
    pointer-events: auto;
    cursor: pointer;
}

#videoMeta:not(.is-visible) a,
#videoMeta:not(.is-visible) button {
    pointer-events: none;
}

#videoMetaCloseBtn {
    margin-left: auto;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    display: block;
}

#videoMetaHeader {
    display: flex;
    align-items: center;
    gap: 10px;
}

#videoMetaTitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

#videoMetaDescription {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #f0f0f0;
    white-space: pre-wrap;
    word-break: break-word;
}

#videoMetaUserIcon img {
    border-radius: 50%;
    object-fit: cover;
}

.popup-play-overlay {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    cursor: pointer;
}

.popup-play-overlay.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.popup-swipe-guide {
    position: absolute;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 104px);
    transform: translateX(-50%);
    z-index: 42;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(21, 24, 34, 0.78) 0%, rgba(10, 11, 18, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(6px);
    pointer-events: none;
    animation: popupSwipeGuideFadeIn 220ms ease-out;
}

.popup-swipe-guide.is-exit {
    animation: popupSwipeGuideFadeOut 220ms ease-in forwards;
}

.popup-swipe-guide__gesture {
    position: relative;
    width: 28px;
    height: 86px;
}

.popup-swipe-guide__track {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 100%;
    border-radius: 99px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.popup-swipe-guide__dot {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30% 30%, #fff 0%, #d9deff 48%, #9cb2ff 100%);
    box-shadow: 0 0 0 2px rgba(156, 178, 255, 0.2), 0 4px 12px rgba(94, 118, 223, 0.45);
    animation: popupSwipeGuideDotMove 1200ms cubic-bezier(0.36, 0.11, 0.26, 1) infinite;
}

.popup-swipe-guide__chevrons {
    position: absolute;
    left: 50%;
    bottom: -1px;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    transform: translateX(-50%);
}

.popup-swipe-guide__chevrons > span {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.72);
    border-bottom: 2px solid rgba(255, 255, 255, 0.72);
    transform: rotate(45deg);
    animation: popupSwipeGuideChevronPulse 1200ms ease-in-out infinite;
}

.popup-swipe-guide__chevrons > span:nth-child(2) {
    animation-delay: 90ms;
}

.popup-swipe-guide__chevrons > span:nth-child(3) {
    animation-delay: 180ms;
}

.popup-swipe-guide__text {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@keyframes popupSwipeGuideFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 8px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes popupSwipeGuideFadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    to {
        opacity: 0;
        transform: translate(-50%, 8px);
    }
}

@keyframes popupSwipeGuideDotMove {
    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.92;
    }
    50% {
        transform: translate(-50%, 58px);
        opacity: 1;
    }
}

@keyframes popupSwipeGuideChevronPulse {
    0%,
    100% {
        opacity: 0.35;
    }
    45% {
        opacity: 1;
    }
}

#videoShareActions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.share-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    padding: 7px 14px;
    color: #fff;
    background: rgba(32, 33, 53, 0.7);
    backdrop-filter: blur(4px);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.share-btn:hover {
    transform: translateY(-1px);
    background: rgba(50, 52, 82, 0.82);
}

.share-btn-x,
.share-btn-line,
.share-btn-copy {
    background: rgba(32, 33, 53, 0.7);
}

.embed-code-modal {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.65);
}

.embed-code-modal.is-open {
    display: flex;
}

.embed-code-modal__dialog {
    width: min(100%, 560px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #151727;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    padding: 12px;
}

.embed-code-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.embed-code-modal__close {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
}

.embed-code-modal__textarea {
    width: 100%;
    min-height: 140px;
    resize: vertical;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px;
    box-sizing: border-box;
}

.embed-code-modal__actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

#videoReactionArea {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(20px, 3vh, 20px));
    z-index: 35;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-right: calc(env(safe-area-inset-right, 0px) + 3px);
    box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1024px) {
    /*
     * 中間サイズ（タブレット含む）は、スマホの全画面ではなく
     * PC寄りのポップアップ表示に寄せて見切れを抑える。
     */
    #videoOverlay {
        background: rgba(0,0,0,0.75);
        justify-content: center;
        align-items: center;
    }

    #videoContainer {
        position: relative;
        top: auto;
        left: auto;
        width: min(82vw, 480px);
        max-width: 480px;
        height: auto;
        max-height: calc(100dvh - 24px);
        aspect-ratio: 9 / 16;
        border-radius: 14px;
    }
}

@media (min-width: 1025px) {
    #videoReactionArea {
        bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(52px, 8vh, 76px));
    }
}

#videoContainer.seek-controls-active #videoReactionArea {
    pointer-events: none;
}

.video-reaction-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.video-like-btn,
.video-comment-toggle-btn,
.video-watch-later-btn{
    position: relative;
    width: 52px;
    height: 52px;
    border: none;
    color: transparent;
    border-radius: 12px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}

.video-meta-toggle-btn {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    border: none;
    color: transparent;
    border-radius: 12px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}

.video-like-btn::before,
.video-comment-toggle-btn::before,
.video-watch-later-btn::before,
.video-meta-toggle-btn::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.65);
}

.video-like-btn::before {
    content: '💗';
    top: 33%;
    font-size: 25px;
    text-shadow: 0 8px 18px rgba(255, 79, 154, 0.42), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.video-like-btn.is-liked::before {
    content: '💖';
    font-size: 26px;
}

.video-comment-toggle-btn::before {
    content: '💬';
    top: 34%;
    font-size: 22px;
}

.video-meta-toggle-btn::before {
    content: 'i';
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background:
        radial-gradient(circle at 6px 6px, #0a4faa 0 2.5px, transparent 3px),
        radial-gradient(circle at 6px 12px, #0a4faa 0 2.5px, transparent 3px),
        radial-gradient(circle at 6px 18px, #0a4faa 0 2.5px, transparent 3px),
        linear-gradient(#0a4faa 0 0) 8px 3.5px / 12px 3.5px no-repeat,
        linear-gradient(#0a4faa 0 0) 8px 9.5px / 12px 3.5px no-repeat,
        linear-gradient(#0a4faa 0 0) 8px 15.5px / 12px 3.5px no-repeat,
        #8bc4f2;

    /* 枠線を消す */
    border: none;

    /* 影も弱め（または消してOK） */
    box-shadow: 0 1px 3px rgba(10, 79, 170, 0.25);

    background-repeat: no-repeat;
    color: #0a4faa;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    line-height: 24px;
}

.video-watch-later-btn::before {
    content: '';
    top: 33%;
    width: 21px;
    height: 26px;
    border-radius: 4px 4px 3px 3px;
    background: rgba(255, 255, 255, 0.96);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.video-like-btn::after,
.video-comment-toggle-btn::after,
.video-watch-later-btn::after {
    position: absolute;
    left: 50%;
    top: 73%;
    transform: translate(-50%, -50%);
    content: attr(data-count);
    min-width: 2ch;
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.75);
}

.video-like-btn:hover,
.video-comment-toggle-btn:hover,
.video-watch-later-btn:hover,
.video-meta-toggle-btn:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1);
}

.video-like-btn.is-liked {
    filter: drop-shadow(0 6px 14px rgba(255, 85, 150, 0.55));
}

.video-like-btn {
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.video-comment-toggle-btn.is-open {
    filter: drop-shadow(0 4px 10px rgba(96, 162, 255, 0.5));
}

.video-watch-later-btn.is-saved {
    filter: drop-shadow(0 5px 12px rgba(255, 255, 255, 0.55));
}

.video-watch-later-btn.is-saved::before {
    background: linear-gradient(180deg, #ffd86d 0%, #ffb347 100%);
    box-shadow: 0 10px 18px rgba(255, 179, 71, 0.55), inset 0 0 0 1px rgba(255, 244, 210, 0.72);
}

.video-watch-later-btn.is-saved::after {
    color: #ffe9bf;
    text-shadow: 0 4px 10px rgba(96, 48, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.55);
}

.video-meta-toggle-btn.is-open {
    filter: drop-shadow(0 4px 10px rgba(138, 226, 255, 0.45));
}

.video-reaction-login-notice {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
}

.video-comment-panel {
    position: fixed;
    left: 50%;
    right: auto;
    top: 25%;
    bottom: 0;
    margin-top: 0;
    bottom: 0;
    margin-top: 0;
    width: min(100vw, 480px);
    max-height: none;
    overflow: auto;
    padding: 46px 14px calc(env(safe-area-inset-bottom, 0px) + 14px);
    border-radius: 16px 16px 0 0;
    background: #131727;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.48);
    transform: translate(-50%, 100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease;
}

.video-comment-panel.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 767px) {
    .video-comment-panel {
        left: 0;
        right: 0;
        top: 28%;
        width: 100vw;
        transform: translateY(100%);
    }

    .video-comment-panel.is-open {
        transform: translateY(0);
    }
}

.video-comment-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.video-comment-close-btn:hover {
    background: rgba(255, 255, 255, 0.24);
}

.video-comment-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
}

.video-comment-form textarea {
    flex: 1;
    min-width: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px;
    min-height: 52px;
    resize: vertical;
    font: inherit;
    transition: min-height 0.18s ease;
}

@media (min-width: 768px) {
    .video-comment-form textarea {
        overflow-y: hidden;
    }

    .video-comment-form.is-input-expanded textarea {
        overflow-y: auto;
    }
}

.video-comment-form.is-input-expanded textarea {
    min-height: 110px;
}

.video-comment-input-wrap {
    position: relative;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.video-comment-mention-highlight {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 10px;
    white-space: pre-wrap;
    word-break: break-word;
    color: transparent;
    overflow: hidden;
    pointer-events: none;
    font: inherit;
    line-height: inherit;
}

.video-comment-mention-highlight mark {
    background: rgba(255, 225, 93, 0.38);
    border-radius: 4px;
    color: #fff;
    padding: 0 1px;
}

.video-comment-form textarea.mention-highlight-enabled {
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
}

.video-comment-emoji-toggle {
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
}

.video-comment-emoji-row {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
}

.video-comment-emoji-row.is-open {
    display: flex;
}

.video-comment-emoji-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
}

.video-comment-form button {
    border: 0;
    border-radius: 8px;
    color: #fff;
    padding: 8px 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
}

.video-comment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-comment-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 10px;
}

.video-comment-item.is-reply {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.video-comment-replies {
    margin-top: -4px;
    margin-left: 20px;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-comment-replies.is-collapsed {
    display: none;
}

.video-comment-collapse-toggle {
    align-self: flex-start;
    margin: 0 0 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    line-height: 1;
    padding: 4px 9px;
    cursor: pointer;
}

.video-comment-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.video-comment-edit-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    padding: 4px 9px;
    cursor: pointer;
}

.video-comment-text {
    font-size: 13px;
    line-height: 1.45;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.video-comment-reply-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 4px;
}

.video-comment-actions {
    margin-top: 6px;
    display: flex;
    gap: 8px;
}

.video-comment-reply-btn,
.video-comment-like-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    padding: 4px 9px;
    cursor: pointer;
}

.video-comment-depth-limit {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1;
    padding: 4px 9px;
}

.video-comment-like-btn.is-liked {
    background: rgba(255, 93, 184, 0.28);
    border-color: rgba(255, 93, 184, 0.85);
}

.video-comment-empty {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    padding: 4px 0;
}
/* ==========================
   Chichi-pui inspired theme overrides
========================== */
:root {
    --cp-bg: #0f1020;
    --cp-surface: #17192b;
    --cp-surface-soft: #1f2238;
    --cp-text: #f6f7ff;
    --cp-muted: #b7b8cb;
    --cp-accent: #ff5db8;
    --cp-accent-2: #8b5dff;
    --cp-border: rgba(255, 255, 255, 0.12);
    --auth-bg: rgba(19, 21, 36, 0.8);
    --auth-border: rgba(255, 255, 255, 0.18);
    --auth-link-color: #ffd8ef;
    --auth-link-border: rgba(255, 93, 184, 0.85);
    --auth-link-bg: rgba(255, 93, 184, 0.15);
    --auth-dropdown-bg: rgba(25, 27, 45, 0.96);
    --auth-dropdown-link-color: #f3f3ff;
    --auth-dropdown-link-border: rgba(255, 255, 255, 0.14);
}

body {
    background:
        radial-gradient(circle at 15% -10%, rgba(139, 93, 255, 0.25), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(255, 93, 184, 0.2), transparent 30%),
        var(--cp-bg);
    color: var(--cp-text);
}

.siteTitle {
    background:
        linear-gradient(120deg, rgba(28, 30, 48, 0.94), rgba(20, 22, 36, 0.96)),
        radial-gradient(circle at 85% 0%, rgba(255, 93, 184, 0.28), transparent 42%);
    border: 1px solid var(--cp-border);
    border-radius: 20px;
    margin: 10px 10px 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.global-nav {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.global-nav__list li a {
    background: rgba(255, 255, 255, 0.08);
    color: #fdf3ff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.global-nav__list li a:hover,
.global-nav__list li a:active {
    background: rgba(255, 93, 184, 0.18);
}

.single_content-header-title {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 93, 184, 0.2), rgba(139, 93, 255, 0.14));
    border: 1px solid var(--cp-border);
    border-radius: 14px;
    margin-inline: 10px;
    padding-left: 14px;
}

.video-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--cp-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    border-color: rgba(255, 93, 184, 0.7);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.video-thumb-wrap .title {
    background: linear-gradient(90deg, rgba(139, 93, 255, 0.7), rgba(255, 93, 184, 0.68));
    color: #fff;
}

.video-info {
    border-top-color: rgba(255, 255, 255, 0.12);
    color: var(--cp-muted);
}

.play-count,
.video-info .play-count {
    color: #d2d3e6;
}

.video-info .tag-link,
.tag-btn,
.tag-toolbar a {
    background: var(--cp-surface-soft);
    color: #f4f4ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tag-cnt {
    background: rgba(255, 93, 184, 0.2);
    border-color: rgba(255, 93, 184, 0.45);
    color: #ffd9f0;
}

.video-more-button {
    background: linear-gradient(120deg, var(--cp-accent), var(--cp-accent-2));
}

.site-search {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.site-search__input {
    color: #fff;
}

.site-search__input::placeholder {
    color: #c3c5de;
}

@media (max-width: 767px) {
    .siteTitle {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .siteTitle--withAuth {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 8px;
        row-gap: 8px;
        min-height: 52px;
        padding: 6px 10px;
        flex-wrap: wrap;
    }

    .siteTitle__logo {
        grid-column: 1;
        grid-row: 1;
        height: 34px;
        width: min(152px, 44vw);
        min-width: 0;
    }

    .siteTitle__auth {
        grid-column: 2;
        grid-row: 1;
        margin-left: 0;
        justify-self: end;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .siteTitle__search {
        order: initial;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        min-width: 0;
    }

    .single_content-header-title {
        margin-inline: 8px;
    }
}

.popup-end-screen {
    position: absolute;
    left: 50%;
    bottom: 32%;
    transform: translate(-50%, 50%);
    z-index: 35;
    max-width: min(86%, 360px);
    color: #fff;
    background: rgba(20, 20, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.popup-end-screen.is-visible {
    opacity: 1;
    transform: translate(-50%, 46%);
    pointer-events: auto;
}

.popup-end-screen__text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.popup-end-screen__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: #ff4f91;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
}

.top-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(160px, 20vh, 240px);
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, #34223a 0%, #100b14 60%, #09070c 100%);
    margin-bottom: 26px;
    margin-top: 15px;
    border-radius: 24px;
}

.top-hero__video {
    position: absolute;
    inset: -6% -10%;
    width: 118%;
    height: 118%;
    object-fit: cover;
    object-position: center 27%;
    filter: saturate(1.15) contrast(1.05);
    transform: scale(1.06);
}

.top-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
          130deg,
          rgba(9, 8, 15, 0.45) 10%,
          rgba(20, 11, 24, 0.28) 45%,
          rgba(255, 47, 147, 0.15) 100%
        ),
        radial-gradient(circle at 80% 50%, rgba(255, 51, 170, 0.25), rgba(255, 51, 170, 0));
}

.top-hero__noise {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 0.5px, transparent 0.5px);
    background-size: 3px 3px;
    opacity: 0.15;
    mix-blend-mode: soft-light;
}

.top-hero__content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: clamp(16px, 4vh, 40px) clamp(16px, 4vw, 40px);
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(2px);
}

.top-hero__eyebrow {
    display: inline-flex;
    margin: 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.top-hero__title {
    margin: 14px 0 12px;
    font-size: clamp(40px, 9vw, 78px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.top-hero__description {
    margin: 0 auto;
    max-width: 38ch;
    font-size: clamp(15px, 2.1vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.top-hero__sound-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(6, 6, 10, 0.42);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.top-hero__sound-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.top-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.top-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.top-hero__cta:hover {
    transform: translateY(-1px);
}

.top-hero__cta--primary {
    background: linear-gradient(120deg, #ff2f93, #ff6db8);
    color: #fff;
    box-shadow: 0 10px 26px rgba(255, 47, 147, 0.35);
}

.top-hero__cta--primary:hover {
    box-shadow: 0 14px 32px rgba(255, 47, 147, 0.45);
}

.top-hero__cta--ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.top-hero__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 767px) {
    .top-hero {
        min-height: clamp(90px, 12vh, 160px);
        border-radius: 0 0 18px 18px;
        margin-top: 5px;
    }

    .top-hero__video {
        inset: -8% -42%;
        width: 184%;
        height: 120%;
        object-position: center 28%;
        transform: scale(1.02);
    }

    .top-hero__content {
        padding-top: 10px;
        padding-bottom: 16px;
    }
    .top-hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

.campaign-showcase {
    position: relative;
    margin: 0 auto 32px;
    padding: clamp(18px, 3vw, 32px) 14px;
    background:
        radial-gradient(circle at 14% 5%, rgba(255,94,174,0.22), transparent 46%),
        radial-gradient(circle at 88% 8%, rgba(58,133,255,0.26), transparent 42%),
        linear-gradient(150deg,#181028 0%,#120a1e 52%,#0a0814 100%);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7,2,18,0.55);
}

.campaign-showcase__inner{
    max-width:1200px;
    margin:0 auto;
}

.campaign-showcase__title{
    margin:0 0 18px;
    text-align:center;
    color:#fff;
    font-size:clamp(20px,2.4vw,30px);
}

.campaign-showcase__swipe-hint{
    display:none;
    text-align:center;
    font-size:12px;
    color:rgba(255,255,255,0.7);
}

.campaign-showcase__grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    justify-content:center;
    gap:18px;
}

.campaign-card{
    width:100%;
}

.campaign-card__image-link{
    display:block;
    width:100%;
    border-radius:18px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    aspect-ratio:600/360;
    box-shadow:0 14px 30px rgba(0,0,0,.4);
    transition:transform .2s ease, box-shadow .2s ease;
}

.campaign-card__image-link:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(0,0,0,.45);
}

.creator-recruit .campaign-card__image-link{
    background-image:url("/img/campaign/creator-recruit-pc.png");
}

.post-campaign .campaign-card__image-link{
    background-image:url("/img/campaign/post-campaign-pc.png");
}

.shokai-post-campaign .campaign-card__image-link{
    background-image:url("/img/campaign/post-campaign_ft-pc.png");
}

@media (min-width:768px) and (max-width:1024px){
	.campaign-showcase{
	    padding:20px 12px;
	}

	.campaign-showcase__grid{
	    grid-template-columns:repeat(2,minmax(0,1fr));
	    gap:14px;
	}

	.campaign-card__image-link{
	    aspect-ratio:600/360;
	}
}

@media (max-width:767px){
	.campaign-showcase{
	    margin-bottom:20px;
	    padding:16px 10px;
	}

	.campaign-showcase__swipe-hint{
	    display:block;
	}

	.campaign-showcase__grid{
	    grid-template-columns:repeat(3,minmax(70%,70%));
	    grid-auto-flow:column;
	    justify-content:start;
	    overflow-x:auto;
	    overflow-y:hidden;
	    gap:12px;
	    scroll-snap-type:x mandatory;
	    padding-bottom:6px;
	    -webkit-overflow-scrolling:touch;
	}

	.campaign-card{
	    scroll-snap-align:center;
	}

	.campaign-card__image-link{
	    aspect-ratio:311/444;
	}

	.creator-recruit .campaign-card__image-link{
	    background-image:url("/img/campaign/creator-recruit.png");
	}

	.post-campaign .campaign-card__image-link{
	    background-image:url("/img/campaign/post-campaign.png");
	}

	.shokai-post-campaign .campaign-card__image-link{
	    background-image:url("/img/campaign/post-campaign_ft.png");
	}

}

/* ==========================
   Footer redesign (2026-03)
========================== */
.site-footer {
    background:
        linear-gradient(120deg, rgba(28, 30, 48, 0.94), rgba(20, 22, 36, 0.96)),
        radial-gradient(circle at 85% 0%, rgba(255, 93, 184, 0.28), transparent 42%);
    border-top: 1px solid #383838;
    padding: 28px 24px;
}

.footer-content {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 28px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0;
}

.footer-brand__logo {
    display: block;
    width: min(220px, 100%);
    height: auto;
}

.footer-social {
    margin: 4px 0 2px;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
    text-decoration: none;
}

.footer-social__icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.45;
    word-break: break-word;
}

.footer-link:hover {
    opacity: 0.75;
}

@media (max-width: 1200px) {
    .footer-brand__logo {
        width: min(180px, 100%);
    }

    .footer-social__icon {
        width: 18px;
        height: 18px;
    }

    .footer-link {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        margin-top: 36px;
        padding: 20px 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .footer-column {
        gap: 8px;
    }

    .footer-link {
        font-size: 14px;
        line-height: 1.65;
    }

    .footer-brand__logo {
        width: 100%;
        max-width: 150px;
    }

    .footer-social__icon {
        width: 18px;
        height: 18px;
    }
}

.video-comment-mention-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 44px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 180px;
    overflow: auto;
    border-radius: 8px;
    padding: 6px;
    background: rgba(13, 15, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.video-comment-mention-item {
    border: 0;
    border-radius: 6px;
    text-align: left;
    background: #fff0f5;
    color: #fff;
    padding: 7px 9px;
    cursor: pointer;
    font-size: 12px;
}

.video-comment-mention-item:hover {
    background: #ffb6c1;
}

/* --- Swipe広告UI --- */
#videoPlayerArea.ad-playing {
    position: relative;
}

.popup-ad-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 35;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(18, 18, 18, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.popup-ad-skip-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 35;
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #fff;
    background: rgba(18, 18, 18, 0.5);
    font-size: 12px;
    font-weight: 700;
    opacity: 0.7;
    cursor: not-allowed;
}

.popup-ad-skip-btn.is-ready {
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    cursor: pointer;
}

.popup-ad-link {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 35;
    max-width: calc(100% - 120px);
    padding: 9px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, rgba(255, 74, 156, 0.45), rgba(255, 120, 84, 0.45));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 75, 140, 0.42);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: left 0.45s ease, bottom 0.45s ease, transform 0.45s ease, opacity 0.45s ease, max-width 0.45s ease, box-shadow 0.45s ease, background 0.35s ease, border-color 0.35s ease;
}

.popup-ad-link:hover {
    filter: brightness(1.05);
    text-decoration: none;
}

.popup-ad-link.is-centered {
    display: block;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    width: min(96%, 760px);
    max-width: none;
    white-space: normal;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 74, 156, 0.78), rgba(255, 120, 84, 0.78));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 34px rgba(255, 75, 140, 0.48);
}

.popup-video-title-chip {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 34;
    max-width: calc(100% - 24px);
    padding: 9px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 74, 156, 0.45), rgba(255, 120, 84, 0.45));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: 0 8px 18px rgba(255, 75, 140, 0.42);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.98;
    transform: translate3d(0, 0, 0);
    transition: left 0.45s ease, bottom 0.45s ease, transform 0.45s ease, max-width 0.45s ease, width 0.45s ease, white-space 0.45s ease, text-align 0.45s ease, opacity 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.popup-video-title-chip.is-centered {
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    width: min(96%, 760px);
    max-width: none;
    white-space: normal;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 74, 156, 0.78), rgba(255, 120, 84, 0.78));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 14px 30px rgba(255, 75, 140, 0.5);
}

.popup-video-title-chip.is-link {
    text-decoration: none;
}

.popup-video-title-chip.is-link.is-centered {
    pointer-events: auto;
    cursor: pointer;
}

.popup-video-title-chip.is-transitioning {
    opacity: 0.84;
}

@media (min-width: 769px) {
    .popup-ad-skip-btn,
    .popup-ad-link,
    .popup-video-title-chip {
        bottom: 72px;
    }
}
