/* =============================================
   GalComic Review UI
============================================= */

.gc-review {
    margin: 32px 0 40px;
}

.gc-affi-note {
    font-size: 12px;
    color: #999;
    margin: 0 0 20px;
}

/* HERO */

.gc-hero {
    max-width: 980px;
    margin: 0 auto 56px;
}

.gc-hero__visual {
    margin-bottom: 34px;
}

.gc-hero__image {
    width: 100%;
    max-width: 760px;
    display: block;
    margin: 0 auto;
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.gc-hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.gc-hero__title {
    font-size: 48px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 20px 0 22px;
}

.gc-hero__lead {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    background: #fff7fb;
    border-left: 5px solid #ff4f93;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 28px;
}

/* TAGS */

.gc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gc-tags--hero {
    margin-bottom: 18px;
}

.gc-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fff4f8, #ffe1ec);
    color: #d8487c;
    border: 1px solid #ffd1e2;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(216,72,124,.10);
    transition: .2s;
}

.gc-tag:hover {
    color: #d8487c;
    text-decoration: none;
    transform: translateY(-2px);
}

/* META CARD */

.gc-metaCard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: stretch;
    margin: 28px 0;
}

.gc-metaCard__item,
a.gc-metaCard__item {
    position: relative;
    min-height: 120px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    color: inherit;
    text-decoration: none;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.gc-metaCard__label,
a.gc-metaCard__item .gc-metaCard__label {
    display: block !important;
    font-size: 12px;
    line-height: 1 !important;
    color: #999;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.gc-metaCard__value,
a.gc-metaCard__item .gc-metaCard__value {
    display: block !important;
    font-size: 18px;
    line-height: 1.45 !important;
    font-weight: 800;
    color: #222;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

/* リンク付きカード */

a.gc-metaCard__item {
    cursor: pointer;
    border-color: #ffd1e2;
    background: linear-gradient(135deg, #fff, #fff7fb);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

a.gc-metaCard__item::after {
    content: "→";
    position: absolute;
    top: 24px !important;
    right: 24px !important;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    color: #e35b8f;
    transform: none !important;
}

a.gc-metaCard__item:hover {
    transform: translateY(-3px);
    border-color: #ff9fbe;
    box-shadow: 0 14px 28px rgba(216,72,124,.14);
    text-decoration: none;
}

/* CTA */

.gc-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.gc-cta--main {
    max-width: 680px;
    margin: 36px auto 0;
}

.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 58px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s;
}

.gc-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.gc-btn--fanza {
    background: linear-gradient(135deg, #ff4f93, #ff2468);
    color: #fff;
    box-shadow: 0 14px 28px rgba(255,79,147,.28);
}

.gc-btn--dlsite {
    background: #7c5cff;
    color: #fff;
    box-shadow: 0 14px 28px rgba(124,92,255,.22);
}

/* SECTION */

.gc-section {
    max-width: 980px;
    margin: 64px auto 0;
}

.gc-samples-section--early {
    margin-top: 48px;
}

.gc-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: .03em;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3d5df;
}

.gc-section__title::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4f93, #ff9fc4);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(255,79,147,.28);
    flex-shrink: 0;
}

/* セクション見出しアイコン */

.gc-chart-section .gc-section__title::before {
    content: "📊" !important;
}

.gc-samples-section .gc-section__title::before {
    content: "🖼️" !important;
}

.gc-art-section .gc-section__title::before {
    content: "🎨" !important;
}

.gc-story-section .gc-section__title::before {
    content: "🔥" !important;
}

.gc-points-section .gc-section__title::before {
    content: "👍" !important;
}

.gc-recommend-section .gc-section__title::before {
    content: "💖" !important;
}

/* CHART */

.gc-chart {
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: #fff;
    border: 1px solid #f4d6e2;
    border-radius: 24px;
    padding: 28px 28px 32px;
    box-shadow: 0 16px 40px rgba(216,72,124,.08);
}

.gc-chart__row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gc-chart__labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 800;
    color: #555;
}

.gc-chart__labels span::before,
.gc-chart__labels span::after {
    display: inline-block;
}

/* リアル ↔ アニメ */
.gc-chart__row:nth-child(1) .gc-chart__labels span:first-child::before {
    content: "🎨 ";
}

.gc-chart__row:nth-child(1) .gc-chart__labels span:last-child::before {
    content: "📺 ";
}

/* 清楚 ↔ ギャル */
.gc-chart__row:nth-child(2) .gc-chart__labels span:first-child::before {
    content: "💄 ";
}

.gc-chart__row:nth-child(2) .gc-chart__labels span:last-child::before {
    content: "💖 ";
}

/* クール ↔ キュート */
.gc-chart__row:nth-child(3) .gc-chart__labels span:first-child::before {
    content: "🧊 ";
}

.gc-chart__row:nth-child(3) .gc-chart__labels span:last-child::before {
    content: "✨ ";
}

/* 甘々 ↔ シコ特化 */
.gc-chart__row:nth-child(4) .gc-chart__labels span:first-child::before {
    content: "🍬 ";
}

.gc-chart__row:nth-child(4) .gc-chart__labels span:last-child::before {
    content: "🔥 ";
}

/* ストーリー ↔ 実用性 */
.gc-chart__row:nth-child(5) .gc-chart__labels span:first-child::before {
    content: "📖 ";
}

.gc-chart__row:nth-child(5) .gc-chart__labels span:last-child::before {
    content: "💦 ";
}

.gc-chart__labels span:last-child {
    color: #d8487c;
}

.gc-chart__track {
    position: relative;
    height: 16px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #8ec5ff 0%,
            #e7dce5 50%,
            #ff79ad 100%
        );
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.7),
        0 6px 16px rgba(255,121,173,.14);
    overflow: visible;
}

.gc-chart__track::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 3px;
    height: 30px;
    background: rgba(255,255,255,.95);
    box-shadow:
        0 0 0 1px rgba(0,0,0,.04),
        0 0 10px rgba(255,255,255,.8);
    transform: translateX(-50%);
}

.gc-chart__dot {
    position: absolute;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #d85286;
    transform: translate(-50%, -50%);
    box-shadow:
        0 6px 18px rgba(0,0,0,.22),
        0 0 0 5px rgba(216,82,134,.12);
}

/* SAMPLES */

.gc-samples {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.gc-sample__img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    transition: .2s;
}

.gc-sample__img:hover {
    transform: translateY(-3px);
}

/* 管理人吹き出し */

.gc-managerBalloon {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    margin: 30px 0 38px;
}

.gc-managerBalloon--afterSamples {
    max-width: 860px;
    margin: 44px auto 0;
}

.gc-managerBalloon__icon {
    width: 72px;
    flex-shrink: 0;
    text-align: center;
    margin-top: 4px;
}

.gc-managerBalloon__icon img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 999px;
    border: 3px solid #ff9fc4;
    background: #fff;
}

.gc-managerBalloon__icon span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #555;
}

.gc-managerBalloon__body {
    position: relative;
    flex: 1;
    max-width: 820px;
    padding: 18px 22px;
    border: 2px solid #ff9fc4;
    border-radius: 18px;
    background: #fff8fc;
}

.gc-managerBalloon__body::before {
    content: "";
    position: absolute;
    top: 26px;
    left: -10px;
    width: 18px;
    height: 18px;
    background: #fff8fc;
    border-left: 2px solid #ff9fc4;
    border-bottom: 2px solid #ff9fc4;
    transform: rotate(45deg);
}

.gc-managerBalloon__text {
    font-weight: 600;
    line-height: 1.85;
}

/* 総集編シンプル導線 */

.gc-omnibusSimple {
    margin: 56px auto 0;
    max-width: 820px;
}

.gc-omnibusSimple__inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #ffd6f0;
}

.gc-omnibusSimple__cover {
    width: 180px;
    flex-shrink: 0;
}

.gc-omnibusSimple__cover img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.gc-omnibusSimple__icon {
    font-size: 38px;
    line-height: 1;
}

.gc-omnibusSimple__content {
    flex: 1;
}

.gc-omnibusSimple__label {
    font-size: 14px;
    font-weight: 700;
    color: #e44aa0;
    margin-bottom: 10px;
}

.gc-omnibusSimple__title {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.gc-omnibusSimple__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.gc-omnibusSimple__meta span {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff4fb;
    font-weight: 700;
}

.gc-omnibusSimple__note {
    line-height: 1.9;
    color: #555;
    margin-bottom: 24px;
}

.gc-omnibusSimple__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.gc-omnibusSimple__cta .gc-btn {
    min-width: 260px;
}

/* TEXT */

.gc-text {
    background: #fafafa;
    border-radius: 18px;
    padding: 24px;
    line-height: 1.9;
    font-size: 15px;
}

/* PROS CONS */

.gc-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gc-pros,
.gc-cons {
    background: #fafafa;
    border-radius: 18px;
    padding: 24px;
}

.gc-pros {
    border-left: 5px solid #43b581;
}

.gc-cons {
    border-left: 5px solid #e57373;
}

.gc-pros__head,
.gc-cons__head {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.gc-proscons__text {
    line-height: 1.8;
}

/* RECOMMEND */

.gc-recommend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gc-recommend__chip {
    background: #fff0f6;
    color: #c24571;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
}

/* 下部CTA */

.gc-bottomCta {
    margin-top: 70px;
    text-align: center;
}

.gc-bottomCta__text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* FANZA CREDIT */

.gc-dmm-credit {
    max-width: 980px;
    margin: 32px auto 12px;
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.gc-dmm-credit img {
    opacity: .75;
    transition: opacity .2s;
}

.gc-dmm-credit img:hover {
    opacity: 1;
}

/* ARCHIVE */

.gc-archive {
    max-width: 1100px;
    margin: 48px auto 80px;
}

.gc-archive__header {
    margin-bottom: 40px;
}

.gc-archive__title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.gc-archive__lead {
    color: #666;
    line-height: 1.8;
}

.gc-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.gc-reviewCard {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
    transition: .2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gc-reviewCard:hover {
    transform: translateY(-4px);
}

.gc-reviewCard__image {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gc-reviewCard__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gc-reviewCard__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 32px;
    margin-bottom: 12px;
}

.gc-reviewCard__tags span {
    background: #fff0f6;
    color: #d8487c;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.gc-reviewCard__title {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 800;
    min-height: 80px;
    margin-bottom: 12px;
}

.gc-reviewCard__title a {
    color: inherit;
    text-decoration: none;
}

.gc-reviewCard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #777;
    font-size: 12px;
    margin-top: auto;
}

.gc-reviewCard__meta span {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 999px;
    padding: 5px 9px;
}

.gc-archive__pager {
    margin-top: 48px;
}

/* SWELL ADJUST */

.single-review .l-main {
    padding-top: 24px !important;
}

.single-review .l-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.single-review .p-breadcrumb,
.single-review .c-breadcrumb {
    margin-bottom: 24px !important;
}

.single-review .w-beforeFooter {
    display: none;
}

/* MOBILE */

@media (max-width: 768px) {

    .gc-review {
        margin-bottom: 32px;
    }

    .gc-hero {
        margin-bottom: 42px;
    }

    .gc-hero__image {
        border-radius: 18px;
    }

    .gc-hero__title {
        font-size: 30px;
        line-height: 1.45;
    }

    .gc-hero__lead {
        font-size: 15px;
    }

    .gc-metaCard {
        grid-template-columns: 1fr;
    }

    .gc-metaCard__item {
        height: auto;
        min-height: 110px;
    }

    .gc-btn {
        width: 100%;
        min-width: 0;
    }

    .gc-section {
        margin-top: 52px;
    }

    .gc-section__title {
        font-size: 25px;
    }

    .gc-section__title::before {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .gc-chart {
        padding: 22px 18px 26px;
        border-radius: 20px;
    }

    .gc-managerBalloon {
        max-width: 100%;
        gap: 12px;
    }

    .gc-managerBalloon__icon {
        width: 58px;
    }

    .gc-managerBalloon__icon img {
        width: 52px;
        height: 52px;
    }

    .gc-managerBalloon__body {
        max-width: none;
        padding: 15px 16px;
    }

    .gc-omnibusSimple__inner {
        flex-direction: column;
        padding: 24px;
    }

    .gc-omnibusSimple__cover {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .gc-omnibusSimple__title {
        font-size: 22px;
    }

    .gc-omnibusSimple__cta .gc-btn {
        min-width: 0;
        width: 100%;
    }

    .gc-proscons {
        grid-template-columns: 1fr;
    }

    .gc-archive__title {
        font-size: 32px;
    }
}

/* FANZAボタン：セール中バッジ */
.gc-btn--fanza {
    position: relative;
    overflow: visible;
}

.gc-btn__saleBadge {
    position: absolute;
    top: -14px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #fff;
    color: #ff2f86;
    border: 2px solid #ff2f86;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 5px 14px rgba(255, 47, 134, .24);
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .gc-btn__saleBadge {
        top: -13px;
        left: 16px;
        font-size: 12px;
        min-height: 24px;
        padding: 4px 10px;
    }
}

/* 総集編導線：大きめアイキャッチ＋SALE対応 */
.gc-omnibusSimple {
    max-width: 920px;
}

.gc-omnibusSimple__inner {
    align-items: center;
    padding: 38px;
    background: linear-gradient(135deg, #fff7fb 0%, #fff 70%);
    box-shadow: 0 18px 44px rgba(255, 92, 168, .10);
}

.gc-omnibusSimple__cover {
    width: 300px;
}

.gc-omnibusSimple__cover img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.gc-omnibusSimple__label {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffe4ef;
    color: #e83e83;
    font-size: 13px;
    font-weight: 900;
}

.gc-omnibusSimple__meta span {
    background: #fff0f8;
    color: #d93683;
}

@media (max-width: 768px) {
    .gc-omnibusSimple__inner {
        padding: 22px;
    }
    .gc-omnibusSimple__cover {
        width: 100%;
        max-width: none;
    }
}
