/* =========================================================
   QAB MY NAME IS ロジャー
   Frontend CSS
   ========================================================= */

.qab-roger-latest,
.warashibe-page {
    --roger-orange: #e45b16;
    --roger-orange-dark: #bd450c;
    --roger-black: #111;
    --roger-dark: #1b1b1b;
    --roger-gray: #f5f5f3;
    --roger-border: #dedede;
    --roger-text: #222;
    --roger-muted: #777;
}


/* =========================================================
   最新放送情報
   ========================================================= */

.qab-roger-latest {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0;
    box-sizing: border-box;
}

.qab-roger-latest *,
.qab-roger-latest *::before,
.qab-roger-latest *::after {
    box-sizing: border-box;
}

.qab-roger-note {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: var(--roger-orange);
    border-radius: 10px;

    color: #fff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .10);
}

.qab-roger-note h4 {
    margin: 0 !important;
    padding: 14px 18px !important;

    background: var(--roger-orange);

    color: #fff !important;

    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;

    letter-spacing: .02em;
}

.qab-roger-note p {
    margin: 0 !important;
    padding: 0 18px 16px !important;

    color: #fff !important;

    font-size: 14px;
    line-height: 1.8;
}

.qab-roger-note a {
    color: inherit !important;
    text-decoration: none !important;
}

.qab-roger-note img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0 !important;
    padding: 0;
}


/* =========================================================
   わらしべ長者 ページ本体
   ========================================================= */

.warashibe-page {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 0;

    background: #fff;
    color: var(--roger-text);

    box-sizing: border-box;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Yu Gothic",
        YuGothic,
        Meiryo,
        sans-serif;

    line-height: 1.6;
}

.warashibe-page *,
.warashibe-page *::before,
.warashibe-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   WordPressテーマ側の基本CSSをリセット
   ========================================================= */

.warashibe-page h1,
.warashibe-page h2,
.warashibe-page h3,
.warashibe-page h4,
.warashibe-page p,
.warashibe-page ul,
.warashibe-page ol,
.warashibe-page li,
.warashibe-page figure {
    margin-top: 0;
}

.warashibe-page h1,
.warashibe-page h2,
.warashibe-page h3,
.warashibe-page h4 {
    font-family: inherit;
    letter-spacing: normal;
    text-transform: none;
}

.warashibe-page p {
    margin-bottom: 0;
}

.warashibe-page img {
    max-width: 100%;
}

.warashibe-page a {
    transition:
        opacity .2s ease,
        transform .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   キービジュアル
   ========================================================= */

.warashibe-header {
    position: relative;

    width: 100%;

    margin: 0 0 42px;

    background: #000;

    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .18);
}

.warashibe-keyvisual {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #000;

    overflow: hidden;
}

.warashibe-keyvisual img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0;

    border: 0;

    object-fit: cover;
}

.warashibe-keyvisual::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 78%;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, .05) 12%,
            rgba(0, 0, 0, .30) 35%,
            rgba(0, 0, 0, .72) 65%,
            rgba(0, 0, 0, .96) 100%
        );

    pointer-events: none;
}


/* =========================================================
   キービジュアル上のタイトル
   ========================================================= */

.warashibe-title {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 48px 35px 30px;

    text-align: center;

    color: #fff;
}

.warashibe-title h1 {
    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: clamp(28px, 4.2vw, 46px) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;

    letter-spacing: .02em !important;

    text-align: center !important;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, .9),
        0 4px 15px rgba(0, 0, 0, .65);
}

.warashibe-lead {
    margin: 12px 0 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.7 !important;

    text-align: center !important;

    text-shadow:
        0 1px 4px rgba(0, 0, 0, .8);
}


/* =========================================================
   現在の状況
   ========================================================= */

.warashibe-current {
    position: relative;

    display: grid;

    grid-template-columns:
        155px
        minmax(0, 1fr)
        200px;

    width: 100%;

    margin: 0 0 50px;

    border: 2px solid var(--roger-orange);

    border-radius: 10px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 5px 22px rgba(0, 0, 0, .08),
        0 0 0 4px rgba(228, 91, 22, .06);
}



/* =========================================================
   交換回数
   ========================================================= */

.current-count {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 125px;

    padding: 20px 10px;

    background:
        linear-gradient(
            145deg,
            var(--roger-orange),
            var(--roger-orange-dark)
        );

    color: #fff;

    text-align: center;
}

.current-count span {
    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.3;
}

.current-count strong {
    display: block;

    margin: 4px 0 !important;
    padding: 0;

    color: #fff !important;

    font-size: 50px !important;
    font-weight: 900 !important;

    line-height: 1 !important;
}


/* =========================================================
   現在のアイテム
   ========================================================= */

.current-item {
    position: relative;

    display: flex;

    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 20px 28px;

    background:
        linear-gradient(
            90deg,
            #fff,
            #fffaf6
        );
}

.current-item::after {
    content: "交換中";

    position: absolute;

    top: 50%;
    right: 24px;

    transform: translateY(-50%);

    padding: 5px 9px;

    background: #fff0e7;

    border: 1px solid #ffd4bd;

    border-radius: 4px;

    color: var(--roger-orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .08em;
}

.current-item-title {
    margin: 0 0 4px !important;
    padding: 0 !important;

    color: var(--roger-orange) !important;

    font-size: 11px !important;
    font-weight: 900 !important;

    line-height: 1.4 !important;

    letter-spacing: .08em;
}

.current-item-title::before {
    content: "◆ ";

    color: var(--roger-orange);
}

.current-item-name {
    position: relative;

    margin: 0 !important;
    padding: 0 !important;

    padding-right: 80px !important;

    color: #111 !important;

    font-size: 25px !important;
    font-weight: 900 !important;

    line-height: 1.35 !important;

    word-break: break-word;
}

.current-item-name::after {
    content: "→";

    display: inline-block;

    margin-left: 10px;

    color: var(--roger-orange);

    font-size: .75em;
    font-weight: 900;

    transform: translateY(-1px);
}


/* =========================================================
   スタート日
   ========================================================= */

.current-start {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 125px;

    padding: 20px 15px;

    background: #fafafa;

    border-left: 1px solid var(--roger-border);

    text-align: center;
}

.current-start div {
    margin: 0 0 4px !important;
    padding: 0;

    color: #777 !important;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.4;
}

.current-start strong {
    margin: 0 !important;
    padding: 0;

    color: #222 !important;

    font-size: 17px !important;
    font-weight: 900 !important;

    line-height: 1.3 !important;
}


/* =========================================================
   交換履歴
   ========================================================= */

.warashibe-history {
    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   「交換の履歴」見出し
   ========================================================= */

.warashibe-page .warashibe-history h2 {
    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;

    margin: 0 0 28px !important;
    padding: 0 0 13px !important;

    background: transparent !important;

    border: 0 !important;
    border-bottom: 2px solid #e5e5e5 !important;

    color: #111 !important;

    font-family: inherit !important;

    font-size: 31px !important;
    font-weight: 900 !important;

    line-height: 1.35 !important;

    letter-spacing: .04em !important;

    text-align: left !important;

    text-transform: none !important;

    box-shadow: none !important;
}


/* =========================================================
   履歴見出し 左オレンジライン
   ========================================================= */

.warashibe-page .warashibe-history h2::before {
    content: "";

    display: block;

    width: 8px;
    height: 38px;

    flex: 0 0 8px;

    background:
        linear-gradient(
            to bottom,
            var(--roger-orange) 0%,
            #ff9b5e 50%,
            var(--roger-orange-dark) 100%
        );

    border-radius: 2px;

    box-shadow: none !important;
}


/* =========================================================
   HISTORY 英字
   ========================================================= */

.warashibe-page .warashibe-history h2::after {
    content: "WARASHIBE HISTORY";

    margin-left: auto;

    color: #b7b7b7;

    font-size: 10px !important;
    font-weight: 800 !important;

    line-height: 1 !important;

    letter-spacing: .12em;

    box-shadow: none !important;
}


/* =========================================================
   交換カード
   ========================================================= */

.warashibe-exchange {
    position: relative;

    width: 100%;

    margin: 0 0 20px !important;

    padding: 21px 22px 20px !important;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffdfb 100%
        ) !important;

    border: 1px solid #dedede !important;

    border-radius: 8px !important;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .055);

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   上部オレンジライン
   ========================================================= */

.warashibe-exchange::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--roger-orange) 0%,
            #f6a16e 45%,
            var(--roger-orange) 100%
        );
}


/* =========================================================
   ホバー
   ========================================================= */

.warashibe-exchange:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .09);
}


/* =========================================================
   交換番号
   ========================================================= */

.exchange-number {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 78px;

    height: 27px;

    margin: 0 auto 14px !important;

    padding: 0 12px !important;

    background:
        linear-gradient(
            135deg,
            #111 0%,
            #272727 100%
        ) !important;

    border-radius: 4px;

    color: #fff !important;

    font-size: 11px !important;
    font-weight: 900 !important;

    line-height: 1 !important;

    letter-spacing: .03em;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, .12);
}

.exchange-number::before {
    content: "第";

    margin-right: 2px;

    color: #ffbf00 !important;
}

.exchange-number::after {
    content: " 回交換";

    margin-left: 2px;

    color: #fff !important;
}


/* =========================================================
   交換前 → 交換後
   ========================================================= */

.exchange-items {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        55px
        minmax(0, 1fr);

    align-items: center;

    gap: 18px;

    width: 100%;
}


/* =========================================================
   各アイテム
   ========================================================= */

.exchange-item {
    position: relative;

    min-width: 0;

    text-align: center;
}


/* =========================================================
   交換前・交換後ラベル
   ========================================================= */

.exchange-label {
    margin: 0 0 8px !important;
    padding: 0 !important;

    color: var(--roger-orange) !important;

    font-size: 10px !important;
    font-weight: 900 !important;

    line-height: 1.4 !important;

    letter-spacing: .08em;
}


/* 交換前 */

.exchange-item:first-child .exchange-label {
    display: inline-flex;

    align-items: center;

    padding: 4px 9px !important;

    background: #f1f1f1;

    border-radius: 3px;

    color: #666 !important;
}


/* 交換後 */

.exchange-item:last-child .exchange-label {
    display: inline-flex;

    align-items: center;

    padding: 4px 11px !important;

    background: var(--roger-orange);

    border-radius: 3px;

    color: #fff !important;
}


/* =========================================================
   商品画像
   ========================================================= */

.exchange-image {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 170px;

    margin: 0 !important;

    padding: 10px;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #f6f5f2 65%,
            #eeeeeb 100%
        );

    border: 1px solid #dcdcdc;

    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.8);
}

.exchange-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    object-fit: contain;

    transition:
        transform .25s ease;
}


/* 交換後を強調 */

.exchange-item:last-child .exchange-image {
    border: 2px solid rgba(228, 91, 22, .35);

    box-shadow:
        0 4px 12px rgba(228, 91, 22, .10),
        inset 0 0 0 1px rgba(255,255,255,.8);
}


/* =========================================================
   画像ホバー
   ========================================================= */

.warashibe-exchange:hover .exchange-image img {
    transform: scale(1.025);
}


/* =========================================================
   アイテム名
   ========================================================= */

.exchange-name {
    margin: 10px 0 0 !important;
    padding: 0 !important;

    color: #222 !important;

    font-size: 16px !important;
    font-weight: 900 !important;

    line-height: 1.45 !important;

    word-break: break-word;
}

.exchange-item:last-child .exchange-name {
    color: #111 !important;

    font-size: 18px !important;

    text-shadow:
        0 1px 0 #fff;
}


/* =========================================================
   中央の交換矢印
   ========================================================= */

.exchange-arrow {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin: 0;
    padding: 0;

    background:
        linear-gradient(
            135deg,
            #fff0e6,
            #ffe5d5
        );

    border: 2px solid rgba(228, 91, 22, .25);

    border-radius: 50%;

    color: var(--roger-orange) !important;

    font-size: 0 !important;

    font-weight: 900 !important;

    line-height: 1 !important;

    box-shadow:
        0 3px 10px rgba(228, 91, 22, .10);
}


/* 矢印本体 */

.exchange-arrow::before {
    content: "→";

    color: var(--roger-orange) !important;

    font-size: 29px !important;

    font-weight: 900;

    line-height: 1;
}


/* 「交換」 */

.exchange-arrow::after {
    content: "交換";

    position: absolute;

    left: 50%;
    bottom: -18px;

    transform: translateX(-50%);

    color: #999;

    font-size: 7px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: .08em;
}


/* =========================================================
   交換の様子
   ========================================================= */

.exchange-photo {
    position: relative;

    width: 100%;
    max-width: 650px;

    margin: 22px auto 0 !important;

    padding-top: 18px;

    border-top: 1px dashed #dcdcdc;
}


/* =========================================================
   交換の様子ラベル
   ========================================================= */

.exchange-photo > .exchange-label {
    display: flex;

    align-items: center;

    margin-bottom: 8px !important;

    color: #555 !important;

    font-size: 10px !important;
    font-weight: 900 !important;

    text-align: left !important;

    letter-spacing: .08em;
}

.exchange-photo > .exchange-label::before {
    content: "●";

    margin-right: 6px;

    color: var(--roger-orange);

    font-size: 8px;
}


/* =========================================================
   写真
   ========================================================= */

.exchange-photo-image {
    width: 100%;

    margin: 0;
    padding: 0;

    background: #f3f3f3;

    border-radius: 5px;

    overflow: hidden;
}

.exchange-photo-image img {
    display: block;

    width: 100%;
    height: 260px;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}


/* =========================================================
   交換した人 + 動画
   ========================================================= */

.exchange-photo-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin: 9px 0 0;
    padding: 0;

    gap: 10px;
}


/* =========================================================
   交換した人
   ========================================================= */

.exchange-person {
    display: flex;

    align-items: center;

    flex: 1;

    min-width: 0;
    min-height: 40px;

    margin: 0;
    padding: 8px 12px;

    background:
        linear-gradient(
            90deg,
            #f5f5f5,
            #fafafa
        );

    border-left: 4px solid var(--roger-orange);

    border-radius: 2px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8);
}

.exchange-person span {
    flex: 0 0 auto;

    margin: 0 8px 0 0 !important;
    padding: 0;

    color: #777 !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;

    white-space: nowrap;
}

.exchange-person span::before {
    content: "👤 ";

    font-size: 10px;
}

.exchange-person strong {
    min-width: 0;

    margin: 0 !important;
    padding: 0;

    color: #222 !important;

    font-size: 13px !important;
    font-weight: 900 !important;

    line-height: 1.4 !important;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   動画を見るボタン
   ========================================================= */

.exchange-video-button {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 160px;

    width: 160px;
    height: 40px;

    margin: 0 !important;
    padding: 0 12px !important;

    background:
        linear-gradient(
            135deg,
            #111,
            #2b2b2b
        ) !important;

    border: 1px solid #000 !important;

    border-radius: 4px !important;

    color: #fff !important;

    font-size: 11px !important;
    font-weight: 900 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, .15);
}

.exchange-video-button::after {
    content: "交換の瞬間";

    margin-left: 6px;

    color: #aaa;

    font-size: 8px;
    font-weight: 700;
}

.exchange-video-button:hover {
    background: var(--roger-orange) !important;

    color: #fff !important;

    opacity: 1 !important;

    transform: translateY(-1px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, .15);
}


/* =========================================================
   再生アイコン
   ========================================================= */

.video-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    margin: 0 7px 0 0;

    border-radius: 50%;

    background: var(--roger-orange);

    color: #fff !important;

    font-size: 7px !important;

    line-height: 1 !important;
}


/* =========================================================
   最初の交換カードを少し強調
   ========================================================= */

.warashibe-exchange:first-of-type {
    border-color: rgba(228, 91, 22, .35) !important;
}


/* =========================================================
   スマートフォン
   ========================================================= */

@media (max-width: 767px) {

    .warashibe-page {
        width: 100%;
        padding: 0;
    }


    /* =====================================================
       キービジュアル
       ===================================================== */

    .warashibe-header {
        margin-bottom: 28px;

        border-radius: 7px;
    }

    .warashibe-keyvisual {
        aspect-ratio: 4 / 3;
    }

    .warashibe-title {
        padding: 30px 12px 17px;
    }

    .warashibe-title h1 {
        font-size: 27px !important;
        line-height: 1.2 !important;
    }

    .warashibe-lead {
        margin-top: 8px !important;

        font-size: 11px !important;
        line-height: 1.6 !important;
    }


    /* =====================================================
       現在の状況
       ===================================================== */

    .warashibe-current {
        grid-template-columns:
            95px
            minmax(0, 1fr);

        margin-bottom: 35px;

        border-radius: 7px;
    }

    .warashibe-current::before {
        left: 10px;

        height: 19px;

        padding: 0 7px;

        font-size: 7px;
    }

    .current-count {
        min-height: 105px;

        padding: 14px 8px;
    }

    .current-count strong {
        font-size: 38px !important;
    }

    .current-count span {
        font-size: 9px;
    }

    .current-item {
        padding: 14px;
    }

    .current-item::after {
        display: none;
    }

    .current-item-title {
        font-size: 9px !important;
    }

    .current-item-name {
        padding-right: 0 !important;

        font-size: 17px !important;

        line-height: 1.35 !important;
    }

    .current-start {
        grid-column: 1 / 3;

        min-height: auto;

        padding: 10px;

        border-left: 0;
        border-top: 1px solid var(--roger-border);
    }

    .current-start strong {
        font-size: 15px !important;
    }


    /* =====================================================
       履歴見出し
       ===================================================== */

    .warashibe-page .warashibe-history h2 {
        gap: 9px;

        margin-bottom: 18px !important;
        padding-bottom: 9px !important;

        font-size: 22px !important;
    }

    .warashibe-page .warashibe-history h2::before {
        width: 5px;
        height: 28px;

        flex: 0 0 5px;
    }

    .warashibe-page .warashibe-history h2::after {
        font-size: 8px !important;

        letter-spacing: .08em;
    }


    /* =====================================================
       交換カード
       ===================================================== */

    .warashibe-exchange {
        margin-bottom: 14px !important;

        padding: 13px 8px 14px !important;

        border-radius: 6px !important;
    }

    .warashibe-exchange::after {
        display: none;
    }

    .exchange-number {
        min-width: 68px;

        width: auto;

        height: 24px;

        margin-bottom: 10px !important;

        padding-left: 8px !important;
        padding-right: 8px !important;

        font-size: 10px !important;
    }

    .exchange-number::after {
        content: "回";
    }


    /* =====================================================
       交換アイテム
       ===================================================== */

    .exchange-items {
        grid-template-columns:
            minmax(0, 1fr)
            28px
            minmax(0, 1fr);

        gap: 4px;
    }

    .exchange-label {
        margin-bottom: 5px !important;

        font-size: 9px !important;
    }

    .exchange-item:first-child .exchange-label,
    .exchange-item:last-child .exchange-label {
        padding: 3px 6px !important;
    }

    .exchange-image {
        height: 105px;

        padding: 6px;

        border-radius: 4px;
    }

    .exchange-name {
        margin-top: 6px !important;

        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .exchange-item:last-child .exchange-name {
        font-size: 12px !important;
    }


    /* =====================================================
       矢印
       ===================================================== */

    .exchange-arrow {
        width: 28px;
        height: 28px;

        border-width: 1px;

        font-size: 0 !important;
    }

    .exchange-arrow::before {
        font-size: 18px !important;
    }

    .exchange-arrow::after {
        display: none;
    }


    /* =====================================================
       交換写真
       ===================================================== */

    .exchange-photo {
        margin-top: 15px !important;

        padding-top: 13px;
    }

    .exchange-photo > .exchange-label {
        margin-bottom: 6px !important;

        font-size: 9px !important;
    }

    .exchange-photo-image img {
        height: 150px;
    }


    /* =====================================================
       下部
       ===================================================== */

    .exchange-photo-bottom {
        gap: 6px;
    }

    .exchange-person {
        min-height: 32px;

        padding: 6px 8px;
    }

    .exchange-person span {
        margin-right: 5px !important;

        font-size: 8px !important;
    }

    .exchange-person span::before {
        font-size: 8px;
    }

    .exchange-person strong {
        font-size: 10px !important;
    }

    .exchange-video-button {
        flex: 0 0 115px;

        width: 115px;
        height: 32px;

        padding: 0 7px !important;

        font-size: 9px !important;
    }

    .exchange-video-button::after {
        display: none;
    }

    .video-icon {
        width: 17px;
        height: 17px;

        margin-right: 5px;

        font-size: 6px !important;
    }
}


/* =========================================================
   かなり小さいスマートフォン
   ========================================================= */

@media (max-width: 420px) {

    .warashibe-page {
        padding-left: 7px;
        padding-right: 7px;
    }

    .warashibe-current::before {
        display: none;
    }

    .warashibe-title h1 {
        font-size: 24px !important;
    }

    .warashibe-lead {
        font-size: 10px !important;
    }

    .current-count {
        padding-left: 5px;
        padding-right: 5px;
    }

    .current-count strong {
        font-size: 34px !important;
    }

    .current-item {
        padding: 12px 10px;
    }

    .current-item-name {
        font-size: 15px !important;
    }

    .warashibe-page .warashibe-history h2 {
        font-size: 20px !important;
    }

    .warashibe-page .warashibe-history h2::after {
        display: none;
    }

    .exchange-number {
        min-width: 62px;

        height: 23px;
    }

    .exchange-image {
        height: 90px;
    }

    .exchange-name {
        font-size: 10px !important;
    }

    .exchange-item:last-child .exchange-name {
        font-size: 10px !important;
    }

    .exchange-photo-image img {
        height: 125px;
    }

    .exchange-video-button {
        flex-basis: 105px;

        width: 105px;
    }
}


/* =========================================================
   WordPressテーマによる見出し装飾を抑制
   ========================================================= */

.warashibe-page .warashibe-history h2::before,
.warashibe-page .warashibe-history h2::after {
    box-shadow: none !important;
}

.warashibe-page .warashibe-history h2:first-child {
    margin-top: 0 !important;
}


/* =========================================================
   テーマによる画像・リンク装飾を抑制
   ========================================================= */

.warashibe-page .warashibe-keyvisual img,
.warashibe-page .exchange-image img,
.warashibe-page .exchange-photo-image img {
    border-radius: 0 !important;

    box-shadow: none !important;
}

.warashibe-page .exchange-video-button,
.warashibe-page .exchange-video-button:hover,
.warashibe-page .exchange-video-button:focus,
.warashibe-page .exchange-video-button:visited {
    text-decoration: none !important;
}


/* =========================================================
   印刷時
   ========================================================= */

@media print {

    .warashibe-page {
        max-width: none;

        padding: 0;
    }

    .warashibe-exchange {
        break-inside: avoid;

        box-shadow: none;
    }

    .warashibe-header {
        box-shadow: none;
    }

    .exchange-video-button {
        display: none;
    }
}