@charset "utf-8";

:root {
    /* セマンティックカラー */
    --color-primary-1st: #FF4775;
    --color-primary-2nd: #3DAAFE;
    --color-primary-3rd: #FFEA00;
}

main {
    font-family: Noto Sans JP, Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, ヒラギノ角ゴシック, Hiragino Sans, Meiryo, メイリオ, sans serif;
    background-color: #FFFFFF;
}

.cp-background {
    background-repeat: repeat;
    background-size: 4%;
}
@media screen and (max-width: 950px) {
    .cp-background {
        background-size: 12%;
    }
}
.cp-background--01 {
    background-image: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/bg_paper_01.png?date=20260422");
}
.cp-background--02 {
    background-image: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/bg_paper_02.png?date=20260422");
}
.cp-background--03 {
    background-image: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/bg_paper_03.png?date=20260422");
}
.cp-background--04 {
    background-image: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/bg_paper_03.png?date=20260422");
}

a:hover,
a:active,
a:link,
a:visited {
    text-decoration: none;
}
.cp-container {
    display: flex;
    justify-content: center;
}

.cp-head {
    margin: 16px 0 32px;
    pointer-events: none;
}

.cp-head img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .cp-head {
        width: 100%;
        margin-bottom: 12px;
    }
}

.cp-floating-entry {
    display: none;
    position: fixed;
    bottom: 0;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 10px 0;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    pointer-events: none;
    z-index: 2;
}

.cp-floating-entry.visible {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    .cp-floating-entry {
        display: flex;
    }
}

.cp-floating-entry--01 {
    background: linear-gradient(180deg, #FF477500 0%, #FF4775E7 30%, var(--color-primary-1st) 100%);
}
.cp-floating-entry--02 {
    background: linear-gradient(180deg, #3DAAFE00 0%, #3DAAFEE7 30%, var(--color-primary-2nd) 100%);
}
.cp-floating-entry--03 {
    background: linear-gradient(180deg, #FFEA0000 0%, #FFEA00E7 30%, var(--color-primary-3rd) 100%);
}

/* キービジュアル */
.cp-kv img {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

@media screen and (max-width: 950px) {
    .cp-kv picture {
        width: 100%;
    }
}

/* クーポン取得エリア */
.cp-coupon {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cp-coupon--01 {
    background-color: var(--color-primary-1st);
}
.cp-coupon--02 {
    background-color: var(--color-primary-2nd);
}
.cp-coupon--03 {
    background-color: var(--color-primary-3rd);
}

.cp-coupon__register-text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    margin: 32px 0 10px;
}
.cp-coupon__register-text--03 {
    color: #333333;
}

.cp-coupon__button {
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/btn_coupon.png?date=20260422");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 328 / 74;
}
.bl-coupon_entry {
    width: 100%;
    max-width: 328px;
}
.bl-coupon_entry:not(.already.off) .cp-coupon__button:hover {
    filter: brightness(1.08);
    transition: all 0.2s ease-out;
    transform: scale(1.03);
}
.bl-coupon_entry.already.off .cp-coupon__button {
    background: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/btn_coupon_disabled.png?date=20260422");
    background-repeat: no-repeat;
    background-size: cover;
    cursor: default;
}
.cp-coupon__button-schedule {
    position: absolute;
    bottom: 14px;
    color: #FFFFFF;
    text-shadow: 0px 2px 0px #008104;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.bl-coupon_entry.already.off .cp-coupon__button-schedule {
    text-shadow: none;
    color: #9f9f9f;
}

.cp-coupon-detail {
    background-color: #D6E4FFDD;
    border-radius: 8px;
    box-sizing: border-box;
    width: calc(100% - 32px);
    max-width: 680px;
    padding: 60px 20px 20px;
    margin: -40px 16px 0;
    line-height: 155%;
}

.cp-coupon-detail__note {
    margin-top: 1em;
    color: #E90800;
}

.cp-coupon__close-text {
    font-size: 16px;
    font-weight: 700;
    margin: 54px 0;
}

/* アコーディオン */
.cp-accordion {
    box-sizing: border-box;
    width: calc(100% - 32px);
    height: auto;
    max-width: 540px;
    margin: 32px 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
}

.cp-accordion--is-open {
    transition: all 0.25s ease;
}

.cp-accordion__head {
    display: flex;
    justify-content: center;
    padding: 20px;
}
.cp-accordion__head img {
    object-fit: cover;
    height: auto;
    pointer-events: none;
}

.cp-accordion__button {
    display: block;
    border: none;
    color: currentColor;
    background-color: #E2E2E2;
    width: 100%;
    cursor: pointer;
    padding: 12px;
    font-weight: 700;
}

.cp-accordion__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.cp-accordion__content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

.cp-accordion--is-open .cp-accordion__content {
    max-height: 1000px;
    padding: 16px;
}


.cp-accordion__note {
    line-height: 160%;
    margin-top: 16px;
}

.cp-accordion__note p:not([class]) {
    margin-top: 2px;
}

.cp-accordion__note-head {
    font-weight: 700;
    font-size: 16px;
    margin-top: 8px;
}

.cp-accordion__note-head::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #3E88FE;
    border-bottom: 1px solid #3E88FE;
    background-color: #3E88FE;
    margin-right: 4px;
}

.cp-accordion__note-terms {
    font-weight: 700;
    margin-top: 2px;
}

.cp-accordion__link {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.cp-accordion__link-button {
    display: inline-block;
    color: #FFFFFF !important;
    background-color: #3E88FE;
    width: 100%;
    font-weight: 700;
    text-align: center;
    padding: 8px 12px 11px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: -3px -5px 0px 0px #00000040 inset;
}

.cp-accordion__link-button:hover {
    filter: brightness(0.9);
    transition: filter 0.2s ease;
}

@media screen and (max-width: 768px) {
    .cp-accordion__link {
        gap: 10px;
    }
}

/* スライダー */
.slider_content {
    position: relative;
    margin-bottom: 20px;
}

.slider_content:last-child {
    margin-bottom: 0;
}

.cp-slider {
    width: 100%;
    background: none;
}

.swiper-container {
    width: 100%;
}

.card-slider .swiper-wrapper {
    display: flex;
    padding: 2px 0;
}

.card-slider .swiper-slide {
    display: flex;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

.card-slider.swiper {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 2px 0;
}

.slider_content {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: -24px !important;
}

.slider_content .cp-coma-card__item {
    width: 364px;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .card-slider.swiper {
        margin-bottom: 40px;
    }
    .slider_content .cp-coma-card__item {
        width: 84vw;
        max-width: 364px;
    }
}

/* PCサイズで話題の作品・完結作品のスライダーを無効化 */
@media screen and (min-width: 769px) {
    .cp-wadai .slider_content,
    .cp-kanketsu .slider_content {
        width: 100%;
        max-width: 1024px;
        margin: 0 auto;
    }
    
    .cp-wadai .slider_content .cp-slider,
    .cp-kanketsu .slider_content .cp-slider {
        width: 100%;
        overflow: hidden;
    }
    
    .cp-wadai .slider_content .swiper-wrapper,
    .cp-kanketsu .slider_content .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
        width: 100%;
        transform: none !important;
    }
    
    .cp-wadai .swiper-pagination,
    .cp-wadai .swiper-navigation,
    .cp-kanketsu .swiper-pagination,
    .cp-kanketsu .swiper-navigation {
        display: none;
    }
}

/* 極上無料 */
.cp-gokujyo, .cp-kanketsu {
    max-width: 1024px;
    width: 100%;
}
.cp-gokujyo--01 {
    background: linear-gradient(180deg, var(--color-primary-1st) 0%, #FFFFFF 100%);
}
.cp-gokujyo--02 {
    background: linear-gradient(180deg, var(--color-primary-2nd) 0%, #FFFFFF 100%);
}
.cp-gokujyo--03 {
    background: linear-gradient(180deg, var(--color-primary-3rd) 0%, #FFFFFF 100%);
}

@media not all and (max-width: 950px) {
    .cp-container {
        width: 100%;
        max-width: 1024px;
        margin: 0 auto; 
    }
}

.cp-gokujyo__list {
    position: relative;
    display: flex;
    justify-content: center;
    height: auto;
    box-sizing: border-box;
    max-width: 1024px;
    margin: 0 auto;
}

.cp-gokujyo__item {
    display: flex;
    flex-direction: column;
    width: 330px;
    background-color: #FFFFFF;
    border: 1px solid #ACACACBC;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    .cp-gokujyo__list {
        justify-content: flex-start;
    }
    .cp-gokujyo__item {
        width: 85vw;
        max-width: 330px;
    }
}

.cp-gokujyo__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    background-color: #F1F1F1;
}
.cp-gokujyo__image:hover {
    filter: brightness(1.05);
    transition: filter 0.2s ease;
}

.cp-gokujyo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.cp-gokujyo__content {
    display: flex;
    box-sizing: border-box;
    flex: 1;
    gap: 12px;
    width: 100%;
    padding: 16px;
}

.cp-gokujyo__book {
    display: block;
    width: 100px;
    flex-shrink: 0;
}
.cp-gokujyo__book img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}
.cp-gokujyo__book:hover {
    filter: brightness(1.05);
    transition: filter 0.2s ease;
}

.cp-gokujyo__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.cp-gokujyo__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.cp-gokujyo__description {
    color: #FF0000;
    font-size: 26px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: end;
}

.cp-gokujyo__button {
    display: inline-block;
    color: #FFFFFF !important;
    background-color: #FF5A00;
    font-weight: 700;
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 4px;
}
.cp-gokujyo__button:hover {
    filter: brightness(0.9);
    transition: filter 0.2s ease;
}
.cp-gokujyo__button-icon {
    margin-right: 4px;
}

/* 定番の作品 */
.cp-teiban {
    margin-top: 10px;
}

/* 話題の作品 */
.cp-wadai {
    max-width: 1024px;
    width: 100%;
}
/* 値引き作品 */
.cp-discount-title__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    max-width: 928px;
    margin: 0 auto;
    padding: 8px 16px;
}

.cp-discount-title__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 8px;
    width: 120px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.cp-discount-title__img {
    display: block;
    background-color: #F1F1F1;
    cursor: pointer;
}
.cp-discount-title__img img:hover {
    filter: brightness(1.05);
    transition: filter 0.2s ease;
}

.cp-discount-title__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #EBEBEB;
    pointer-events: none;
}

.cp-discount-title__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    width: 100%;
}

.cp-discount-title__vol {
    color: #041906;
    background-color: #D4E799;
    width: 100%;
    margin-top: 6px;
    padding: 1.5px 0;
    border-radius: 999px;
}

.cp-discount-title__name {
    margin-top: 4px;
    display: -webkit-box;
    width: 100%;
    font-size: 13.75px;
    height: calc(1.5em * 2);
    line-height: 150%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-align: start;
    word-break: break-word;
    overflow-wrap: break-word;
}

.cp-discount-title__price {
    margin-bottom: 4px;
}

.cp-discount-title__price--regular {
    text-decoration: line-through;
}

.cp-discount-title__price--sale {
    color: #FF0000;
    font-size: 17px;
    font-weight: 700;
}

.cp-discount-title__price--sale span {
    font-size: 13px;
}

.cp-discount-title__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-sizing: border-box;
    color: currentColor !important;
    background-color: #FFFFFF;
    font-weight: 700;
    border: 1px solid currentColor;
    border-radius: 4px;
    width: 100%;
    padding: 8px;
}
.cp-discount-title__link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(-45deg);
    opacity: 1;
}
.cp-discount-title__link:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

@media screen and (max-width: 490px) {
    .cp-discount-title__list {
        gap: 10px;
    }
    .cp-discount-title__item {
        width: 25vw;
        padding: 6px;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.14);
    }
    .cp-discount-title__vol {
        font-size: 12px;
    }
    .cp-discount-title__link {
        font-size: 11px;
    }
    .cp-discount-title__price--regular {
        font-size: 11px;
    }
    .cp-discount-title__price--sale {
        font-size: 16px;
    }
    .cp-discount-title__price--sale span {
        font-size: 11px;
    }
}

/* タイトルのみ作品 */
.cp-other-title__list {
    max-width: 680px;
    margin: 32px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 0 16px;
}

.cp-other-title__item {
    display: flex;
    align-items: center;
    background-color: #333333;
    color: #FFFFFF !important;
    border-radius: 999px;
    width: fit-content;
    padding: 5px 10px;
    font-weight: 700;
    line-height: 160%;
    cursor: pointer;
}

/* コマ見せ */
.cp-coma-card__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 780px;
    margin: 0 auto 54px;
    gap: 20px;
}

.cp-coma-card__item {
    max-width: 364px;
    width: 100%;
    height: 100%;
    color: #4D2700;
    background-color: #FFFCF0;
    border: 1px solid currentColor;
    border-radius: 8px;
    overflow: hidden;
}

.cp-coma-card__coma {
    display: flex;
    align-items: center;
    width: 100%;
    height: 276px;
    background-color: #FFFFFF;
    overflow: hidden;
}
.cp-coma-card__coma:hover {
    filter: brightness(1.05);
    transition: filter 0.2s ease;
}

.cp-coma-card__coma img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .cp-coma-card__list {
        flex-wrap: nowrap;
    }

    .cp-coma-card__item {
        width: 320px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 450px) {
    .cp-coma-card__coma {
        height: calc(70vw / 1.12);
    }
}

.cp-coma-card__content {
    display: flex;
    gap: 10px;
    padding: 16px;
    line-height: 150%;
}

.cp-coma-card__text {
    width: 100%;
}

.cp-coma-card__book {
    display: block;
    flex-shrink: 0;
}
.cp-coma-card__book:hover {
    filter: brightness(1.05);
    transition: filter 0.2s ease;
}
.cp-coma-card__book img {
    width: 100px;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

.cp-coma-card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cp-coma-card__price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 8px 0;
}
.cp-coma-card__price--regular {
    text-decoration: line-through;
    font-size: 12px;
    margin-right: 3px;
}
.cp-coma-card__price--regular::after {
    content: "→";
    margin-left: 4px;
}
.cp-coma-card__price--sale {
    color: #FF0000;
    font-size: 17px;
    font-weight: 700;
}
.cp-coma-card__price--sale span {
    font-size: 14px;
}

@media screen and (max-width: 450px) {
    .cp-coma-card__price {
        flex-direction: column;
        justify-content: center;
    }
    .cp-coma-card__price--sale {
        font-size: 16px;
    }
    .cp-coma-card__price--sale span {
        font-size: 12.5px;
    }
}

/* ボタン */
.cp-btn-view-all {
    display: block;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 320 / 64;
    background-image: url("/resources/a/image/landing/campaign/goldenweek-campaign-shueisha2026/btn_view_all.png?date=20260422");
    background-repeat: no-repeat;
    background-size: contain;
    margin: 24px auto;
}
.cp-btn-view-all:hover {
    filter: brightness(0.92);
    transition: filter 0.2s ease;
}

/* 書影なしタイトル */
.cp-other-title__item:hover {
    color: #FFFFFF;
    text-decoration: none;
    filter: brightness(0.8);
    transition: filter 0.2s ease;
}

/* スケジュール */
.cp-schedule {
    width: auto;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    .cp-schedule {
        width: 100%;
    }
    .cp-schedule__item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.cp-schedule__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 160%;
    text-shadow: 
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        0 0 4px #FFFFFF,
        -4px -4px 0 #FFFFFF,
        -4px -2px 0 #FFFFFF,
        -4px 0 0 #FFFFFF,
        -4px 2px 0 #FFFFFF,
        -4px 4px 0 #FFFFFF,
        -2px -4px 0 #FFFFFF,
        -2px 4px 0 #FFFFFF,
        0 -4px 0 #FFFFFF,
        0 4px 0 #FFFFFF,
        2px -4px 0 #FFFFFF,
        2px 4px 0 #FFFFFF,
        4px -4px 0 #FFFFFF,
        4px -2px 0 #FFFFFF,
        4px 0 0 #FFFFFF,
        4px 2px 0 #FFFFFF,
        4px 4px 0 #FFFFFF;
    margin-top: 20px;
    text-align: center;
}

.cp-schedule__list {
    display: flex;
    margin-top: 12px;
}

@media screen and (max-width: 1040px) {
    .cp-schedule__list {
        flex-direction: column;
    }
}

.cp-schedule__item {
    filter: brightness(0.5);
}

.cp-schedule__item--active {
    filter: brightness(1);
}

/* フォロー＆リポストキャンペーン */
.cp-follow-repost {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 40px;
    box-sizing: border-box;
    padding: 16px 16px 0px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 540px;
}

.cp-follow-repost__banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

.cp-follow-repost__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding: 10px 20px;
    height: 30px;
    color: #FFFFFF !important;
    font-weight: 700;
    background-color: #222222;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
    border: none;
    border-radius: 999px;
}
.cp-follow-repost__button:hover {
    filter: brightness(0.8);
    transition: filter 0.2s ease;
}
.cp-follow-repost__button img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
    object-fit: cover;
    pointer-events: none;
}

/* 注意事項 */
.cp-attention {
    max-width: 540px;
    margin: 30px auto 54px;
}
.cp-attention-wrapper {
    background-color: #FFFFFF;
    max-width: 540px;
    padding-inline: 40px;
    border-radius: 8px;
    line-height: 125%;
    font-size: 15px;
    padding-top: 28px;
}
.cp-attention h4 {
    padding-left: 16px;
    padding-top: 0;
    padding-bottom: 10px;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    display: inline-block;
}
.cp-attention h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    border: 4px solid #3E88FE;
    border-radius: 1px;
    pointer-events: none;
    box-sizing: border-box;
    background-color: #3E88FE;
    width: 8px;
    height: 15px;
}
.cp-attention__lead {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 48px;
    transform: translate(14px, 0%);
    width: calc(100% - 14px);
}
.cp-attention__lead li {
    margin-bottom: 1em;
    position: relative;
    padding-left: 14px;
    line-height: 135%;
}
.cp-attention__lead li:last-child {
    margin-bottom: 0;
}
.cp-attention__lead li::before {
    content: '・';
    left: 0;
    position: absolute;
    font-weight: bold;
}

@media screen and (max-width: 950px) {
    .cp-follow-repost {
        margin: 0 16px;
        padding: 12px 12px 0px;
    }
    .cp-attention {
        padding: 0 16px;
    }
    .cp-attention h4::before {
        top: 2px;
    }
    .cp-attention-wrapper {
        max-width: 379px;
        margin: 0 auto;
        padding: 28px 20px 0 16px;
        font-size: 13px;
    }
    .cp-attention-wrapper li {
        margin-bottom: 0.9em;
    }
    .cp-attention-wrapper h4 {
        padding-left: 16px;
        padding-top: 0;
        padding-bottom: 10px;
    }
}

/* SNSシェアボタン */
.cp-sns {
    padding-bottom: 60px;
}
.cp-sns__list {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.cp-sns__list a img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    pointer-events: none;
}
.icon-link {
    display: inline-block;
}
