<br />
<b>Deprecated</b>:  The each() function is deprecated. This message will be suppressed on further calls in <b>/home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php</b> on line <b>456</b><br />
/* ポップアップオーバーレイのスタイル */
.pff-popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* bg-black bg-opacity-50 */
    align-items: center;
    /* items-center */
    justify-content: center;
    /* justify-center */
    padding: 1rem;
    /* p-4 */
    z-index: 9999;
    /* z-[9999] */

    /* 初期状態の非表示設定 */
    opacity: 0;
    pointer-events: none;
    display: flex;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* ポップアップ表示状態 */
.pff-popup-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    /* display: flex; はis-active時に適用されるように変更 */
}

/* ポップアップコンテンツのスタイル */
.pff-popup-content {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* overflow: hidden; */
    padding: 0 !important;
    position: relative;
    width: 100%;
    max-width: 1100px;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
    /* ★追加: borderをpaddingのように扱う */
}

/* ポップアップ表示時コンテンツのスケール */
.pff-popup-overlay.is-active .pff-popup-content {
    transform: scale(1);
    border: 10px solid #e62d8b;
}

/* ポップアップ閉じるボタンのスタイル */
.pff-popup-close-button {
    position: absolute;
    /* topとrightの調整は、paddingかborderの分だけ外側に出るように */
    top: -1.8rem;
    /* ★調整: topをマイナス値にして上にずらす */
    right: -1.8rem;
    /* ★調整: rightをマイナス値にして右にずらす */
    color: #e62d8b;
    font-size: 4.25rem;
    outline: none;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    /* ★修正: line-heightを適切な値にする。0emだとセンタリングがおかしくなる場合がある */
    display: flex;
    /* ★追加: flexboxで中央揃えしやすくする */
    align-items: center;
    /* ★追加 */
    justify-content: center;
    /* ★追加 */
    width: 2em;
    /* ★追加: ボタンのエリアを確保 */
    height: 2em;
    /* ★追加: ボタンのエリアを確保 */
}

.pff-popup-close-button:hover {
    color: #E5E7EB;
}

/* @mediaクエリ内の閉じるボタンのスタイルも調整 */
@media (max-width: 768px) {
    .pff-popup-content {
        /* paddingの調整が必要ならここに */
    }

    .pff-popup-close-button {
        font-size: 6.35rem;
        /* より大きく */
        top: -4.5rem;
        /* ★調整: モバイルでさらに上に */
        right: -3.9rem;
        /* ★調整: モバイルでさらに右に */
        /* widthとheightも調整しても良いかもしれません */
    }
}

/* その他のスタイルはそのまま */
.pff-popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pff-popup-image {
    /* width: 620px; */
    height: 24rem;
    object-fit: cover;
    padding:  2rem;
}

.pff-popup-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .pff-popup-title {
        font-size: 2.25rem;
    }

    .red_box p.news {
        font-size: 3rem;
    }
}

.pff-popup-subtitle {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pff-popup-subtitle {
        font-size: 2.6rem;
    }
}

.pff-popup-button {
    display: inline-flex;
    align-items: center;
    background-color: #f3bb06;
    color: #000000;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    font-size: 1.125rem;
    text-decoration: none;
    display: flex !important;
    margin: auto;
    justify-content: center;
    column-fill: balance;
    WIDTH: 60%;
}

.red_box {
    background: #e62d8b;
    width: 100%;
    padding: 1em 1em;
    position: relative;
}

img.pff-popup-image {}

i.fas.fa-chevron-right.arrows02 {
    width: 25px;
    height: 25px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #ffffff;
    color: #f3bb06;
    margin-left: 0.5em;
    font-size: 0.7em;
}

.pff-popup-button:hover {
    background-color: #FBBF24;
}

.pff-popup-button-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.red_box {
    background: #e62d8b;
    width: 100%;
    padding: 1em 1em;
    position: relative;
}

.pff-popup-inner {
    /* width: 720px; */
}

.red_box p.news {
    position: absolute;
    left: 0.3em;
    top: 0.2em;
    transform: translate(0px, -100%);
    font-size: 4rem;
    color: #e62d8b;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
}

i.fas.fa-chevron-right.arrows02 {
    width: 30px;
    height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #ffffff;
    color: #f3bb06;
    margin-left: 0.5em;
    font-size: 0.8em;
    transform: translate(1px, 0);
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    img.pff-popup-image {
        /* width: 90%;
        padding-top: 3rem;
        padding-bottom: 2em; */
    }

    .pff-popup-overlay.is-active .pff-popup-content {
        width: 90%;
        border: 8px solid #e62d8b;
        max-width: inherit !important;
    }
}






/* ポップアップオーバーレイのスタイル */
.pff-popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* bg-black bg-opacity-50 */
    align-items: center;
    /* items-center */
    justify-content: center;
    /* justify-center */
    padding: 1rem;
    /* p-4 */
    z-index: 9999;
    /* z-[9999] */

    /* 初期状態の非表示設定 */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
    /* 初期状態はdisplay: none; にする */

    /* トランジション */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* ポップアップ表示状態 */
.pff-popup-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    display: flex;
    /* ここでdisplay: flex; を有効にする */
    padding: 0;
}

/* ポップアップコンテンツのスタイル */
.pff-popup-content {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* overflow: hidden; */
    padding: 0 !important;
    position: relative;
    width: 600px;
    /* height: 90%; */
    /* max-width: 1100px; */
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
    /* borderをpaddingのように扱う */
    /* overflow-y: scroll; */
}

.pff-popup-content iframe {
    width: 100%;
    border-radius: 6px;
}

/* ポップアップ表示時コンテンツのスケール */
.pff-popup-overlay.is-active .pff-popup-content {
    transform: scale(1);
    border: 10px solid #e62d8b;
}

/* ポップアップ閉じるボタンのスタイル */
.pff-popup-close-button {
    position: absolute;
    top: -3rem;
    /* 調整: topをマイナス値にして上にずらす */
    right: -1rem;
    /* 調整: rightをマイナス値にして右にずらす */
    color: #e62d8b;
    font-size: 4.25rem;
    outline: none;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    /* 修正: line-heightを適切な値にする */
    display: flex;
    /* flexboxで中央揃えしやすくする */
    align-items: center;
    justify-content: center;
    width: auto;
    /* ボタンのエリアを確保 */
    height: auto;
    /* ボタンのエリアを確保 */
    line-height: 0;
}

.pff-popup-close-button:hover {
    color: #E5E7EB;
}


@media (max-width: 768px) {
    .pff-popup-close-button {
        font-size: 3.85rem;
        top: -10vw;
        /* モバイルでさらに上に */
        right: -1vw;
        /* モバイルでさらに右に */
    }

    .pff-popup-content iframe {
        border-radius: 10px;
    }
}

/* ポップアップ内部コンテンツラッパーのスタイル */
.pff-popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* height: 100%; */
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ポップアップメイン画像のスタイル */
.pff-popup-image {
    /* width: 380px; */
    object-fit: cover;
    /* padding: 4rem 0; */
}

/* ポップアップタイトルのスタイル (PFF アワード 2025) */
.pff-popup-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .pff-popup-title {
        font-size: 7vw;
    }
}

/* ポップアップサブタイトルのスタイル (入選作品決定!!) */
.pff-popup-subtitle {
    color: #ffffff;
    font-size: 2.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .red_box p.news {
        font-size: 9vw;
    }


    /*@media (min-width: 768px) and (max-width: 1100px) {
.pff-popup-button {
    font-size: 4vw;
}
}*/


    /* ポップアップボタンのスタイル (もっと詳しく知る) */
    .pff-popup-button {
        display: inline-flex;
        align-items: center;
        background-color: #f3bb06;
        color: #000000;
        font-weight: 700;
        padding: 0.75rem 2rem;
        border-radius: 9999px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease-in-out;
        font-size: 1.125rem;
        text-decoration: none;
    }

    .red_box {
        background: #e62d8b;
        width: 100%;
        padding: 1em 1em;
        height: auto;
    }

    img.pff-popup-image {}

    i.fas.fa-chevron-right.arrows02 {
        width: 30px;
        height: 30px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        background: #ffffff;
        color: #f3bb06;
        margin-left: 0.5em;
    }

    .pff-popup-button:hover {
        background-color: #FBBF24;
    }

    /* ポップアップボタンアイコンのスタイル */
    .pff-popup-button-icon {
        width: 1rem;
        height: 1rem;
        margin-left: 0.5rem;
    }

    .red_box {
        background: #e62d8b;
        width: 100%;
        padding: 1em 1em;
        position: relative;
    }

    .pff-popup-inner {
        /* width: 720px; */
        font-family: "RocknRoll One", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .red_box p.news {
        position: absolute;
        left: 0.3em;
        top: 0.2em;
        transform: translate(0px, -100%);
        font-size: 3rem;
        color: #e62d8b;
        line-height: 1em;
        font-weight: bold;
        text-transform: uppercase;
    }

    i.fas.fa-chevron-right.arrows02 {
        width: 5vw;
        height: 5vw;
        border-radius: 100px;
        background: #ffffff;
        color: #f3bb06;
        margin-left: 0.5em;
        font-size: 0.8em;
        transform: translate(1px, 0);
        position: relative;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    img.pff-popup-image {
        max-height: 60vw;
        /* width: 90%;
        padding-top: 4.5rem;
        padding-bottom: 4em; */
    }

    .pff-popup-overlay.is-active .pff-popup-content {
        width: 90%;
        border: 7px solid #e62d8b;
    }

    .pff-popup-subtitle {
        font-size: 6vw;
    }

    .red_box p.news {
        font-size: 9vw;
    }

    .pff-popup-button {
        font-size: 4vw;
        width: 64vw;
        display: flex !important;
        margin: auto;
        justify-content: center;
        column-fill: balance;
    }
}

  /* ポップアップ テキスト画像 */
.pff-popup-txtimg {
    width: 20rem;
    margin: auto;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .pff-popup-txtimg {
        width: 85%
    }
}