/* =========================================
RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #1d1d1d;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================
EC HERO
========================================= */

.ec-hero {
    position: relative;
    width: 100%;
    height: 58svh;
    background: #fff;
}


/* =========================================
HERO GLOW
========================================= */

.ec-glow {
    position: absolute;
    left: 50%;
    bottom: -330px;
    width: 850px;
    height: 650px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(250, 222, 106, .72) 0%,
            rgba(250, 227, 133, .36) 40%,
            rgba(255, 255, 255, 0) 75%);
    filter: blur(35px);
    animation: ecGlowFloat 12s ease-in-out infinite;
}

@keyframes ecGlowFloat {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-46%) scale(1.12);
    }
}


/* =========================================
HERO DOODLE
========================================= */

.ec-doodle {
    position: absolute;
    z-index: 100;
    pointer-events: none;
}

.doodle-truck {
    top: 200px;
    left: 14%;
    width: 130px;
    height: 70px;
    animation: doodleFloat1 6s ease-in-out infinite;
}

.truck-body {
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 80px;
    height: 38px;
    border: 3px solid #555;
    border-radius: 6px 0 0 6px;
    background: #f5cc4d;
}

.truck-cabin {
    position: absolute;
    right: 0;
    bottom: 14px;
    width: 45px;
    height: 38px;
    border: 3px solid #555;
    border-left: none;
    border-radius: 0 8px 5px 0;
    background: #fff;
}

.truck-wheel {
    position: absolute;
    bottom: 0;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #444;
}

.wheel-1 {
    left: 18px;
}

.wheel-2 {
    right: 18px;
}

.doodle-items {
    top: 200px;
    right: 14%;
    width: 170px;
    height: 110px;
    animation: doodleFloat2 8s ease-in-out infinite;
}

.item {
    position: absolute;
    border: 3px solid #555;
    border-radius: 8px;
    background: #f8cf50;
}

.item-1 {
    left: 5px;
    bottom: 5px;
    width: 45px;
    height: 45px;
}

.item-2 {
    left: 55px;
    bottom: 8px;
    width: 35px;
    height: 50px;
}

.item-3 {
    left: 95px;
    bottom: 15px;
    width: 42px;
    height: 35px;
}

.item-4 {
    right: 0;
    bottom: 30px;
    width: 30px;
    height: 30px;
}

.doodle-lines {
    display: flex;
    gap: 9px;
}

.lines-left {
    top: 140px;
    left: 7%;
}

.lines-right {
    top: 145px;
    right: 7%;
}

.doodle-lines span {
    width: 2px;
    height: 65px;
    border-radius: 10px;
    background: #555;
    transform: rotate(35deg);
}

.doodle-lines span:nth-child(2) {
    height: 45px;
    transform: rotate(20deg);
}

.doodle-lines span:nth-child(3) {
    height: 70px;
    transform: rotate(45deg);
}

.doodle-lines span:nth-child(4) {
    height: 40px;
    transform: rotate(65deg);
}


/* =========================================
HERO WAVE
========================================= */

.ec-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 15;
    width: 100%;
    height: 330px;
    pointer-events: none;
}

.ec-wave svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.ec-wave path {
    fill: #fff3bf;
}


/* =========================================
WAVE CONTENT
========================================= */

.ec-wave-content {
    position: absolute;
    top: 120%;
    left: 50%;
    z-index: 3;
    width: min(760px, 90%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: #252525;
}

.ec-wave-speech {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 18px;
    border: 2px solid #333;
    border-radius: 999px;
    background: #fffdf4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.ec-wave-speech::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #333;
}

.ec-wave-speech::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    z-index: 2;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fffdf4;
}

.ec-wave-label {
    margin: 5px 0;
    color: #0baeba;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .25em;
}

.ec-wave-content h2 {
    margin: 0;
    color: #252525;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .08em;
    text-shadow: 0 2px 0 rgba(255, 255, 255, .25);
}

.ec-wave-sub {
    margin-top: 13px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .1em;
}


/* =========================================
INFO NAV
========================================= */

.ec-info-nav {
    position: relative;
    width: 100%;
    padding-top: 195px;
    background: #fff3bf;
}

.ec-info-nav-inner {
    width: min(1000px, 88%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ec-info-item {
    position: relative;
    min-height: 110px;
    padding: 5px 40px 15px;
    border: 0;
    border-left: 1px solid #18b8bd;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #111;
    cursor: pointer;
}

.ec-info-item:last-child {
    border-right: 1px solid #18b8bd;
}

.ec-info-title {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    white-space: nowrap;
}

.ec-info-arrow {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 15px;
    border-radius: 50%;
    background: #19b9ad;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    transition: transform .35s ease, background .35s ease;
}

.ec-info-item:hover .ec-info-arrow {
    transform: translateY(3px);
    background: #0da5a8;
}

.ec-info-item.active .ec-info-arrow {
    transform: rotate(180deg);
}


/* =========================================
EC NEWS / SHOP / AWARDS
========================================= */

.ec-news-section {
    position: relative;
    width: 100%;
    padding: 120px 20px 75px;
    background: #fff3c8;
    overflow: hidden;
}

.ec-news-box {
    position: relative;
    z-index: 2;
    width: min(1020px, 92%);
    margin: 0 auto;
    padding: 48px 62px 90px;
    border-top: 3px solid #f0b400;
    border-bottom: 3px solid #f0b400;
    background: #fff;
}

.ec-news-top-decoration {
    position: absolute;
    top: -55px;
    left: 50%;
    z-index: 3;
    width: 100px;
    height: 70px;
    transform: translateX(-50%);
}

.ec-news-top-decoration::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 85px;
    height: 85px;
    transform: translateX(-50%) rotate(45deg);
    border-top: 4px solid #f0b400;
    border-left: 4px solid #f0b400;
    background: #fff3c8;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.ec-news-top-decoration span {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translateX(-50%);
    border: 4px solid #f0b400;
    border-radius: 50%;
    background: #fff;
}

.ec-news-heading {
    margin-bottom: 45px;
    text-align: center;
}

.ec-news-en {
    margin: 0;
    color: #10b5c1;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    letter-spacing: .25em;
}

.ec-news-heading h2 {
    margin-top: 10px;
    color: #333;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: .08em;
}

.ec-news-lead {
    margin-top: 12px;
    color: #777;
    font-size: 12px;
    letter-spacing: .08em;
}

.ec-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.ec-news-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(45px);
    transition:
        opacity 1s cubic-bezier(.22, 1, .36, 1),
        transform 1s cubic-bezier(.22, 1, .36, 1);
}

.ec-news-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ec-news-card:nth-child(2) {
    transition-delay: .15s;
}

.ec-news-card:nth-child(3) {
    transition-delay: .3s;
}

.ec-news-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #f0b400;
    text-decoration: none;
}

.ec-news-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .78;
    overflow: hidden;
    border-radius: 10px;
    background: #f0f0f0;
}

.ec-news-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.ec-news-card:hover .ec-news-image img {
    transform: scale(1.06);
}

.ec-news-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 16px;
}

.ec-news-meta time {
    color: #d89f00;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
}

.ec-news-meta span {
    min-width: 75px;
    height: 22px;
    padding: 0 12px;
    background: #f0b400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.ec-news-card h3 {
    min-height: 52px;
    margin-top: 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .05em;
    transition: color .3s ease;
}

.ec-news-card:hover h3 {
    color: #0daeb8;
}

.ec-news-more {
    width: 145px;
    height: 42px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: 1.5px solid #f0b400;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #e0a400 !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    text-align: center;
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}

.ec-news-more span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ec-news-more span:first-child {
    transform: translateY(7px);
}

.ec-news-more span:last-child {
    transform: translateY(10px);
    font-size: 17px;
    line-height: 1;
    transition: transform .3s ease;
}

.ec-news-more:hover {
    background: #f0b400;
    color: #fff !important;
    transform: translateY(-3px);
}

.ec-news-more:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================
DOODLE ANIMATION
========================================= */

@keyframes doodleFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(12px) rotate(2deg);
    }
}

@keyframes doodleFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 800px) {

    .ec-news-section {
        padding: 90px 15px 100px;
    }

    .ec-news-box {
        width: 94%;
        padding: 40px 22px 45px;
    }

    .ec-news-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ec-news-heading h2 {
        font-size: 30px;
    }

    .ec-news-lead {
        font-size: 11px;
        line-height: 1.8;
    }

    .ec-news-top-decoration {
        transform: translateX(-50%) scale(.75);
    }

}


/* =========================================================
SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    main,
    section,
    footer {
        max-width: 100%;
    }


    /* HEADER / LOGO */

    .header {
        padding: 20px;
    }

    .logo-img {
        width: 150px;
        height: auto;
    }


    /* HERO */

    .ec-hero {
        position: relative;
        width: 100%;
        height: 505px;
        min-height: 0;
        padding-top: 80px;
        overflow: hidden;
        background: #fff;
    }

    .doodle-truck {
        top: 104px;
        left: 25px;
        width: 105px;
        height: 58px;
        transform: scale(.7);
        transform-origin: center;
    }

    .doodle-items {
        top: 108px;
        right: 25px;
        width: 170px;
        height: 90px;
        transform: scale(.7);
        transform-origin: center;
    }

    .doodle-lines {
        display: none;
    }


    /* SP HERO WAVE */

    .ec-wave {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 400px;
        overflow: hidden;
        pointer-events: none;
    }

    .ec-wave::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 0;
        width: 100%;
        height: 80%;
        background: #fff1c8;
    }

    .ec-wave svg {
        position: relative;
        left: 50%;
        top: -20px;
        z-index: 1;
        width: 180%;
        height: 25%;
        transform: translateX(-50%);
        display: block;
    }

    .ec-wave path {
        fill: #fff1c8;
    }

    .ec-wave-content {
        position: absolute;
        top: 54%;
        left: 50%;
        z-index: 2;
        width: 86%;
        padding: 0 8px;
        transform: translate(-50%, -50%);
        background: #fff3c8;
        text-align: center;
    }

    .ec-wave-speech {
        margin-bottom: 13px;
        padding: 6px 13px;
        font-size: 10px;
        line-height: 1.6;
        letter-spacing: .05em;
    }

    .ec-wave-label {
        margin: 7px 0 10px;
        font-size: 11px;
        letter-spacing: .25em;
    }

    .ec-wave-content h2 {
        margin: 0;
        color: #333;
        font-size: 38px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: .12em;
    }

    .ec-wave-sub {
        width: 100%;
        margin: 25px auto 0;
        color: #333;
        font-size: 12px;
        font-weight: 500;
        line-height: 2.2;
        letter-spacing: .08em;
    }


    /* INFO NAV */

    .ec-info-nav {
        padding: 45px 0 20px;
        background: #fff;
    }

    .ec-info-nav-inner {
        width: 88%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ec-info-item {
        min-height: 85px;
        padding: 5px 8px 12px;
    }

    .ec-info-title {
        font-size: 11px;
        letter-spacing: .04em;
        white-space: normal;
        text-align: center;
    }

    .ec-info-arrow {
        margin-top: 11px;
    }


    /* SHOP / AWARDS */

    .ec-news-section {
        padding: 75px 12px 70px;
    }

    .ec-news-box {
        width: 100%;
        padding: 42px 18px 100px;
    }

    .ec-news-top-decoration {
        top: -48px;
        transform: translateX(-50%) scale(.72);
    }

    .ec-news-heading {
        margin-bottom: 38px;
    }

    .ec-news-en {
        font-size: 10px;
        letter-spacing: .2em;
    }

    .ec-news-heading h2 {
        margin-top: 8px;
        font-size: 28px;
        line-height: 1.4;
    }

    .ec-news-lead {
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.8;
    }

    .ec-news-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ec-news-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        align-items: stretch;
    }

    .ec-news-image {
        width: 100%;
        aspect-ratio: 1 / .72;
        border-radius: 9px;
    }

    .ec-news-meta {
        gap: 12px;
        margin-top: 13px;
    }

    .ec-news-meta time {
        font-size: 9px;
    }

    .ec-news-meta span {
        min-width: 62px;
        height: 20px;
        padding: 0 9px;
        font-size: 9px;
    }

    .ec-news-card h3 {
        min-height: 0;
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.75;
    }


    /* もっと見る */

    .ec-news-more {
        width: 132px;
        height: 40px;
        margin-top: 18px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 !important;
        font-size: 10px;
        line-height: 1 !important;
    }

    .ec-news-more span {
        position: relative;
        top: 1px;
        transform: none;
    }


    /* FOOTER */

    .topics-section {
        min-height: 0;
    }

    .site-footer {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
SMALL SMARTPHONE
========================================================= */

@media (max-width: 390px) {

    .logo-img {
        width: 135px;
    }

    .ec-hero {
        height: 505px;
    }

    .doodle-truck {
        left: 15px;
        transform: scale(.62);
    }

    .doodle-items {
        right: 10px;
        transform: scale(.62);
    }

    .ec-wave-content h2 {
        font-size: 36px;
    }

    .ec-wave-speech {
        font-size: 9px;
    }

    .ec-wave-sub {
        font-size: 10px;
    }

    .ec-info-nav-inner {
        width: 94%;
    }

    .ec-info-title {
        font-size: 10px;
    }

    .ec-news-box {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ec-news-heading h2 {
        font-size: 25px;
    }

}

/* =========================================
NAV OPEN中はEC装飾を隠す
========================================= */

body.menu-open .ec-doodle,
body.menu-open .doodle-truck,
body.menu-open .doodle-items,
body.menu-open .ec-wave,
body.menu-open .ec-glow {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================
AWARDS LIST
========================================= */

.ec-awards-list {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid #e7dfc7;
}

.ec-award-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: center;

    padding: 28px 12px;

    border-bottom: 1px solid #e7dfc7;
}

.ec-award-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ec-award-meta time {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #d89f00;
}

.ec-award-meta span {
    min-width: 70px;
    height: 24px;

    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #f0b400;
    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.ec-award-title {
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: .04em;

    color: #444;
}


/* =========================================
AWARDS SP
========================================= */

@media (max-width: 700px) {

    .ec-award-item {
        grid-template-columns: 1fr;
        gap: 12px;

        padding: 22px 5px;
    }

    .ec-award-meta {
        gap: 12px;
    }

    .ec-award-title {
        font-size: 13px;
        line-height: 1.8;
    }

}

/* =========================================
SHOP LIST - SP 見やすく調整
========================================= */

@media (max-width: 700px) {

    .ec-news-section {
        padding: 70px 12px 80px;
    }

    .ec-news-box {
        width: 100%;
        padding: 38px 18px 45px;
    }

    .ec-news-heading {
        margin-bottom: 34px;
    }

    .ec-news-heading h2 {
        font-size: 28px;
    }

    .ec-news-lead {
        margin-top: 10px;
        font-size: 11px;
        line-height: 1.7;
    }


    /* 1ショップごとの余白 */
    .ec-news-grid {
        gap: 34px;
    }

    .ec-news-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }


    /* ロゴ画像エリアを小さく */
    .ec-news-image {
        aspect-ratio: auto;
        height: 170px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #fff;
    }

    .ec-news-image img {
        width: 78%;
        height: 78%;

        object-fit: contain;
    }


    /* 楽天 / Yahoo など */
    .ec-news-meta {
        margin-top: 14px;
        gap: 12px;
    }

    .ec-news-meta span {
        min-width: 72px;
        height: 24px;
        padding: 0 10px;

        font-size: 10px;
    }


    /* ショップ名 */
    .ec-news-card h3 {
        min-height: 0;
        margin-top: 10px;

        font-size: 14px;
        line-height: 1.6;
    }


    /* もっと見る */
    .ec-news-more {
        width: 145px;
        height: 40px;

        margin-top: 20px;

        font-size: 10px;
    }
}
