@charset "UTF-8";

/* ===============================================
   共通スタイル
   =============================================== */
:root {
    --inner-width: 1200px;
    --side-padding: 20px;
    --section-padding-block: 53px;
    --section-padding-block-sm: 34px;
    --color-acafe: #e66c00;
    --color-black: #070506;
    --cp-font-body-color: #070506;
    --color-dark-gray: #585755;
    --color-gray: #929493;
    --color-light-gray: #dddddd;
    --color-white: #ffffff;
    --color-sepia: #F8EBDE;
    --cp-font-body: 'Noto Sans JP', sans-serif;
    --font-size-base: clamp(16px, 2vw, 20px);
    --font-size-m: clamp(18px, 2.5vw, 22px);
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --transition-primary: 0.3s ease;
    --opacity-hover: .7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--cp-font-body);
    color: var(--cp-font-body-color);
    background-color: var(--cp-color-white);
    margin: 0;
    overflow-x: hidden;
    min-width: inherit;
}

#cp-page {
    position: relative;
    font-family: var(--cp-font-body);
    font-size: var(--font-size-base);
    font-feature-settings: "palt";
    line-height: 1.75;
    letter-spacing: .05em;
    color: var(--cp-font-body-color);
    font-weight: 500;
    overflow-x: hidden;
}

#cp-page img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#cp-page button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding: 0;
}

#cp-page .link-text {
    text-decoration: underline !important;
    text-underline-offset: 4px;
    opacity: 1;
    transition: opacity var(--transition-primary);
}

#cp-page .link-text:hover {
    opacity: var(--opacity-hover);
}

#cp-page .link-text[target=_blank]::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("../images/icon_blank.svg");
    background-repeat: no-repeat;
    transform: translateY(2px);
    margin-inline-start: 4px;
    color: #000;
}

#cp-page .inner {
    max-width: var(--inner-width);
    margin-inline: auto;
    padding-inline: var(--side-padding);
}

#cp-page .bg {
    background: var(--color-white);
    padding: clamp(24px, 4vw, 32px);
    margin-bottom: 30px;
    border: 1px solid #e2ddd0;
    border-radius: 3px;
}

#cp-page h2 {
    font-family: "BIZ UDPMincho", serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 4px;
    text-align: center;
    margin: 0 0 12px;
}

#cp-page .sp-only {
    display: block;
}

#cp-page .sp-none {
    display: none;
}

#cp-page .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#cp-page .cp-text-red {
    color: var(--color-acafe);
    font-weight: bold;
    letter-spacing: 0;
}

.cp-button,
.cp-button-finish {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
    padding: 11px 24px 10px;
    background: var(--color-acafe) !important;
    color: white !important;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s;
    column-gap: 24px;
    box-sizing: border-box;
    opacity: 1;
}

.cp-button::after {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12'%3E%3Cpath d='M1 1L6 6L1 11' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.cp-button:hover,
.cp-button:focus-visible {
    opacity: var(--opacity-hover);
}

@media (width >=768px) {
    #cp-page h2 {
        margin-bottom: 24px;
    }

    #cp-page .sp-only {
        display: none;
    }

    #cp-page .sp-none {
        display: block;
    }

    #cp-page .bg {
        padding: 38px 40px;
    }
}

@media (width >=1100px) {
    #cp-page .bg {
        padding: 48px 64px;
    }
}

/* ===============================================
   02. メインビジュアル
   =============================================== */
.mv {
    background: var(--color-black);
}

.mv img {
    display: block;
    width: min(100%, 1400px);
    margin-inline: auto;
}

/* ===============================================
   03. タブパネル
   =============================================== */
.tabs {
    background: var(--color-black);
}

.tabList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--inner-width);
    /* padding-inline: var(--side-padding); */
    margin-inline: auto;
    position: relative;
    border-bottom: 1px solid #e2ddd0;
}

.tab {
    font-size: var(--font-size-m);
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    position: relative;
    padding-block: clamp(20px, 3vw, 27px) clamp(5px, 1vw, 6px);
    color: rgba(70, 74, 80, 1);
}

.tab[aria-selected=true] {
    color: var(--color-white);
    letter-spacing: 3px;
}

.tab[aria-selected=true]::after {
    content: "";
    height: 3px;
    position: absolute;
    inset: auto 4px -1px 0;
    background: var(--color-gray);
}

.tab:disabled {
    cursor: not-allowed;
}

.tabpanel {
    display: none;
}

.tabpanel:not([hidden]) {
    display: block;
}

@media (width >=768px) {
    .tab {
        font-size: 26px;
        padding: 28px 16px 14px !important;
    }

    .tab[aria-selected=true]::after {
        height: 6px;
    }
}

/* ===============================================
   応募ボタン (タブ内 & ページ下部)
   =============================================== */
.apply-button {
    background: var(--color-black);
    padding-block: 40px;
}

.apply-button .cp-button-text {
    text-align: center;
    padding-bottom: 16px;
    color: var(--color-white);
}

.apply-button .link-text {
    color: var(--color-acafe) !important;
}

.apply-button-box {
    display: grid;
    gap: 16px;
}

.apply-button .notice p small {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    text-align: center;
}

@media (width >=768px) {
    #cp-page .apply-button-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 744px;
        margin-inline: auto;
    }

    #cp-page .apply-button .cp-button {
        flex-grow: 0;
        flex-shrink: 0;
        width: 100%;
        max-width: 360px;
    }
}

/* ===============================================
   04. 審査員 & 05. GUEST
   =============================================== */
#judge {
    background: var(--color-sepia);
    padding-block: var(--section-padding-block-sm) 42px;
}

#judge .judge-main {
    margin-bottom: 20px;
}

#judge .judge-main .judge-image {
    display: block;
    margin-inline: auto;
    margin-bottom: 20px;
    width: 200px;
    height: auto;
}

#judge .judge-profile b,
#judge .judge-guest-text b {
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2px;
}

#judge .judge-profile strong,
#judge .judge-guest-text strong {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}

#judge .judge-profile p {
    margin: 0;
}

#judge .judge-comment {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 16px;
    border: 2px solid var(--color-black);
    border-radius: 8px;
    background: var(--color-sepia);
}

#judge .judge-comment p {
    margin: 0;
}

#judge .judge-guest-text .guest-logo {
    width: min(100%, 400px);
    height: auto;
    padding-bottom: 10px;
}

#judge .judge-guest-text p {
    margin-top: 1rem;
}

#judge .judge-guest-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-inline: auto;
    padding-top: 1rem;
}

#judge .judge-guest-image img {
    box-shadow: var(--shadow);
    transition: opacity var(--transition-primary);
}

#judge .judge-guest-image a:hover img {
    opacity: var(--opacity-hover);
}

@media (width >=768px) {
    #judge {
        padding-block: var(--section-padding-block) 60px;
    }

    #judge .judge-main {
        display: grid;
        grid-template-columns: 200px 1fr;
        column-gap: 32px;
        align-items: center;
        margin-bottom: 0;
    }

    #judge .judge-main .judge-image {
        margin-bottom: 0;
    }

    #judge .judge-profile b,
    #judge .judge-guest-text b {
        font-size: 20px;
    }

    #judge .judge-profile strong,
    #judge .judge-guest-text strong {
        font-size: 26px;
        letter-spacing: 4px;
    }

    #judge .judge-comment {
        margin-top: calc(20px + 1rem);
    }

    #judge .judge-comment::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 9.3%;
        border-style: solid;
        border-width: 0 10px 20px 10px;
        border-color: transparent transparent var(--color-black);
        translate: -50% 0;
    }

    #judge .judge-comment::after {
        content: "";
        position: absolute;
        top: -15px;
        left: 9.3%;
        border-style: solid;
        border-width: 0 8px 16px 8px;
        border-color: transparent transparent var(--color-sepia);
        translate: -50% 0;
    }

    #judge .judge-guest {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    #judge .judge-guest-text {
        flex: 1;
    }

    #judge .judge-guest-image {
        width: 200px;
        flex-shrink: 0;
        padding-top: 46px;
        padding-left: 20px;
    }
}

/* ===============================================
   06. おすすめレンズ
   =============================================== */
#lens {
    padding-block: var(--section-padding-block-sm) 60px;
    background: var(--color-black);
}

#lens h2 {
    color: var(--color-white);
}

#lens .lensItem-article dl,
#lens .lensItem-article dd {
    margin: 0;
}

#lens .lensItem-article dt {
    font-size: var(--font-size-base);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    background: var(--color-gray);
    padding-block: 10px;
    border-radius: 3px;
    color: var(--color-white);
}

#lens .lensItem-image {
    display: grid;
    gap: 30px;
    text-align: center;
    margin-top: 20px;
}

#lens .lensItem-image a {
    transition: opacity var(--transition-primary);
}

#lens .lensItem-image a:hover {
    opacity: var(--opacity-hover);
}

#lens .lensItem-image figure {
    margin: 0;
}

#lens .lensItem-image figcaption {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}

/* #lens .lensItem-image img {
    box-shadow: var(--shadow);
} */

#lens .lens-links {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 16px;
}

#lens .lens-links .linkButton {
    opacity: 1;
    transition: opacity var(--transition-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.75;
    color: var(--color-white);
    border: 2px solid var(--color-dark-gray);
    border-radius: 3px;
    padding: 9px 20px 8px;
    background: var(--color-gray);
    box-shadow: var(--shadow);
}

#lens .lens-links .linkButton:hover {
    opacity: var(--opacity-hover);
}

#lens .lens-links .linkButton[target=_blank]::after {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("../images/icon_blank_white.svg");
    background-repeat: no-repeat;
}

@media (width >=768px) {
    #lens {
        padding-block: var(--section-padding-block) 60px;
    }

    #lens .lensItem-image {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (width >=1100px) {
    #lens .lens-links {
        grid-template-columns: repeat(3, auto);
        gap: 20px;
        justify-content: center;
    }
}


/* ===============================================
   07. 賞品
   =============================================== */
#prize {
    background: var(--color-sepia);
    padding-block: var(--section-padding-block-sm) 40px;
}

#prize .prize-wrapper {
    max-width: 880px;
    background: var(--color-white);
    padding: 28px 16px 32px;
    margin-inline: auto;
    border: 1px solid var(--color-light-gray);
    border-radius: 3px;
}

#prize .prize-wrapper>strong {
    display: block;
    padding: 16px;
    margin-bottom: 20px;
    background: var(--color-sepia);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    border-radius: 3px;
}

#prize .prize-wrapper strong span {
    display: block;
    font-size: 20px;
}

#prize .prize-wrapper .prize-title {
    margin-top: 20px;
    margin-bottom: 0;
}

#prize dl {
    position: relative;
    padding: 15px 0 18px;
    border-top: 1px solid var(--color-sepia);
    margin: 0;
}

#prize .prize-image {
    text-align: center;
    margin-top: 1.5em;
}

#prize .prize-image img {
    box-shadow: var(--shadow);
}

#prize dl:first-of-type,
#prize .prize-wrapper>strong+dl {
    border-top: none;
    padding-top: 0;
}

#prize dt {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: clamp(2px, 1vw, 4px);
    text-align: center;
    margin-bottom: 4px;
}

#prize dd {
    font-size: clamp(22px, 3vw, 26px);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: var(--color-dark-gray);
    margin: 0;
}


#prize dd span {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.5;
}

#prize dd small {
    display: block;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: normal;
    line-height: 1.75;
    text-align: left;
    margin-top: 12px;
}

#prize dl.-medium dd {
    font-size: clamp(22px, 3vw, 26px) !important;
}

#prize .link-text {
    color: var(--color-acafe) !important;
    font-weight: bold;
}

@media (width >=768px) {
    #prize {
        padding-block: var(--section-padding-block) 60px;
    }

    #prize .prize-wrapper {
        padding: 40px;
    }

    #prize dd small {
        text-align: center;

    }
}

/* ===============================================
   08. αアカデミー & 10. αcafeについて (Parallax)
   =============================================== */
.parallax {
    position: relative;
    padding: 40px var(--side-padding);
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    z-index: 0;
    box-sizing: border-box;
}

.parallax-inner {
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.parallax .acafe-logo,
.parallax .academy-logo {
    margin-bottom: 20px;
}

.parallax .parallax-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: var(--color-white);
}

.parallax .link-text {
    color: var(--color-acafe) !important;
}

#cp-page .parallax .link-text[target=_blank]::after {
    background-image: url("../images/icon_blank_white.svg");
}

#about-acafe .cp-button {
    background-color: #004097;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    background-color: var(--color-black);
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
}

#aAcademy .parallax-bg {
    background-image: url(../images/academy-pic.jpg);
}

#about-acafe .parallax-bg {
    background-image: url(../images/acafe_pic.jpg);
}

.parallax .link-text {
    color: var(--color-white) !important;
    background: var(--color-acafe);
    padding-inline: 4px;
}

@media (width >=1100px) {
    .parallax {
        padding: 70px 40px;
    }

    .parallax .academy-logo img {
        width: 300px;
        height: 86.25px;
        margin-inline: auto;
    }

    .parallax .parallax-text {
        font-size: 24px;
        line-height: 1.8;
    }
}

/* ===============================================
   09. 撮影のコツ & 過去のコンテスト
   =============================================== */
#tips-banners {
    background: var(--color-sepia);
    padding-block: var(--section-padding-block-sm) 40px;
}

#past-contests-banners {
    background: var(--color-white);
    padding-block: var(--section-padding-block-sm) 40px;
}

#tips-banners .banners,
#past-contests-banners .banners {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    justify-content: center;
    gap: 20px;
}

#tips-banners .banners a,
#past-contests-banners .banners a {
    display: block;
    opacity: 1;
    transition: opacity var(--transition-primary);
}

#tips-banners .banners a:hover,
#past-contests-banners .banners a:hover {
    opacity: var(--opacity-hover);
}

#tips-banners .banners img,
#past-contests-banners .banners img {
    box-shadow: var(--shadow);
}

@media (width >=768px) {

    #tips-banners .banners,
    #past-contests-banners .banners {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 32px;
    }
}

/* ===============================================
   11. 応募要項
   =============================================== */
#requirements {
    background: var(--color-sepia);
    padding-block: var(--section-padding-block-sm) 40px;
}

#requirements .accordion {
    width: min(100%, 880px);
    margin-inline: auto;
}

#requirements .accordion .toggle {
    display: none;
}

#requirements .accordion .Label {
    display: block;
    background: var(--color-white);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 3px;
    border-radius: 3px;
    padding: 14px 40px;
    margin-bottom: 14px;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow);
    transition: opacity var(--transition-primary);
}

#requirements .accordion .Label:hover {
    opacity: var(--opacity-hover);
}

#requirements .accordion .Label::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--cp-font-body-color);
    border-right: 2px solid var(--cp-font-body-color);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.4s;
}

#requirements .accordion .toggle:checked+.Label::before {
    transform: translateY(-50%) rotate(-45deg);
}

#requirements .accordion .accordion-content {
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: var(--color-white);
    margin: 0;
}

#requirements .accordion .toggle:checked+.Label+.accordion-content {
    height: auto;
    margin-block: -14px 14px;
    padding: 1.5rem;
}

#requirements .accordion-content dd {
    margin: 0;
}

#requirements .accordion-content p {
    margin: 0 0 1em;
}

#requirements .accordion-content ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin: 0 0 1em;
}

#requirements .accordion-content ol li {
    padding-left: .5em;
    margin-bottom: 1em;
    list-style-type: decimal;
}

#requirements .accordion-content dl {
    margin: 1em 0;
}

#requirements .accordion-content dt {
    font-weight: bold;
}

#requirements .accordion-content small {
    font-size: 16px;
    display: block;
    margin-top: .5em;
}

#requirements .accordion-content .link-text {
    color: #004097 !important;
}

@media (width >=768px) {
    #requirements .accordion .Label {
        font-size: 22px;
    }

    #requirements .accordion .toggle:checked+.Label+.accordion-content {
        padding: 2rem;
    }
}


/* ===============================================
   12. おすすめコンテンツ
   =============================================== */
#banners {
    background: var(--color-sepia);
    padding-block: var(--section-padding-block-sm) 40px;
}

#banners .banner-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    width: fit-content;
}

#banners .banner-list a {
    display: block;
    opacity: 1;
    transition: opacity var(--transition-primary);
}

#banners .banner-list a:hover {
    opacity: var(--opacity-hover);
}

#banners .banner-list img {
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    max-width: 380px;
}

@media (width >=768px) {
    #banners .banner-list {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        max-width: var(--inner-width);
        gap: clamp(20px, 3vw, 32px);
    }
}

/* ===============================================
   　結果発表ブロック（.result 配下）
   =============================================== */
#cp-page .result #winner-photo,
#cp-page .result #winner-movie {
    background-color: #fff;
    padding-block: 40px;
}

#cp-page .result #winner-photo h2.winner-h2,
#cp-page .result #winner-movie h2.winner-h2 {
    height: auto;
    padding-block: .2em;
    margin-bottom: 30px;
}


#cp-page .result #judge .personInfo strong+p {
    margin-bottom: 0
}

#cp-page .result .winnerBox {
    border: 1px solid #e2e2e2;
    padding: 24px 16px;
}

#cp-page .result .winnerBox.gold {
    background-image: linear-gradient(to bottom, #F0EDE4 0%, #FFFFFF 162px, #FFFFFF 100%);
}

#cp-page .result .winnerBox.gold iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

#cp-page .result .winnerBox.silver {
    background-image: linear-gradient(to bottom, #F4F4F4 0%, #FFFFFF 162px, #FFFFFF 100%);
}

#cp-page .result .winnerBox .photoBox {
    width: fit-content
}

#cp-page .result .winnerBox .mainInfo {
    margin-top: 14px
}

#cp-page .result .winnerBox .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}

#cp-page .result .winnerBox .name {
    font-size: 18px;
    color: var(--cp-font-body-color);
    margin-block: 4px 1em !important;
}

#cp-page .result .winnerBox .comment {
    width: 100%;
    margin-top: 10px;
}

#cp-page .result .winnerBox .comment dt {
    font-size: 16px;
    font-weight: bold;
}

#cp-page .result .winnerBox .comment dd {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 2px;
    margin-left: 0;
}

#cp-page .result .winnerBox+* {
    margin-top: 40px
}

#cp-page .result .winnerBox_inner {
    max-width: 800px;
    margin-inline: auto;
}

#cp-page .result .winnerHeading {
    font-size: 26px;
    line-height: 1.5;
    background-image: url("../images/icon_sparkle_black.svg"), url("../images/icon_sparkle_black.svg");
    background-size: 8px 8px;
    background-position: bottom left, bottom right;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    text-align: center;
}

#cp-page .result .winnerHeading::after {
    content: "";
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    inset: auto 12px 3px 12px;
}

#cp-page .result .winnerHeading>span {
    display: block;
    text-align: center;
}

#cp-page .result .winnerHeading .custom {
    display: block
}

#cp-page .result .winnerHeading .custom>span {
    display: block
}

#cp-page .result .winnerHeading .sm {
    display: inline-block;
    font-size: 20px;
    line-height: 1.5;
}

#cp-page .result .winnerHeading .xs {
    display: block;
    font-size: 22px;
    line-height: 1.5;
}

#cp-page .result .winnerHeading small {
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.75;
    color: var(--cp-font-body-color);
}

#cp-page .result .winnerHeading.gold {
    color: #8f7429;
    background-image: url("../images/icon_sparkle_gold.svg"), url("../images/icon_sparkle_gold.svg");
}

#cp-page .result .winnerHeading.gold::after {
    background-color: #ac8f42
}

#cp-page .result .winnerHeading.silver {
    color: #7b7b7b;
    background-image: url("../images/icon_sparkle_silver.svg"), url("../images/icon_sparkle_silver.svg");
}

#cp-page .result .winnerHeading.silver::after {
    background-color: #7b7b7b
}

#cp-page .result .photoBox {
    margin-inline: auto
}

#cp-page .result .photo {
    opacity: 1;
    transition: opacity var(--transition-primary);
    width: fit-content;
    position: relative;
    cursor: pointer;
}

#cp-page .result .photo:focus-visible {
    opacity: .7;
}

#cp-page .result .photo img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
}

#cp-page .result .zoomButton {
    display: none;
}

#cp-page .result .winnerList ul {
    display: grid;
    gap: 32px 16px;
    list-style: none;
    padding: 0 !important;
}

#cp-page .result .winnerList li {
    list-style: none;
}

#cp-page .result .winnerList .photo {
    aspect-ratio: 800/533;
}

#cp-page .result .winnerList .photo img {
    width: 100%;
}

#cp-page .result .winnerList .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 4px;
    margin-bottom: 3px;
}

#cp-page .result .infoBox {
    background-color: #f5f5f5;
    padding: 32px 16px;
    margin-top: 40px;
}

#cp-page .result .infoBox b {
    display: block;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 12px;
}

#cp-page .result .infoBox p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 12px;
}

#cp-page .result .infoBox .cautionList li {
    font-size: 14px;
}

@media (width >=768px) {

    #cp-page .result #winner-photo,
    #cp-page .result #winner-movie {
        padding-block: 60px;
    }


    #cp-page .result .winnerBox {
        padding: 30px 40px;
    }

    #cp-page .result .winnerBox.gold {
        background-image: linear-gradient(to bottom, #F0EDE4 0%, #FFFFFF 178px, #FFFFFF 100%);
    }

    #cp-page .result .winnerBox.silver {
        background-image: linear-gradient(to bottom, #F4F4F4 0%, #FFFFFF 178px, #FFFFFF 100%);
    }

    #cp-page .result .winnerBox .mainInfo {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        column-gap: 24px;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    #cp-page .result .winnerBox .title {
        font-size: 26px;
    }

    #cp-page .result .winnerBox .comment dt {
        font-size: 20px;
    }

    #cp-page .result .winnerBox .comment dd {
        margin-top: 5px;
    }

    #cp-page .result .winnerBox+* {
        margin-top: 48px;
    }

    #cp-page .result .winnerHeading {
        font-size: 32px;
        padding-bottom: 16px;
        margin-bottom: 32px;
        font-weight: 800;
    }

    #cp-page .result .winnerHeading .custom {
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

    #cp-page .result .winnerHeading .custom>span {
        white-space: nowrap;
    }

    #cp-page .result .winnerHeading .custom .sm {
        white-space: nowrap;
    }

    #cp-page .result .winnerHeading .sm {
        font-size: 26px;
    }

    #cp-page .result .winnerHeading .xs {
        font-size: 32px;
    }

    #cp-page .result .winnerHeading small {
        text-align: center;
        margin-top: 2px;
    }

    #cp-page .result .winnerHeading small.lg {
        font-size: 16px;
    }

    #cp-page .result .winnerList ul {
        grid-template-columns: repeat(2, 1fr);
    }

    #cp-page .result .winnerList .title {
        margin-top: 12px;
    }

    #cp-page .result .infoBox {
        padding: 35px 40px;
        margin-top: 36px;
    }

    #cp-page .result .infoBox b {
        font-size: 26px;
        margin-bottom: 8px;
    }

    #cp-page .result .infoBox p {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media (width >=1100px) {
    #cp-page .result .winnerList ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===============================================
    ギャラリーカード（一覧）
   =============================================== */
.gallery-list-wrapper {
    list-style: none;
}

.gallery-list-item {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 2em !important;
    display: flex;
    flex-direction: column;
}

.gallery-list-item .photo-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.gallery-list-item .photo-card figure {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gallery-list-item .photo-card figure img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain;
    margin-inline: auto;
}

.gallery-list-item .photo-card figure figcaption {
    margin-top: 0.5em;
}

.result #lens .bg {
    padding: clamp(24px, 4vw, 32px) !important;
    width: min(100%, 1000px);
}

.photo-title {
    font-size: 20px;
    margin-block: 0.4em 0.2em;
    color: var(--cp-font-body-color);
    font-weight: 800;
}

.photo-title-small,
.name-small {
    font-size: 18px;
    margin-block: 0;
    color: var(--cp-font-body-color);
}

.result-judge .result-judge-image {
    float: left;
    width: min(50%, 200px);
    height: auto;
    margin: 0 20px 10px 0 !important;
    vertical-align: bottom;
}

.gallery-list-item .photo-card figure img {
    height: 160px;
}

.gallery-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 12px;
}

.gallery-list-item {
    margin-bottom: 0 !important;
}

.gallery-container ul {
    padding-left: 0;
}

@media (width >=768px) {
    .result .winner {
        padding: 32px 16px !important;
    }

    .result-judge b {
        font-size: 20px;
        line-height: 1.75;
        margin-top: -5px;
    }

    .result-judge .result-strong {
        letter-spacing: 4px;
        margin-bottom: 4px;
    }

    .result-pashastyle-logo {
        width: 267px;
        margin-bottom: 4px !important;
    }

    .gallery-container li {
        list-style: none;
    }

    .winner-entry .gallery-container figure {
        width: 100%;
        max-width: 750px;
        margin-inline: auto;
        margin-top: 16px !important;
    }

    .winner-entry .gallery-container figure img {
        display: block;
        width: 100%;
        max-height: 750px;
        object-fit: contain;
        margin-inline: auto;
    }

    .gallery-list-wrapper {
        gap: 24px;
        justify-content: flex-start;
    }

    .gallery-list-item .photo-card figure img {
        height: 258px !important;
    }

    .gallery-list-item figcaption {
        color: var(--cp-font-body-color);
    }

    .result-judge-comment dd {
        margin-left: 0;
    }

    .result #lens .bg {
        max-width: 1000px;
    }
}

@media (width >=1100px) {
    .gallery-list-item .photo-card figure img {
        height: 220px !important;
    }

    .result #lens .lens-links .linkButton {
        padding: 9px 13px 8px !important;
        letter-spacing: 0 !important;
    }

    .result .judge-pashastyle-image img {
        max-width: 436px !important;
    }
}

/* =================================
   　Glightbox
   ================================= */
.gslide-description {
    background: rgba(10, 10, 10, 0.8) !important;
    padding: 15px 20px !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-top: 0 !important;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
    background: rgba(0, 0, 0, .32) !important;
}


.glightbox-clean .gdesc-inner {
    padding: 0 !important;
    text-align: center;
}

.gslide-title {
    font-size: 1.1em !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-block: 0 .4em !important;
}

.gslide-desc {
    font-size: 0.9em !important;
    color: #fff !important;
}

.gslide-image img {
    padding-top: 15px !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    z-index: 10000 !important;
}

dd {
    margin-left: 0;
}

/* ===============================================
   04. 審査員 & 05. GUEST
   =============================================== */

#cp-page #judge {
    background: var(--color-sepia);
    padding-block: var(--section-padding-block-sm) 42px;
}

#cp-page .result-judge {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cp-page .result-judge .result-judge-image {
    display: block;
    width: 200px;
    height: auto;

    float: none !important;
    margin: 0 0 24px 0 !important;
}

#cp-page .result-judge .result-judge-profile {
    text-align: left;
    margin-bottom: 20px;
}

#cp-page .result-judge .result-judge-profile b {
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 6px;
    margin-top: 0;
    color: var(--cp-font-body-color);
}

#cp-page .result-judge .result-judge-profile strong {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--cp-font-body-color);
    margin-bottom: 0;
}

#cp-page .result-judge .result-judge-profile br {
    display: none;
}

#cp-page .result-judge .result-judge-comment {
    position: static;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
    line-height: 1.8;
}

#cp-page .result-judge .result-judge-comment p {
    margin: 0;
    text-align: justify;
}

#cp-page .result-judge .result-judge-comment::before,
#cp-page .result-judge .result-judge-comment::after {
    display: none !important;
}


@media (width >=768px) {
    #cp-page #judge {
        padding-block: var(--section-padding-block) 0;
    }

    #cp-page .result-judge {
        display: grid;
        grid-template-columns: 200px 1fr;
        column-gap: 32px;
        grid-template-rows: auto auto;
        align-items: start;
        margin-bottom: 0;
    }

    #cp-page .result-judge .result-judge-image {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        margin: 0 !important;
    }

    #cp-page .result-judge .result-judge-profile {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin-bottom: 0;
    }

    #cp-page .result-judge .result-judge-comment {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        font-size: 18px;
    }

    #cp-page .result-judge .result-judge-profile b {
        font-size: 20px;
        margin-top: -5px;
        margin-bottom: 4px;
    }

    #cp-page .result-judge .result-judge-profile strong {
        font-size: 26px;
        margin-bottom: 4px;
    }

    #cp-page .result-judge .result-judge-profile strong+p {
        margin-bottom: 24px;
    }
}