@charset "UTF-8";

/* ===============================================
   共通スタイル
   =============================================== */
:root {
    --inner-width-800: 800px;
    --inner-width-1200: 1200px;
    --side-padding: 20px;
    --section-padding-block: 53px;
    --section-padding-block-sm: 34px;
    --color-purple: #a76c94;
    --color-black: #070506;
    --cp-font-body-color: #070506;
    --color-dark-gray: #585755;
    --color-gray: #929493;
    --color-light-gray: #f2f2f2;
    --color-white: #ffffff;
    --color-light-purple: #F7F2F6;
    --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: 0.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: 0.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-1200);
    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-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-purple);
    font-weight: bold;
    letter-spacing: 0;
}

.cp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
    padding: 11px 24px 10px;
    background: var(--color-purple) !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;
    box-shadow: var(--shadow);
}

.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 (min-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 (min-width: 1100px) {
    #cp-page .bg {
        padding: 48px 64px;
    }
}

/* ===============================================
   02. メインビジュアル
   =============================================== */
.mv {
    background: var(--color-white);
}

.mv img {
    display: block;
    width: min(100%, 1400px);
    margin-inline: auto;
}

/* ===============================================
   03. タブパネル
   =============================================== */
.tabs {
    background: var(--color-purple);
}

.tabList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--inner-width-1200);
    margin-inline: auto;
    position: relative;
    background: var(--color-purple);
}

.tab {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    position: relative;
    padding: 14px !important;
    color: rgba(70, 74, 80, 1);
    background: var(--color-purple);
}

.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 (min-width: 768px) {
    .tab {
        font-size: 26px;
        padding: 16px !important;
    }

    .tab[aria-selected='true']::after {
        height: 6px;
    }
}

/* ===============================================
   応募ボタン
   =============================================== */
.apply-button {
    background: var(--color-white);
    padding-block: 40px;
}

.apply-button .cp-button-text {
    text-align: center;
    padding-bottom: 16px;
    color: var(--color-black);
}

.apply-button .link-text {
    color: var(--color-purple) !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-black);
    text-align: center;
}

@media (min-width: 768px) {
    .apply-button-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 744px;
        margin-inline: auto;
    }

    .apply-button .cp-button {
        flex-grow: 0;
        flex-shrink: 0;
        width: 100%;
        max-width: 360px;
    }
}

/* ===============================================
   04. greetings
   =============================================== */
#greeting {
    background: url(../images/greeting_bg.jpg) no-repeat center/cover;

}

.greeting-wrapper {
    max-width: 880px;
    background: rgba(255, 255, 255, 0.5);
    padding: 28px 16px 32px;
    margin-inline: auto;
    position: relative;
    z-index: 0;
}

@media (min-width: 768px) {
    .greeting-wrapper {
        padding: 40px;
    }

    .greeting-wrapper>p {
        text-align: center;
    }
}

/* ===============================================
   04. 審査員 & 05. GUEST
   =============================================== */
#judge {
    background: var(--color-light-purple);
    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,
#judge .judge-work-title strong {
    display: block;
    font-size: clamp(22px, 3vw, 36px);
    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-light-purple);
}

#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);
}

.judge-work {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}

.judge-work-title {
    text-align: center;
    margin: 0 0 8px;
}

#judge .judge-work-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

#judge .judge-work-wrapper img {
    width: calc(100% / 2 - 8px);
    height: auto;
    transition: opacity var(--transition-primary);
    object-fit: contain;
}

@media (min-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,
    #judge .judge-work-title strong {
        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-light-purple);
        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;
    }
}

/* ===============================================
   05. 応募方法
   =============================================== */
#how-to-apply {
    margin-inline: auto;
    padding-block: 80px 40px;
    background: var(--color-white);
}

#how-to-apply .inner {
    max-width: var(--inner-width-800);
}

#how-to-apply img {
    display: flex;
    margin: 30px auto 0;
}

@media (min-width: 768px) {}

/* ===============================================
   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 (min-width: 768px) {
    #lens {
        padding-block: var(--section-padding-block) 60px;
    }

    #lens .lensItem-image {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (min-width: 1100px) {
    #lens .lens-links {
        grid-template-columns: repeat(3, auto);
        gap: 20px;
        justify-content: center;
    }
}

/* ===============================================
   07. 賞品
   =============================================== */
#prize {
    background: var(--color-light-purple);
    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;
    /* background: var(--color-purple); */
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    border-radius: 3px;
    background: repeating-linear-gradient(-45deg, #F7F2F6, #F7F2F6 3px, #F0E6EC 3px, #F0E6EC 7px);
}

#prize .prize-wrapper strong:nth-of-type(1) {
    margin-bottom: 40px;
}

#prize .prize-wrapper strong:nth-of-type(2) {
    margin-top: 30px;
}

#prize .prize-wrapper strong span {
    display: block;
    font-size: 20px;
}

#prize .prize-wrapper .prize-title {
    margin-top: 20px;
    margin-bottom: 0;
}

.prize-category {
    display: block;
    gap: 20px;
    padding-bottom: 20px;
}

.prize-category dl.-medium {
    flex: 1;
    min-width: 200px;
    border: 2px solid var(--color-light-purple);
    border-radius: 3px;
}

.prize-category dl .medium:nth-of-type(2) {
    margin-top: 20px;
}

#prize dl {
    position: relative;
    padding: 15px 0 18px;
}

#prize .prize-image {
    text-align: center;
    margin-top: 1.5em;
}

#prize .prize-image img {
    box-shadow: var(--shadow);
}

#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-purple) !important;
    font-weight: bold;
}

@media (max-width: 479px) {
    .prize-category dl.-medium:nth-of-type(2) {
        margin-top: 20px;
    }
}

@media (min-width: 480px) {
    .prize-category {
        display: flex;
        gap: 20px;
        padding-bottom: 20px;
    }

    .prize-category dl {
        margin: 0;
    }

    .prize-category dl.-medium {
        flex: 1;
        min-width: 200px;
        border: 4px solid var(--color-light-purple);
        border-radius: 3px;
    }
}

@media (min-width: 768px) {
    #prize {
        padding-block: var(--section-padding-block) 60px;
    }

    #prize .prize-wrapper {
        padding: 40px;
    }

    #prize dd small {
        text-align: center;
    }
}


/* ===============================================
   09. おすすめコンテンツ・バナー
   =============================================== */
#tips-banners,
#toruyell-banners {
    background: var(--color-light-gray);
    padding-block: var(--section-padding-block-sm) 40px;
}

#tips-banners .banners,
#toruyell-banners .banners {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    justify-content: center;
    gap: 20px;
}

#tips-banners .banners a,
#toruyell-banners .banners a {
    display: block;
    opacity: 1;
    transition: opacity var(--transition-primary);
}

#tips-banners .banners a:hover,
#toruyell-banners .banners a:hover {
    opacity: var(--opacity-hover);
}

#tips-banners .banners img,
#toruyell-banners .banners img {
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {

    #tips-banners .banners,
    #toruyell-banners .banners {
        gap: 32px;
    }
}

/* ===============================================
   11. 応募要項
   =============================================== */
#requirements {
    background: var(--color-light-purple);
    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: 0.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: 0.5em;
}

#requirements .accordion-content .link-text {
    color: #004097 !important;
}

@media (min-width: 768px) {
    #requirements .accordion .Label {
        font-size: 22px;
    }

    #requirements .accordion .toggle:checked+.Label+.accordion-content {
        padding: 2rem;
    }
}

/* ===============================================
   12. おすすめコンテンツ
   =============================================== */
#banners {
    background: var(--color-white);
    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 h3 {
    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: 24px;
}

#banners .banner-list li {
    background: var(--color-white);
    padding: 20px;
    border-radius: 4px;
    background: var(--color-light-gray);
}

#banners .banner-list a {
    display: block;
    opacity: 1;
    transition: opacity var(--transition-primary);
    color: var(--color-purple) !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

#banners .banner-list a:hover,
#banners.banner-list-text-link a:hover {
    opacity: var(--opacity-hover);
}

.banner-box {
    margin-inline: auto;
    width: min(100%, 380px);
}

#banners .banner-list img {
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    max-width: 380px;
    margin-inline: auto;
    display: flex;
}

.banner-list-text-link {
    text-align: right;
    color: var(--color-purple) !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    opacity: 1;
    transition: opacity var(--transition-primary);
    padding-top: 4px;
    margin-bottom: 20px;
    max-width: 380px;
    width: 100%;
}

@media (min-width: 768px) {
    #banners .banner-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: var(--inner-width-1200);
        gap: clamp(20px, 3vw, 32px);
    }
}