@charset "UTF-8";

/* ===============================================
   共通スタイル
   =============================================== */
:root {
    --inner-width: 1200px;
    --side-padding: 20px;
    --section-padding-block: 53px;
    --section-padding-block-sm: 34px;
    --cp-font-body: 'Noto Sans JP', sans-serif;
    --font-size-base: clamp(16px, 2vw, 18px);
    --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;

    --color-dark-purple: #7c6c91;
    --color-light-purple: #f8f6fc;
    --color-light-blue: #e8f0fe;
    --color-light-brown: #886227;
    --color-dark-brown: #3c2512;
    --color-gray: #6e6e6e;
    --color-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--cp-font-body);
    color: var(--color-dark-brown);
    background-color: var(--color-white);
    margin: 0;
    overflow-x: hidden;
    min-width: inherit;
}

#contents {
    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(--color-dark-brown);
    font-weight: 500;
    overflow-x: hidden;
}

#contents img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#contents button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding: 0;
}

#contents .link-text {
    text-decoration: underline !important;
    text-underline-offset: 4px;
    opacity: 1;
    transition: opacity var(--transition-primary);
}

#contents .link-text:hover {
    opacity: var(--opacity-hover);
}

#contents .link-text[target=_blank]::after,
#judge .judge-profile .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;
}

#contents .inner {
    max-width: var(--inner-width);
    margin-inline: auto;
    padding-inline: var(--side-padding);
}

#contents .bg {
    background: var(--color-white);
    padding: clamp(24px, 4vw, 32px);
    margin-bottom: 30px;
    border: 1px solid var(--color-dark-purple);
    border-radius: 8px;
}

#contents h2 {
    font-family: "BIZ UDPMincho", serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 4px;
    text-align: center;
    margin: 0 0 12px;
}

#contents .font-small {
    font-size: 14px;
}

#contents .sp-only {
    display: block;
}

#contents .sp-none {
    display: none;
}

#contents .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-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    padding: 11px 24px 10px;
    border-radius: 3px;
    font-weight: bold;
    color: var(--color-white) !important;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s;
    column-gap: 24px;
    box-sizing: border-box;
    opacity: 1;
    background: var(--color-dark-purple);
    box-shadow: var(--shadow);
}

.cp-button a {
    color: var(--color-white);
}

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

.cp-button .link-text::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;
}

@media (width >=768px) {
    #contents h2 {
        margin-bottom: 24px;
    }

    #contents .sp-only {
        display: none;
    }

    #contents .sp-none {
        display: block;
    }

    #contents .bg {
        padding: 38px 40px;
    }
}

@media (width >=1100px) {
    #contents .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-dark-brown);
}

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

.tab {
    font-size: var(--font-size-m);
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    position: relative;
    padding: 12px 16px !important;
    color: var(--color-gray);
}

.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: 14px 16px !important;
    }

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

/* ===============================================
   応募ボタン (タブ内 & ページ下部)
   =============================================== */
.apply-button {
    background: var(--color-dark-brown);
    padding-block: 40px;
}

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

#contents .apply-button .cp-button {
    background: var(--color-dark-purple);
    color: var(--color-white);
    width: min(100%, 450px);
}

.apply-button .link-text {
    color: var(--color-white) !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) {
    #contents .apply-button-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 744px;
        margin-inline: auto;
    }

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

/* ===============================================
   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: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2px;
    color: var(--color-light-brown);
}

#judge .judge-profile strong,
#judge .judge-guest-text strong {
    display: block;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

#judge .judge-profile p {
    margin: 0;
}

#judge .judge-profile p a .link-text {
    color: var(--color-dark-brown) !important;
}

#judge .judge-comment {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 16px;
    background: var(--color-light-purple);
    color: var(--color-dark-brown);
    border-top: 2px solid var(--color-dark-brown);
    border-bottom: 2px solid var(--color-dark-brown);
}

#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 .sns-links-wrapper {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

#judge .sns-links-wrapper li:only-child {
    grid-column: 1 / -1;
    width: 100%;
}

#judge .sns-links-wrapper .cp-button {
    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.5;
    color: var(--color-white);
    border-radius: 3px;
    padding: 12px 16px;
    background: var(--color-dark-purple);
    box-shadow: var(--shadow);
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
}

#judge .sns-links-wrapper .cp-button:hover {
    opacity: var(--opacity-hover);
}

#judge .sns-links-wrapper .cp-button[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;
}

#judge .sns-links-wrapper .cp-button .font-small {
    font-size: 0.85em;
    font-weight: normal;
    margin-left: 4px;
}

#judge .link-text {
    text-decoration: underline !important;
    text-underline-offset: 4px;
    opacity: 1;
    transition: opacity var(--transition-primary);
}

#judge .link-text:hover {
    opacity: var(--opacity-hover);
}

#judge .link-text[target=_blank]::after,
#judge .judge-profile .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;
}

@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: start;
        margin-bottom: 0;
    }

    #judge .judge-main .judge-image {
        margin-bottom: 0;
    }

    #judge .judge-profile strong,
    #judge .judge-guest-text strong {
        letter-spacing: 4px;
    }

    #judge .judge-comment {
        margin-top: calc(20px + 1rem);
    }

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

    #judge .sns-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
        max-width: 700px;
        margin-inline: auto;
    }

    #judge .sns-links-wrapper li:only-child {
        max-width: calc(50% - 10px);
        margin-inline: auto;
    }

    #judge .sns-links-wrapper .cp-button {
        font-size: 15px;
    }
}

@media (width >=1100px) {
    #judge .sns-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
        max-width: 800px;
        justify-content: center;
    }

    #judge .sns-links-wrapper li:only-child {
        max-width: calc(50% - 12px);
    }
}


/* ===============================================
   06. おすすめレンズ
   =============================================== */
#lens {
    padding-block: var(--section-padding-block-sm) 60px;
    background: var(--color-dark-brown);
}

#lens h2 {
    color: var(--color-white);
}

#lens .lensItem-article dl,
#lens .lensItem-article dd {
    margin: 0;
}

#lens .lensItem-article dt {
    font-size: clamp(22px, 2.5vw, 24px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    background: var(--color-light-purple);
    padding-block: 10px;
    color: var(--color-dark-brown);
    border-top: 2px solid var(--color-dark-brown);
    border-bottom: 2px solid var(--color-dark-brown);
}

#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 .product-img {
    width: min(100%, 380px);
}

#lens .lensItem-image figcaption {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
}

#lens .lensItem-image .judge-work {
    box-shadow: var(--shadow);
}

#lens .lensItem-image figure:only-child {
    grid-column: 1 / -1;
    margin-inline: auto;
}

#lens .lens-links {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    justify-content: center;
    gap: 12px;
    justify-items: stretch;
}

#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-radius: 3px;
    padding: 9px 20px 8px;
    background: var(--color-dark-brown);
    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: flex-start;
    }


    #lens .lens-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (width >=1100px) {
    #lens .lens-links {
        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-dark-purple);
    border-radius: 8px;
}

#prize .prize-wrapper>strong {
    display: block;
    padding: 16px;
    margin-bottom: 20px;
    background: var(--color-dark-brown);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    border-radius: 3px;
    color: var(--color-white);
}

#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-dark-purple);
    margin: 0;
}

#prize p {
    margin-block: 10px;
    line-height: 1.0;
}

#prize small {
    display: block;
    margin-top: 12px;
    color: var(--color-gray);
    line-height: 1.5;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

#prize .new {
    color: #ff0000;
    padding-right: 8px;
}

#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-light-brown);
    margin: 0;
}

#prize dd span {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.5;
}

#prize dl.-medium dd {
    font-size: clamp(22px, 3vw, 26px) !important;
}

#prize .link-text {
    color: var(--color-light-brown) !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. αアカデミー
   =============================================== */
#aAcademy {
    background: var(--color-dark-brown);
    padding-block: var(--section-padding-block-sm) 40px;
}

.academy-logo h2 img {
    width: min(100%, 300px);
    height: auto;
}

#aAcademy h3 {
    margin-top: 0;
    font-family: "BIZ UDPMincho", serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 4px;
    text-align: center;
}

#aAcademy h4 {
    margin: 0;
}

#aAcademy p strong .academy-event-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 8px;
}

.academy-event-detail {
    background: var(--color-light-purple);
    padding: 20px;
    border-radius: 3px;
    margin-top: 40px;
}

.academy-event-01,
.academy-event-02 {
    max-width: 880px;
    background: var(--color-white);
    padding: 28px 16px 32px;
    margin-inline: auto;
    margin-top: 40px;
    border: 3px solid var(--color-light-purple);
    border-radius: 3px;
}

.academy-event-detail_01 {
    margin-bottom: 24px;
}

#aAcademy-events {
    margin-bottom: 40px;
    padding-inline: var(--side-padding)
}

#aAcademy-events h3 {
    margin-top: 0;
    font-size: 28px;
    line-height: 1.5;
}

.academy-event-01 img {
    margin-inline: auto;
    display: flex;
    max-width: 100%;
    height: auto;
}

#aAcademy-events .cp-button {
    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-radius: 3px;
    padding: 9px 20px 8px;
    background: var(--color-dark-brown);
    box-shadow: var(--shadow);
    margin-top: 30px;
}

#aAcademy-events .cp-button:hover {
    color: var(--color-white) !important;
    opacity: var(--opacity-hover);
}

#aAcademy-events .cp-button a:hover {
    color: var(--color-white) !important;
    opacity: var(--opacity-hover);
}

#aAcademy .parallax .link-text {
    color: var(--color-white) !important;
    font-weight: bold;
}

#aAcademy-events .link-text {
    color: var(--color-dark-purple) !important;
    font-weight: bold;
}

@media (width >=768px) {

    .academy-event-01,
    .academy-event-02 {
        padding: 40px;
    }

    #aAcademy-events p strong .academy-event-title {
        font-size: 26px;
        line-height: 1.5;
    }

    .academy-event-wrapper {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 40px;
        margin-inline: auto;
        font-size: 18px;
    }

    .academy-event-wrapper p:first-of-type {
        flex: 1;
        margin-bottom: 0;
    }

    .academy-event-wrapper p:last-of-type {
        flex-shrink: 0;
        width: 40%;
        margin-bottom: 0;
    }

    .academy-event-01 img {
        width: 100%;
        height: auto;
    }
}

/* ===============================================
   09. 特別オンライン講座
   =============================================== */
#special-lecture {
    background: #C1B9CB;
    padding-block: var(--section-padding-block-sm);
}

#special-lecture h2 {
    color: var(--color-dark-brown);
}

#special-lecture h3 {
    color: var(--color-dark-brown);
    background: var(--color-light-purple);
    padding-block: 10px;
    border-top: 2px solid var(--color-dark-brown);
    border-bottom: 2px solid var(--color-dark-brown);
    font-size: var(--font-size-m);
    font-weight: bold;
    margin: 0 0 24px;
    line-height: 1.6;

}

#special-lecture .description {
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--color-light-brown);
    font-weight: bold;
}

#special-lecture .bg {
    max-width: 880px;
    margin-inline: auto;
}

#special-lecture .lecture-wrapper {
    text-align: center;
}


#special-lecture .lecture-content {
    display: block;
    margin-block: 24px;
}

#special-lecture .lecture-image {
    margin-bottom: 20px;
    text-align: center;
}

#special-lecture .lecture-image img {
    width: 200px;
    height: auto;
    box-shadow: var(--shadow);
}

#special-lecture .instructor {
    font-size: var(--font-size-m);
    font-weight: bold;
    margin-block: 0 16px;
    text-align: center;
}

#special-lecture .lecture-info {
    text-align: left;
}

#special-lecture dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

#special-lecture dt {
    font-weight: bold;
    border-bottom: 1px solid var(--color-dark-brown);
    padding-bottom: 4px;
}

#special-lecture dd {
    margin: 0 0 16px;
    line-height: 1.6;
}

#special-lecture dd small {
    display: inline-block;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--color-dark-brown);
    margin-top: 8px;
}

#special-lecture .lecture-button a {
    margin-top: 24px;
    max-width: 430px;
}

@media (min-width: 660px) {
    #special-lecture {
        padding-block: var(--section-padding-block);
    }

    #special-lecture .lecture-title {
        font-size: clamp(20px, 3vw, 24px);
        margin-bottom: 32px;
    }

    #special-lecture .lecture-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        margin-bottom: 32px;
    }

    #special-lecture .lecture-image {
        margin-bottom: 0;
        flex-shrink: 0;
    }


    #special-lecture .instructor {
        text-align: left;
    }

    #special-lecture dl {
        grid-template-columns: auto 1fr;
        column-gap: 24px;
        row-gap: 16px;
        align-items: baseline;
    }

    #special-lecture dt {
        border-bottom: none;
        padding-bottom: 0;
        white-space: nowrap;
    }

    #special-lecture dd {
        margin-bottom: 0;
    }
}

/* ===============================================
   09. 撮影のコツ & 過去のコンテスト
   =============================================== */
#tips-banners,
#past-contests-banners {
    background: var(--color-white);
    padding-block: 50px 60px;
}

#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);
    border-radius: 3px;
}

#tips-banners .banner-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 24px;
    width: fit-content;
}

#tips-banners .banner-list li {
    list-style: none;
}

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

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

#tips-banners .banner-list img {
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

@media (width >=768px) {
    #tips-banners .banner-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: var(--inner-width);
    }

    #tips-banners .banner-list li:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        margin-inline: auto;
    }
}

/* ===============================================
   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-dark-purple) !important;
}

#contents .parallax .link-text[target=_blank]::after {
    background-image: url("../images/icon_blank_white.svg");
}

#about-acafe .cp-button {
    background-color: var(--color-dark-purple);
    color: var(--color-white) !important;
    width: min(100%, 450px);
}

.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-dark-brown);
}

.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-dark-purple);
    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;
    }
}

/* ===============================================
   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(--color-dark-brown);
    border-right: 2px solid var(--color-dark-brown);
    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: var(--color-dark-purple) !important;
}

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

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

/* ===============================================
   12. おすすめコンテンツ
   =============================================== */
#recommended {
    background: var(--color-white);
    padding-block: 50px 60px;
}


#recommended img {
    box-shadow: var(--shadow);
    border-radius: 3px;
}