/* ===================================
   VARIABLES
===================================== */
:root {
    --cp-color-main: #422200;
    --cp-color-red: #D53C02;
    --cp-color-text: #2f1b00;
    --cp-color-white: #fff;
    --cp-color-light-yellow: #feeba3;
    --cp-color-beige: #f3eee8;
    --cp-shadow-subtle: 0 4px 10px rgba(0, 0, 0, .08);
    --cp-shadow-pop: 0 12px 30px rgba(0, 0, 0, .25);
    --cp-transition-ease: .3s ease-in-out;
    --cp-font-body: 'Noto Sans JP', sans-serif;
    --cp-font-title: 'M PLUS Rounded 1c', serif;
    --cp-container-width: 1100px;
    --cp-container-width-small: 800px;
}

/* ===================================
   COMMON
===================================== */
html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-width: inherit;
    overflow-x: hidden;
    font-family: var(--cp-font-body);
    font-size: 18px;
    line-height: 1.85;
    font-weight: 500;
    color: var(--cp-color-text);
    background: var(--cp-color-white)
}

#cp-page {
    position: relative;
    overflow-x: hidden;
    font-family: var(--cp-font-body) !important;
    color: var(--cp-color-text) !important;
    font-size: 18px !important;
    line-height: 1.85 !important;
    font-weight: 500 !important;

}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

br.hidden-sp {
    display: none
}

.cp-container {
    width: 90%;
    max-width: var(--cp-container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1
}

#nav-gift .cp-container-small {
    width: 100%
}

#nav-overview .cp-container-small {
    max-width: var(--cp-container-width-small)
}

.cp-text {
    font-size: 18px;
    margin: 0
}

p small {
    font-size: 16px
}

.cp-text-bold {
    font-weight: 700
}

.cp-text-center {
    text-align: center;
    margin-top: 10px
}

.cp-text-link {
    display: inline;
    align-items: center;
    color: var(--cp-color-light-yellow) !important;
    text-decoration: underline !important;
    font-weight: 700;
    transition: opacity var(--cp-transition-ease)
}

#alpha_cafe .cp-text-external-link,
#alpha_cafe .cp-text-link {
    color: var(--cp-color-red) !important;
    text-decoration: underline !important;
    font-weight: 700
}

.cp-text-external-link::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: .3em;
    vertical-align: -.15em;
    background: url('../images/icon_window.svg') center/contain no-repeat
}

.cp-text-external-link:hover,
.cp-text-link:hover {
    opacity: .75
}

.cp-text-link:visited {
    color: var(--cp-color-red) !important
}

.cp-button {
    display: block;
    width: auto;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 50px;
    margin-inline: auto;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: var(--cp-color-main) !important;
    color: var(--cp-color-light-yellow) !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--cp-shadow-subtle);
    transition: transform var(--cp-transition-ease), box-shadow var(--cp-transition-ease), background var(--cp-transition-ease)
}

.cp-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--cp-shadow-pop);
    background: linear-gradient(to right, var(--cp-color-main), var(--cp-color-main)) !important
}

.cp-section {
    position: relative;
    padding: 60px 0;
}

.cp-section-title {
    font-family: var(--cp-font-title);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--cp-color-red);
    text-align: center;
    max-width: 90%;
    margin: 0 auto 30px;
    padding-bottom: 20px;
    position: relative
}

.cp-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--cp-color-red);
    border-radius: 5px
}

.cp-section-bg-white {
    background: var(--cp-color-white)
}

.cp-section-bg-light-yellow {
    background: var(--cp-color-light-yellow)
}


.cp-section-bg-beige {
    background: var(--cp-color-beige);
}

.cp-section-bg-dark-blue {
    background: var(--cp-color-main);
    color: var(--cp-color-white)
}

/* ===================================
   HERO
===================================== */
.cp-hero-image {
    text-align: center;
    font-size: 0;
    margin-bottom: 4px
}

/* ===================================
   NAV
===================================== */
.cp-nav-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cp-color-main);
    box-shadow: var(--cp-shadow-subtle)
}

.cp-nav-item {
    background: transparent;
    border-right: 2px solid var(--cp-color-white);
    border-bottom: 2px solid var(--cp-color-white);
    box-sizing: border-box
}

.cp-nav-item:hover {
    background: rgba(0, 0, 0, .1);
    box-shadow: var(--cp-shadow-subtle)
}

.cp-nav-item a {
    width: 100%;
    min-height: 30px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    color: var(--cp-color-light-yellow) !important;
    text-decoration: none !important
}

@media (min-width:768px) {
    .cp-nav-item a {
        font-size: 22px
    }

    .cp-nav-item a::after {
        content: '';
        width: 8px;
        height: 8px;
        border-bottom: 2px solid var(--cp-color-light-yellow);
        border-right: 2px solid var(--cp-color-light-yellow);
        transform: rotate(45deg)
    }

    .cp-nav-item a:hover::after {
        margin-left: 5px
    }
}

@media (max-width:1023px) {
    .cp-nav-list .cp-nav-item:nth-child(5) {
        grid-column: 1/-1
    }
}

@media (min-width:1024px) {
    .cp-nav-list {
        grid-template-columns: repeat(5, 1fr);
        border-bottom: none;
        max-width: 1200px
    }

    .cp-nav-item {
        border-bottom: none
    }

    .cp-nav-item:last-child {
        border-right: none
    }

    .cp-nav-item a {
        min-height: 60px;
        padding: 15px 5px
    }
}

/* ===================================
   GREETINGS
===================================== */
#greetings {
    padding: 40px 0 50px
}

#greetings h3 {
    text-decoration-line: underline;
    text-underline-offset: .3em;
    text-decoration-thickness: .08em
}

@media (min-width:1024px) {
    #greetings {
        padding: 80px 0
    }

    #greetings::after {
        content: '';
        position: absolute;
        right: 37px;
        top: 20%;
        width: 290px;
        height: 147px;
        background: url(../images/side_image_2.png) top right / contain no-repeat;
        transform: translateY(-50%);
        z-index: 2;
    }
}

/* ===================================
   GIFT
===================================== */
#nav-gift {
    background: var(--cp-color-light-yellow);

}


#nav-gift .cp-text-link {
    color: var(--cp-color-main) !important
}

.cp-gift-container {
    background: var(--cp-color-white);
    margin-block: 30px 20px;
    padding: 10px 20px 20px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--cp-shadow-subtle)
}

.cp-gift-container h4 {
    font-family: var(--cp-font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--cp-color-main);
    margin: 5px 0 14px !important;
    border-bottom: 5px solid var(--cp-color-red);
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.5;
}

.cp-gift-container .cp-gift::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: .5em;
    vertical-align: -.4em;
    background: url(../images/icon_present.svg) center/contain no-repeat
}

.cp-gift-container .cp-bean::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: .5em;
    vertical-align: -.4em;
    background: url(../images/icon_bean.svg) center/contain no-repeat
}

@media (min-width:768px) {
    .cp-gift-container {
        padding: 10px 40px 20px
    }

    .cp-gift-container h4 {
        font-size: 32px;
        margin: 15px 0 30px !important
    }
}

#nav-gift .cp-present-wrap {
    margin-top: 18px
}

#nav-gift .cp-bubbles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

#nav-gift .cp-bubbles-left {
    display: flex;
    gap: 12px
}

#nav-gift .cp-oval {
    background: #e6e6e6;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: var(--cp-shadow-subtle)
}

#nav-gift .cp-bubble {
    position: relative;
    max-width: 720px;
    background: var(--cp-color-beige);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--cp-shadow-subtle)
}

#nav-gift .cp-bubble p {
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
    text-align: left
}

#nav-gift .cp-strong {
    font-size: 24px;
    color: var(--cp-color-red) !important;
    font-weight: 800;
    line-height: 1.6;
}

@media (min-width:768px) {
    .cp-gift-warapper {
        display: flex;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .gift-image-wrapper {
        width: 50%;
        height: auto;
    }

    .gift-image {
        filter: drop-shadow(10px 10px 10px #aaa);
    }

    .cp-bubble-wrapper {
        width: 50%;
        height: auto;
    }

    #nav-gift .cp-bubbles {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 20px 24px;
        align-items: start;
        justify-items: start
    }

    #nav-gift .cp-bubbles-left {
        grid-column: 1;
        grid-row: 1/span 2;
        flex-direction: column
    }

    #nav-gift .cp-bubble {
        grid-column: 2;
    }
}

@media (min-width:1024px) {
    #nav-gift::before {
        content: '';
        position: absolute;
        left: 37px;
        top: 82px;
        width: 150px;
        height: 104px;
        background: url(../images/side_image_1.png) top right / contain no-repeat;
        transform: translateY(-50%);
        z-index: 2;
        /* filter: drop-shadow(var(--cp-shadow-pop)); */
    }
}

/* ===================================
   HOW-TO
===================================== */
#nav-how-to {
    padding-bottom: 80px
}

.cp-step-group {
    margin-top: 70px;
    background: var(--cp-color-white);
    padding: 30px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--cp-shadow-subtle);
    line-height: 1.6
}

.cp-step-group-title {
    font-family: var(--cp-font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--cp-color-main);
    margin: 5px 0;
    text-align: center;
    line-height: 1.3;
    border-bottom: 5px solid var(--cp-color-light-yellow);
    padding-bottom: 5px !important
}

.cp-step-flow {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative
}

.cp-step-item {
    background: var(--cp-color-beige);
    border: none;
    border-radius: 12px;
    padding: 20px 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    box-shadow: var(--cp-shadow-subtle)
}

.cp-step-item>p {
    margin-top: auto
}

.cp-step-title {
    width: 100%;
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--cp-color-main);
    font-family: var(--cp-font-title);
    text-align: center
}

.cp-step-image {
    width: min(100%, 400px);
    margin-inline: auto;
    border-radius: 10px;
    box-shadow: var(--cp-shadow-subtle)
}

@media (min-width:768px) {
    .cp-step-group {
        padding: 40px 60px 50px
    }

    .cp-step-group-title {
        font-size: 32px;
        margin: 20px 0 40px;
        letter-spacing: .02em
    }

    .cp-step-title {
        line-height: 1.4
    }
}

@media (min-width:1024px) {
    #nav-how-to::before {
        content: '';
        position: absolute;
        left: 0;
        top: 3%;
        width: 187px;
        height: 131px;
        background: url(../images/side_image_3.png) top left/contain no-repeat;
        z-index: 0
    }

    .cp-step-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 40px;
        margin-top: 60px
    }

    .cp-step-item {
        display: grid;
        grid-row: 1/4;
        grid-template-rows: subgrid;
        padding: 40px 30px;
        gap: 20px;
        margin: 0
    }

    .cp-step-item>.cp-step-title {
        grid-row: 1;
        align-self: start
    }

    .cp-step-item>.cp-step-image {
        grid-row: 2;
        align-self: start
    }

    .cp-step-item>p {
        grid-row: 3;
        align-self: start;
        margin-top: 0
    }
}

@media (min-width:1280px) {
    #nav-how-to::after {
        content: '';
        position: absolute;
        right: 7px;
        bottom: 0;
        width: 187px;
        height: 168px;
        background: url(../images/side_image_4.png) top left/contain no-repeat;
        z-index: 0
    }
}

/* ===================================
   GALLERY
===================================== */
#nav-gallery .cp-button {
    display: block;
    width: fit-content;
    margin: 2em auto 0;
    text-align: center
}

.campaign-gallery {
    margin-top: 1em;
    padding-block: 2em;
    max-height: 700px;
    overflow-x: hidden;
    overflow-y: auto;
    direction: ltr;
    scrollbar-width: thin
}

.campaign-gallery::-webkit-scrollbar {
    width: 16px;
    height: 60px
}

.campaign-gallery a {
    text-decoration: none
}

.campaign-gallery-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.campaign-gallery-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    height: 100%;
    overflow: hidden;
    background: var(--cp-color-white);
    padding: 1em;
    border-left: 1.5px solid var(--cp-color-beige);
    border-bottom: 1.5px solid var(--cp-color-beige)
}

.campaign-gallery-card:nth-child(1),
.campaign-gallery-card:nth-child(2) {
    border-top: 1.5px solid var(--cp-color-beige)
}

.campaign-gallery-card:nth-child(2n) {
    border-right: 1.5px solid var(--cp-color-beige)
}

.campaign-gallery-card iframe {
    pointer-events: none;
}

.campaign-gallery-image img,
.campaign-gallery-image iframe {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/2;
    display: block
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1020/680
}

#nav-gallery .campaign-gallery-image,
#nav-gallery .campaign-gallery-card-title,
#nav-gallery .campaign-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.campaign-gallery-card-title,
.campaign-gallery-card-photographer {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--cp-color-text) !important
}

.campaign-gallery-card-title {
    margin: .5em 0 0 !important
}

.campaign-text {
    padding: 0;
    margin: 0;
    font-size: 17px;
    color: #6b4f00 !important
}

.campaign-gallery-camera,
.campaign-gallery-lens {
    margin: 0;
    text-align: center;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 500;
    color: #777
}

.campaign-gallery-camera::before,
.campaign-gallery-lens::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 1.5em;
    margin: 0 4px 0;
    vertical-align: text-top
}

.campaign-gallery-camera::before {
    background: url(../images/icon_camera.svg) no-repeat
}

.campaign-gallery-lens::before {
    background: url(../images/icon_lens.svg) no-repeat
}

.bravo_btn_wrap {
    transition: transform .3s ease
}

.bravo,
.finish-bravo-btn>div {
    width: inherit;
    height: auto;
    padding: .5em;
    text-align: center;
    font-size: 17px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
    font-weight: 700;
    letter-spacing: .05em
}

.click-bravo-btn>div {
    background: var(--cp-color-main);
    color: var(--cp-color-light-yellow) !important
}

.click-bravo-btn-one>div {
    background: var(--cp-color-light-yellow);
    color: var(--cp-color-main)
}

.click-bravo-btn-two>div {
    background: var(--cp-color-red);
    color: var(--cp-color-white)
}

.finish-bravo-btn>div {
    background: var(--cp-color-beige);
    color: var(--cp-color-main)
}

@media (min-width:640px) {
    .campaign-gallery {
        max-height: 800px
    }

    .campaign-gallery-container {
        gap: 20px
    }

    .campaign-gallery-card {
        border-radius: 8px;
        border: 4px solid var(--cp-color-beige) !important;
        filter: drop-shadow(-5px -5px 10px #ffffff) drop-shadow(5px 5px 10px #ededed)
    }
}

@media (min-width:1024px) {
    .campaign-gallery {
        max-height: 1000px
    }

    .campaign-gallery-container {
        gap: 40px
    }

    .campaign-text {
        margin: 0 1em
    }

    .campaign-gallery-card {
        border-radius: 8px;
        border: 4px solid var(--cp-color-beige)
    }
}

/* ===================================
   OVERVIEW
===================================== */

.cp-overview-list {
    margin: 0
}

.cp-overview-title {
    font-family: var(--cp-font-title);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: .1em;
    margin: 40px 0 20px;
    border-bottom: 5px solid var(--cp-color-light-yellow);
    padding-bottom: 12px
}

.cp-overview-list dt:first-of-type {
    margin-top: 0
}

.cp-overview-desc {
    margin: 0 0 15px 0
}

.cp-overview-desc .cp-text-link {
    color: var(--cp-color-white) !important
}

/* 概要・プレゼントのddに行頭「・」 */
.cp-overview-list dt:nth-of-type(-n+2)~dd {
    padding-left: 1em;
    position: relative
}

.cp-overview-list dt:nth-of-type(-n+2)~dd::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0
}

/* 機種リスト：SP1列、>=768pxは2列 */
.cp-overview-list dt:nth-of-type(3)~dd {
    padding-left: 0
}

.cp-overview-list dt:nth-of-type(3)~dd::before {
    content: none
}

@media (min-width:768px) {
    .cp-overview-title {
        font-size: 32px
    }

    .cp-overview-list dt:nth-of-type(3)+dd {
        column-count: 2;
        column-gap: 1.2rem;
        column-fill: balance
    }
}

/* ===================================
   TIPS
===================================== */
.cp-tips-content-wrapper {
    background: var(--cp-color-white);
    border: none;
    border-radius: 15px;
    box-shadow: var(--cp-shadow-subtle);
    margin: 0 auto 50px;
    padding: 30px 25px
}

.cp-tips-content {
    border-radius: 8px
}

.cp-tips-content:last-child {
    margin-top: 25px
}

#nav-tips h3 {
    font-family: var(--cp-font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--cp-color-main);
    margin: 0 0 30px;
    border-bottom: 5px solid var(--cp-color-light-yellow);
    padding-bottom: 12px;
    text-align: center;
    position: relative
}

#nav-tips h3::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: .5em;
    vertical-align: -.4em;
    background: url(../images/icon_beginner.svg) center/contain no-repeat
}

.tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center
}

.tips-item {
    width: calc(50% - .6rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--cp-color-white);
    border-radius: 10px;
    box-shadow: var(--cp-shadow-subtle);
    transition: transform var(--cp-transition-ease), box-shadow var(--cp-transition-ease)
}

.tips-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow-pop)
}

.tips-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px 10px 0 0
}

.tips-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--cp-color-main) !important
}

.tips-item-text {
    margin: 0;
    padding: 1rem;
    flex-grow: 1;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--cp-color-text)
}

#nav-tips .tips-item-text::after {
    content: '';
    display: inline-block;
    width: .8em;
    height: .8em;
    margin-left: .4em;
    vertical-align: middle;
    position: relative;
    top: -.1em;
    background: url('../images/icon_window.svg') center/contain no-repeat
}

@media (max-width:480px) {
    #nav-tips .tips-list {
        flex-direction: column;
        align-items: center
    }

    #nav-tips .tips-item {
        width: 100%;
        max-width: 360px
    }
}

@media (min-width:768px) {
    .cp-tips-content-wrapper {
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 34px 40px 20px
    }

    .cp-tips-content {
        flex: 1
    }

    .cp-tips-content:last-child {
        margin-top: 0
    }

    #nav-tips h3 {
        font-size: 32px
    }

    .tips-list {
        gap: 2rem
    }

    .tips-item {
        width: calc((100% - 4rem)/3)
    }

    .tips-item img {
        height: 200px
    }

    .tips-item-text {
        font-size: 18px
    }
}

/* ===================================
   RECIPE
===================================== */
#recipe .recipe-logo {
    width: min(100%, 225px);
    height: auto;
    margin-bottom: 50px;
    filter: drop-shadow(var(--cp-shadow-subtle))
}

#recipe .cp-text {
    margin-bottom: 50px
}

#recipe .tips-list {
    gap: 1.2rem
}

#recipe .tips-item {
    width: calc(50% - .6rem)
}

#recipe .tips-item img {
    height: 100%;
    object-fit: contain;
    border-radius: 10px
}

#recipe .tips-item .tips-link {
    display: block;
    height: auto
}

#recipe .tips-item-text {
    display: none
}

#recipe .recipe-banner {
    display: block;
    margin-top: 70px
}

#recipe .recipe-banner img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--cp-shadow-subtle);
    transition: transform var(--cp-transition-ease), box-shadow var(--cp-transition-ease)
}

#recipe .recipe-banner img:hover {
    transform: scale(1.02);
    box-shadow: var(--cp-shadow-pop)
}

@media (min-width:768px) {
    #recipe .tips-list {
        gap: 2rem
    }

    #recipe .tips-item {
        width: calc((100% - 4rem)/3)
    }

    #recipe .tips-item img {
        height: auto
    }
}

/* ===================================
   RECOMMENDED / BANNERS
===================================== */
#recommended {
    background: var(--cp-color-beige);
}

.cp-banner-link {
    display: block;
    overflow: hidden;
    text-align: center;
    margin-inline: auto;
    box-shadow: var(--cp-shadow-subtle);
    transition: all var(--cp-transition-ease)
}

.cp-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-shadow-subtle)
}

.cp-banner-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 25px
}

.cp-banner-grid li {
    width: min(100%, 380px);
    margin-inline: auto
}

@media (min-width:768px) {
    .cp-banner-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px
    }
}

@media (min-width:1024px) {
    .cp-banner-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* ===================================
   RESPONSIVE TWEAKS
===================================== */
@media (min-width:768px) {
    body {
        font-size: 18px
    }

    .cp-text {
        text-align: center
    }

    br.hidden-sp {
        display: initial
    }

    .cp-section-title {
        font-size: 36px;
        margin-bottom: 50px;
        letter-spacing: .1em
    }

    .cp-button {
        font-size: 22px;
        width: min(100%, 500px)
    }
}