@charset "UTF-8";

/* ===============================================
   共通スタイル
   =============================================== */
:root {
    --inner-width: 1200px;
    --side-padding: 20px;
    --section-padding-block: 53px;
    --section-padding-block-sm: 34px;
    --color-acafe: #e66c00;
    --color-blue: #0656BF;
    --color-green: #61ac4a;
    --color-light-green: #e5f9c8;
    --color-dark-brown: #554839;
    --color-light-brown: #BFA084;
    --color-beige: #F3EBE2;
    --cp-font-body-color: #0E0A06;
    --color-dark-gray: #585755;
    --color-gray: #929493;
    --color-light-gray: #eeeeee;
    --color-white: #ffffff;
    --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,
#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;
}

#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(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 4px;
    text-align: center;
    margin: 0 0 12px;
}

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

#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: red;
    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;
    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-dark-brown);
}

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

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

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

#cp-page .apply-button .cp-button {
    background: var(--color-acafe);
    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-beige);
    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: 200px;
}

#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-green);
    border-radius: 8px;
    background: var(--color-beige);
}

#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 .cp-button-wrapper {
    margin-top: 26px;
    text-align: center;
    display: grid;
    width: 100%;
}

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

#judge .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(--cp-font-body-color);
    box-shadow: var(--shadow);
}

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

#judge .linkButton:hover {
    color: var(--color-white) !important;
    opacity: var(--opacity-hover);
}

#judge .linkButton a:hover {
    color: var(--color-white) !important;
    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-green);
        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-beige);
        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;
    }

    #judge .cp-button-wrapper {
        justify-content: end;
    }
}

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

#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: 15px;
    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-radius: 3px;
    padding: 9px 20px 8px;
    background: var(--cp-font-body-color);
    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-beige);
    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-beige);
    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-beige);
    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-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-green);
    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-gray);
    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-gray);
    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(--cp-font-body-color);
    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-acafe) !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;
    }
}

/* ===============================================
   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;
    color: var(--color-white) !important
}

#about-acafe .cp-button a {}

.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,
#past-contests-banners {
    background: var(--color-light-gray);
    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-beige);
    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: var(--color-acafe) !important;
}

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

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


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