@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap");


/* =========================================================
   Awashima Coffee Theme - Header / Drawer
   2026-09-13
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.aw-shopHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 118px;

    background: rgba(255, 255, 255, .98);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .055);

    transition:
        height .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.aw-shopHeader *,
.aw-menuDrawer * {
    box-sizing: border-box;
}


/* =========================================================
   INNER
========================================================= */

.aw-shopHeader__inner {
    display: flex;
    align-items: center;

    width: 100%;
    height: 118px;

    padding:
        0
        300px
        0
        46px;

    transition:
        height .35s ease,
        padding .35s ease;
}


/* =========================================================
   BRAND
========================================================= */

.aw-shopHeader__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.aw-shopHeader__logo {
    display: block;
}

.aw-shopHeader__logo img {
    display: block;

    width: 230px;
    max-width: none;

    transition:
        width .35s ease,
        opacity .35s ease;
}


/* =========================================================
   PC NAV
========================================================= */

.aw-shopHeader__nav {
    display: flex;
    flex: 1;

    justify-content: flex-end;
    align-items: center;

    gap: 25px;

    padding:
        0
        26px;

    white-space: nowrap;
}

.aw-shopHeader__nav a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 48px;

    color: #3d3028;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .075em;

    text-decoration: none;

    transition:
        color .25s ease,
        opacity .25s ease,
        font-size .35s ease;
}

.aw-shopHeader__nav a:hover,
.aw-shopHeader__nav a.is-current {
    color: #793d12;
}

.aw-shopHeader__nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 100%;
    height: 1px;

    background: #793d12;

    opacity: 0;

    transform:
        translateX(-50%)
        scaleX(0);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.aw-shopHeader__nav a:hover::after,
.aw-shopHeader__nav a.is-current::after {
    opacity: 1;

    transform:
        translateX(-50%)
        scaleX(1);
}


/* =========================================================
   ACCOUNT / CART / MENU
========================================================= */

.aw-shopHeader__shop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;

    display: flex;
    align-items: stretch;

    height: 118px;

    transition:
        height .35s ease;
}

.aw-shopHeader__icon,
.aw-shopHeader__menu {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 68px;
    height: 118px;

    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .08);

    background: #4b2817;

    transition:
        width .35s ease,
        height .35s ease,
        background-color .25s ease;
}

.aw-shopHeader__icon:hover {
    background: #5c3420;
}

.aw-shopHeader__icon img {
    display: block;
    width: 26px;
}

.aw-shopHeader__menu {
    flex-direction: column;

    gap: 9px;

    width: 92px;

    background: #1d0d07;

    cursor: pointer;
}

.aw-shopHeader__menu span {
    display: block;

    width: 38px;
    height: 1px;

    background: #fff;
}


/* =========================================================
   SCROLLED
========================================================= */

.aw-shopHeader.is-scrolled {
    height: 82px;

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0
        5px
        18px
        rgba(0, 0, 0, .07);
}

.aw-shopHeader.is-scrolled .aw-shopHeader__inner {
    height: 82px;
    padding-right: 258px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__logo img {
    width: 185px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__nav a {
    font-size: 13px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__shop,
.aw-shopHeader.is-scrolled .aw-shopHeader__icon,
.aw-shopHeader.is-scrolled .aw-shopHeader__menu {
    height: 82px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__icon {
    width: 62px;
}

.aw-shopHeader.is-scrolled .aw-shopHeader__menu {
    width: 82px;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1399px) {

    .aw-shopHeader {
        height: 92px;
    }

    .aw-shopHeader__inner {
        height: 92px;

        padding:
            0
            246px
            0
            26px;
    }

    .aw-shopHeader__logo img {
        width: 205px;
    }

    .aw-shopHeader__nav {
        display: none;
    }

    .aw-shopHeader__shop,
    .aw-shopHeader__icon,
    .aw-shopHeader__menu {
        height: 92px;
    }

    .aw-shopHeader__icon {
        width: 68px;
    }

    .aw-shopHeader__menu {
        width: 92px;
    }


    .aw-shopHeader.is-scrolled {
        height: 78px;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__inner {
        height: 78px;
        padding-right: 230px;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__shop,
    .aw-shopHeader.is-scrolled .aw-shopHeader__icon,
    .aw-shopHeader.is-scrolled .aw-shopHeader__menu {
        height: 78px;
    }

}


/* =========================================================
   SP HEADER
========================================================= */

@media screen and (max-width: 767px) {

    .aw-shopHeader {
        height: 72px;
        overflow: hidden;
    }

    .aw-shopHeader__inner {
        height: 72px;

        justify-content: center;

        padding:
            0
            72px;

        overflow: hidden;
    }

    .aw-shopHeader__brand {
        display: flex;
        flex: 1;

        justify-content: center;

        overflow: hidden;
    }

    .aw-shopHeader__logo {
        overflow: hidden;
    }

    .aw-shopHeader__logo img {
        width: 158px;
    }

    .aw-shopHeader__shop {
        position: absolute;
        top: 0;
        right: 0;

        height: 72px;
    }

    .aw-shopHeader__icon {
        display: none;
    }

    .aw-shopHeader__menu {
        width: 72px;
        height: 72px;

        gap: 7px;

        border-left: 0;

        background: #fff;
    }

    .aw-shopHeader__menu span {
        width: 32px;
        height: 1px;

        background: #452b1e;
    }


    /* -----------------------------------------
       scrolled
    ----------------------------------------- */

    .aw-shopHeader.is-scrolled {
        height: 64px;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__inner {
        height: 64px;

        justify-content: center;

        padding:
            0
            64px;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__logo img {
        width: 150px;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__shop,
    .aw-shopHeader.is-scrolled .aw-shopHeader__menu {
        height: 64px;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__menu {
        width: 64px;

        background: #fff;
    }

    .aw-shopHeader.is-scrolled .aw-shopHeader__menu span {
        background: #452b1e;
    }

}


/* =========================================================
   DRAWER / BODY LOCK
========================================================= */

body.is-menuOpen {
    overflow: hidden;
}

.aw-menuDrawer {
    position: fixed;
    inset: 0;
    z-index: 9999;

    width: 100%;
    height: 100%;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.aw-menuDrawer.is-open {
    visibility: visible;
    opacity: 1;
}


/* =========================================================
   OVERLAY
========================================================= */

.aw-menuDrawer__overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(20, 12, 8, .42);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


/* =========================================================
   DRAWER PANEL
========================================================= */

.aw-menuDrawer__panel {
    position: absolute;
    top: 0;
    right: 0;

    width: min(560px, 100%);
    height: 100%;

    padding:
        74px
        64px
        70px;

    overflow-y: auto;

    background: #f7f3ee;

    box-shadow:
        -12px
        0
        44px
        rgba(0, 0, 0, .10);

    transform: translateX(100%);

    transition:
        transform .45s ease;
}

.aw-menuDrawer.is-open .aw-menuDrawer__panel {
    transform: translateX(0);
}


/* =========================================================
   CLOSE
========================================================= */

.aw-menuDrawer__close {
    position: absolute;
    top: 28px;
    right: 30px;

    width: 64px;
    height: 64px;

    padding: 0;

    border:
        1px
        solid
        rgba(68, 43, 30, .18);

    border-radius: 50%;

    background: transparent;

    color: #452b1e;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;

    cursor: pointer;

    transition:
        border-color .2s ease,
        color .2s ease,
        background-color .2s ease;
}

.aw-menuDrawer__close:hover {
    border-color: #793d12;
    color: #793d12;
    background: rgba(255, 255, 255, .4);
}


/* =========================================================
   DRAWER BRAND
========================================================= */

.aw-menuDrawer__brand {
    padding:
        10px
        100px
        32px
        0;
}

.aw-menuDrawer__brand a {
    display: inline-block;
}

.aw-menuDrawer__brand img {
    display: block;

    width: 185px;
    max-width: 100%;
}


/* =========================================================
   DRAWER NAV
========================================================= */

.aw-menuDrawer__nav {
    display: block;
}


/* =========================================================
   DRAWER GROUP
========================================================= */

.aw-menuDrawer__group {
    margin: 0;
    padding: 29px 0 27px;

    border-top:
        1px
        solid
        rgba(68, 43, 30, .14);
}

.aw-menuDrawer__label {
    margin: 0 0 13px;

    color: #9a5b36;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .20em;
}

.aw-menuDrawer__nav a {
    position: relative;

    display: block;

    padding:
        8px
        28px
        8px
        0;

    border: 0;

    color: #2f241d;

    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: .08em;

    text-decoration: none;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.aw-menuDrawer__nav a::after {
    content: "›";

    position: absolute;
    top: 50%;
    right: 2px;

    color: #99745d;

    font-size: 17px;

    transform: translateY(-50%);
}

.aw-menuDrawer__nav a:hover {
    padding-left: 5px;
    color: #793d12;
}


/* =========================================================
   ACCOUNT
========================================================= */

.aw-menuDrawer__group--account {
    padding-bottom: 22px;
}


/* =========================================================
   LEGAL
========================================================= */

.aw-menuDrawer__legal {
    display: flex;
    flex-wrap: wrap;

    gap:
        5px
        22px;

    padding-top: 20px;

    border-top:
        1px
        solid
        rgba(68, 43, 30, .14);
}

.aw-menuDrawer__legal a {
    padding: 4px 0;

    color: #71655e;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: .04em;
}

.aw-menuDrawer__legal a::after {
    display: none;
}

.aw-menuDrawer__legal a:hover {
    padding-left: 0;
}


/* =========================================================
   SP DRAWER
========================================================= */

@media screen and (max-width: 767px) {

    .aw-menuDrawer__panel {
        width: 100%;

        padding:
            83px
            25px
            44px;
    }

    .aw-menuDrawer__close {
        top: 16px;
        right: 17px;

        width: 55px;
        height: 55px;

        font-size: 9px;
    }

.aw-menuDrawer__brand {
    padding:
        0
        72px
        20px
        0;
    transform: translateY(-6px);
}

.aw-menuDrawer__brand img {
    width: 170px;
}

    .aw-menuDrawer__group {
        padding:
            23px
            0
            21px;
    }

    .aw-menuDrawer__label {
        margin-bottom: 7px;

        color: #8a4f2e;

        font-size: 10px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: .18em;
    }

    .aw-menuDrawer__nav a {
        padding:
            7px
            25px
            7px
            0;

        font-size: 15px;
        line-height: 1.7;
        letter-spacing: .07em;
    }

    .aw-menuDrawer__legal {
        display: block;

        padding-top: 18px;
    }

    .aw-menuDrawer__legal a {
        padding: 4px 0;

        font-size: 10px;
    }

}


/* =========================================================
   FOCUS
========================================================= */

.aw-menuDrawer a:focus,
.aw-menuDrawer button:focus,
.aw-shopHeader a:focus,
.aw-shopHeader button:focus {
    outline: none;
    box-shadow: none;
}


/* =========================================================
   EC-CUBE DEFAULT HEADER RESET
========================================================= */

.ec-headerRole,
.ec-headerTitle,
.ec-headerTitle__title,
.ec-headerTitle__title a,
.ec-headerTitle img {
    display: none !important;
}