@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600&display=swap'); :root {
    --navy: #062f69;
    --gray: #f6f7f8;
    --content: 1200px
}

/* 2026-08-20 menu and wave corrections */
.wave-top,.wave-bottom {
    height: 90px;
    background-size: 1200px 90px!important;
    animation: wave-broad-right-to-left 20s linear infinite!important
}

.wave-top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='90' viewBox='0 0 1200 90'%3E%3Cpath fill='%23fff' d='M0 0H1200V42C1000 76 800 8 600 42S200 76 0 42Z'/%3E%3C/svg%3E")!important
}

.wave-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='90' viewBox='0 0 1200 90'%3E%3Cpath fill='%23fff' d='M0 0H1200V42C1000 76 800 8 600 42S200 76 0 42Z'/%3E%3C/svg%3E")!important;
    transform: rotate(180deg)
}

@keyframes wave-broad-right-to-left {
    from { background-position-x: 0 }
    to { background-position-x: -1200px }
}

@media(max-width: 768px) {
    .wave-top,.wave-bottom {
        height: 48px;
        background-size: 720px 48px!important;
        animation-duration: 16s!important
    }

    @keyframes wave-broad-right-to-left {
        from { background-position-x: 0 }
        to { background-position-x: -720px }
    }
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: #333;
    font-family: 'Noto Sans JP',sans-serif;
    line-height: 1.75
}

body.menu-open {
    overflow: hidden
}

body.mega-open { overflow: visible }

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    transition: .2s;
}

button,input {
    font: inherit
}

#wrapper {
    width: 100%;
    overflow: hidden
}

#contents,#contents>article,#main-column {
    /* width: 100%!important; */
    /* max-width: none!important; */
    /* margin: 0!important; */
    /* padding: 0!important; */
    /* float: none!important; */
}

#sub-column { display: block }

body.is-top-page #sub-column,.header_area,.footer_area {
    display: none!important
}

/* header */
.site-header {
    position: relative;
    z-index: 100;
    background: #fff
}

.shipping-bar {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.header-main {
    height: 136px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 36px;
}

.header-logo {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    padding: 6px 12px 18px;
    border-radius: 0 0 50% 50%;
    background: #fff
}

a.header-logo:hover img{
    opacity: 1.0;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.global-nav {
    width: min(100%,1200px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 168px;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-list a,.category-trigger {
    display: block;
    padding: 0 30px;
    border: 0;
    background: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    white-space: nowrap;
    cursor: pointer;
    font-size: 17px;
}

.category-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.category-trigger img {
    width: 9px;
    height: 5px;
    object-fit: contain
}

.nav-list li+li {
    border-left: 1px solid #e0e5eb;
}

.header-tools {
    position: absolute;
    top: 24px;
    right: max(30px,calc((100vw - 1200px)/2));
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-icon {
    position: relative;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer
}

.header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.cart-count {
    position: absolute;
    right: -10px;
    top: -8px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    display: none;
}

.search-box {
    position: absolute;
    right: 109px;
    top: -5px;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width .4s ease,opacity .25s
}

.search-box.is-open {
    width: 370px;
    opacity: 1
}

.search-box form,.mobile-search form {
    display: flex;
    height: 42px;
    border-radius: 24px;
    background: #f1f1f1;
    overflow: hidden
}

.search-box input,.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 0 20px;
    border: 0;
    outline: none;
    background: transparent
}

.search-box button,.mobile-search button {
    width: 52px;
    border: 0;
    background: transparent
}

.search-box button img,.mobile-search button img {
    width: 22px;
    position: relative;
    top: -2px;
}

.mobile-tools,.mobile-drawer {
    display: none
}

/* mega */
.mega-menu {
    position: absolute;
    z-index: 90;
    inset: 168px 0 auto;
    max-height: none;
    padding: 60px max(30px,calc((100vw - 1200px)/2));
    overflow: visible;
    background: #f6f6f6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .2s;
}

.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none
}

.mega-title {
    max-width: 1200px;
    margin: 0px auto 20px;
    font-size: 23px;
    font-weight: 400;
    float: left;
}

.mega-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    clear: both;
}

.mega-card {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px #0001;
    text-align: center
}

.mega-card img {
    width: 100%;
    aspect-ratio: 1.7/1;
    object-fit: cover
}

.mega-card span {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 17px;
    line-height: 140%;
}

.page-overlay {
    position: fixed;
    z-index: 80;
    inset: 168px 0 0;
    background: #0003;
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.page-overlay.is-open {
    opacity: 1;
    visibility: visible
}

a.all-item {
    display: inline-flex;
    width: 250px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--navy);
    border-radius: 30px;
    color: var(--navy);
    background: #FFF;
    float: right;
    margin: -15px auto 20px;
    font-size: 16px;
    transition: .2s;
    letter-spacing: 0.05em;
    position: relative;
}

a.all-item:hover{
    opacity: 0.7;
}

a.all-item::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1.5px solid var(--navy);
  border-right: 1.5px solid var(--navy);
  transform: rotate(45deg);
  box-sizing: border-box;
}


/* hero */
.hero-slider {
    margin: 0 -8%;
    overflow: visible
}

.hero-slide {
    padding: 0 8px
}

.hero-slide img {
    width: 100%;
    height: min(31vw,520px);
    object-fit: cover;
    border-radius: 6px
}

.hero-slider .slick-slide {
    /* opacity: .5; */
    transition: .3s
}

.hero-slider .slick-active {
    opacity: 1
}

.hero-slider .slick-dots {
    bottom: -38px
}

.hero-slider .slick-dots li {
    margin: 0
}

.hero-slider .slick-dots li button:before {
    font-size: 11px;
    color: #ccc;
    opacity: 1
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #777
}

.hero-slider .slick-prev,.hero-slider .slick-next {
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.hero-slider .slick-prev:before,.hero-slider .slick-next:before {
    content: none
}

.hero-slider .slick-prev {
    left: 1%;
    background-image: url('https://www.estore-test89.com/images/arrow_left.svg') !important;
}

.hero-slider .slick-next {
    right: 1%;
    background-image: url('https://www.estore-test89.com/images/arrow_right.svg') !important;
}

.sub-banners {
    width: min(100% - 40px,1200px);
    margin: 80px auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sub-banners a {
    overflow: hidden;
    border: 1px solid #dce1e6;
    border-radius: 5px
}

.sub-banners img {
    width: 100%;
    transition: .5s
}

.sub-banners a:hover img {
    transform: scale(1.03)
}

/* sections */
.top-section {
    position: relative;
    padding: 0;
}

.top-section.bg-gray {
    background: var(--gray)
}

.wave-top,.wave-bottom {
    position: absolute;
    z-index: 0;
    left: -100%;
    width: 300%;
    height: 80px;
    background-repeat: repeat-x;
    background-size: 720px 80px;
    animation: wave 14s linear infinite;
    pointer-events: none
}

.wave-top {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='80'%3E%3Cpath fill='%23fff' d='M0 0h720v34C600 72 480 5 360 42S120 70 0 35z'/%3E%3C/svg%3E")
}

.wave-bottom {
    bottom: -1px;
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='80'%3E%3Cpath fill='%23fff' d='M0 0h720v34C600 72 480 5 360 42S120 70 0 35z'/%3E%3C/svg%3E");
    animation-name: wave2
}

@keyframes wave {
    to {
        transform: translateX(-720px)
    }
}

@keyframes wave2 {
    to {
        transform: rotate(180deg) translateX(720px)
    }
}

.dog-deco {
    position: absolute;
    z-index: 2;
    width: 180px;
    bottom: -20px;
    opacity: 0;
    transition: transform .9s cubic-bezier(.22,1,.36,1),opacity .6s
}

.dog-deco.left {
    left: 5%;
    transform: translateX(-180px)
}

.dog-deco.right {
    right: 5%;
    transform: translateX(180px)
}

.dog-deco.is-visible {
    opacity: 1;
    transform: none
}

.newItem {
    position: relative;
    z-index: 1;
    width: min(100%,1200px);
    margin: auto;
    padding: 150px 0 150px;
}

.ranking {
    position: relative;
    z-index: 1;
    width: min(100%,1200px);
    margin: auto;
    padding: 50px 0 70px;
}

.newItem>h2,.ranking>h2 {
    /* font-size: 0; */
    text-align: center;
    margin: 0 0 30px;
    font-size: 17px;
}

.newItem>h2:before,.ranking>h2:before {
    display: block;
    color: var(--navy);
    font: 400 38px/1.25 'Cardo',serif;
    letter-spacing: .12em
}

.newItem>h2:before {
    content: 'NEW ARRIVAL'
}

.ranking>h2:before {
    content: 'RANKING';
    padding-top: 40px;
    background: url('https://www.estore-test89.com/images/icn_crown.svg') center top/51px no-repeat;
}

.newItem>h2:after,.ranking>h2:after {
    display: block;
    color: #333;
    font: 500 14px 'Noto Sans JP',sans-serif
}


.newItem .column-set {
    display: grid!important;
    grid-template-columns: repeat(4,1fr);
    gap: 28px 24px
}

.ranking .column-set {
    display: grid!important;
    grid-template-columns: repeat(5,1fr);
    gap: 20px
}

.newItem .column4,.ranking .column5 {
    width: auto!important;
    margin: 0!important;
    padding: 0!important;
    float: none!important;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 5px #0001
}

.ranking .column5 {
    box-shadow: none
}

.itemThumb-wrap {
    position: relative
}

.itemThumb {
    margin: 0!important
}

.itemThumb a,.item-list-span-img {
    display: block
}

.itemThumb img {
    display: block;
    width: 100%!important;
    aspect-ratio: 1;
    object-fit: cover;
}

.itemThumb-wrap .badge {
    /* position: absolute!important; */
    z-index: 2;
    /* left: 12px!important; */
    /* top: 12px!important; */
    /* width: 39px!important; */
    /* height: auto!important; */
}

.ranking .badge {
    width: 52px!important;
    padding: 10px 0 0 10px;
}

.itemThumb-wrap .badge img {
    /* width: 100%!important; */
    /* height: auto!important; */
    /* aspect-ratio: auto!important; */
    /* object-fit: contain!important; */
}

.newItem h3,.ranking h3 {
    min-height: unset;
    margin: 0!important;
    padding: 7px 15px 0px!important;
    font-size: 15px!important;
    line-height: 1.45;
    font-weight: 400!important;
}

.newItem .price,.ranking .price {
    margin: 0!important;
    padding: 8px 15px 20px!important;
    color: #888;
    font-size: 13px
}

.ranking h3,.ranking .price {
    padding: 0 !important;
    min-height: unset;
    margin: 0 0 10px !important;
}

.scroll-progress {
    display: none
}

/* instagram, news, history */
.top_instagram {
    position: relative;
    z-index: 1;
    width: min(100%,1200px);
    margin: auto;
    text-align: center;
    padding: 150px 0 120px;
}

.top_instagram h3 {
    margin: 0 0 34px;
    font-size: 0
}

.top_instagram h3:before {
    content: '犬と人との暮らしを、もっと豊かに';
    display: block;
    margin-bottom: 24px;
    color: var(--navy);
    font: 400 30px 'Noto Sans JP',sans-serif;
    letter-spacing: .12em
}

.top_instagram h3:after {
    content: '';
    display: inline-block;
    width: 160px;
    height: 33px;
    background: url('https://www.estore-test89.com/images/icn_instagram_word.svg') center/contain no-repeat
}

#instagram {
    display: grid!important;
    grid-template-columns: repeat(5,1fr);
    gap: 20px
}

#instagram>div a,#instagram img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px
}

.btn_more {
    margin-top: 45px
}

.btn_more a {
    display: inline-flex;
    width: 190px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--navy);
    border-radius: 25px;
    color: var(--navy);
    font: 400 17px 'Cardo',serif;
    background: #FFF;
    transition: .2s;
}

.btn_more a:hover {
    opacity: .7;
    transition: .2s;
}


.news {
    width: min(100%,1200px);
    margin: auto;
    padding: 115px 20px;
    position: relative
}

.news h2,.recentlyViewed .section__title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.news h2:before,.recentlyViewed .section__title:before {
    display: block;
    font: 400 38px 'Cardo',serif;
    letter-spacing: .12em
}

.news h2:before {
    content: 'INFORMATION' !important;
}

.recentlyViewed .section__title:before {
    content: 'HISTORY';
    color: #062f69;
}

.news h2:after,.recentlyViewed .section__title:after {
    display: block;
    color: #333;
    font: 500 14px 'Noto Sans JP',sans-serif
}


dl.news-box {
    margin: 0;
    padding: 30px 4px;
    border-bottom: 1px solid #ddd;
    /* display: grid; */
    /* grid-template-columns: 130px minmax(0,1fr); */
    /* gap: 10px 0; */
}

.news-box dt,.news-box dd {
    margin: 0;
    font-size: 17px;
    letter-spacing: 0.03em;
    width: 100%;
}

.news-box h3 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.9;
}

.news-box p {
    margin: 0;
    line-height: 1.9;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.recentlyViewed {
    position: relative;
    padding: 110px 20px 145px;
    background: var(--gray)
}

.info-history-dog {
    top: 0;
    right: -3vw;
    bottom: auto
}

.recentlyViewed__inner {
    width: min(100%,1200px);
    margin: auto
}

.product__lists {
    display: grid!important;
    grid-template-columns: repeat(5,1fr);
    gap: 20px
}

.recent-item {
    width: auto!important;
    margin: 0!important;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 5px #0001
}

.recent-item .item-img {
    margin: 0
}

.recent-item .item-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover
}

.recent-item .item-name {
    /* min-height: 54px; */
    margin: 0;
    padding: 8px 14px 4px;
    font-size: 14px
}

.recent-item .item-price {
    margin: 0;
    padding: 8px 14px 16px;
    color: #888;
    font-size: 13px
}

/* footer */
.site-footer {
    padding: 50px 0 20px;
    color: var(--navy);
    border-top: solid 1px #EFEFEF;
}

.footer-grid {
    width: min(100%,1200px);
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1.8fr 1fr;
    gap: 45px
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand-lockup>img {
    width: 80px;
}

.footer-brand-copy p {
    margin: 5px 0 0;
    /* letter-spacing: 0.03em; */
}

.footer-brand-name {
    font-family: 'Cardo',serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.03em;
}

.footer-brand-description {
    margin-top: 3px!important;
    font-size: 12px;
    line-height: 1.6;
    white-space: nowrap;
    letter-spacing: 0.08em;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin: 15px 0 0 10px;
}

.footer-social img {
    width: 25px;
    height: 25px
}

.footer-block {
    border-left: 1px solid #e2e5e9;
    padding-left: 42px
}

.footer-block h3 {
    margin: 0 0 20px;
    font: 400 italic 23px 'Cardo',serif;
    letter-spacing: 0.05em;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 26px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px
}

.footer-links a:before {
    content: '›';
    margin-right: 10px;
    font-size: 18px;
}

.footer-info .footer-links {
    grid-template-columns: 1fr
}

.copyright {
    margin: 62px 0 0;
    text-align: center;
    color: #777;
    font: 400 italic 13px 'Cardo',serif
}

#sub-column .category h2 {
    background: #062f69;
    border: none;
    color: #FFF;
    padding: 15px 15px;
    min-height: unset;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 20px;
    text-align: left;
}
#sub-column .category nav ul li.cat2 a {
    zoom: 1;
    display: block;
    padding: 15px 20px 15px 25px;
    margin: 0px 0;
    /* line-height: 100%; */
    /* color: #000; */
    background: #efefef;
}
#sub-column .category nav ul li.cat1{
    margin: 0 0 1px 0;
    border: none;
}
#sub-column .category nav ul li.cat1 a{
    background: #ececec;
}
#sub-column .category nav ul li.cat2{
    margin: 0 0 1px 0;
    border: none;
}
#sub-column .freeArea2.shopDiary p a {
    border: 1px solid #333;
    border-radius: 3px;
    box-sizing: border-box;
    display: block;
    font-size: 90%;
    margin: 15px auto 0;
    padding: 2% 1%;
    text-align: center;
    width: 80%;
	transition: all 0.2s ease-out;
}

#sub-column .freeArea2.shopDiary p a:hover {
	color: #fff;
	background: #b6b6b6;
	transition: all 0.2s ease-out;
}

#sub-column div.snav_mailMag_cont p:last-child {
    background-color: #FFF;
    border: 1px solid #333;
    border-radius: 3px;
    box-sizing: border-box;
    height: auto;
    line-height: 1;
    margin: 15px auto;
    width: 90%;
	padding: 10px 0;
}

#sub-column div.snav_mailMag_cont p:last-child:hover{
	color: #fff;
	background: #b6b6b6;
	transition: all 0.2s ease-out;
}

#sub-column .link.keyword nav ul {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

#sub-column .link.keyword nav ul li {
    border: none !important;
    float: left;
    display: block;
    margin: 2.5px;
    border-radius: 5px;
    text-align: center;
    max-height: unset;
}

#sub-column .link.keyword nav ul li a::after {
   display: none;
}

#sub-column .link.keyword nav ul li a {
    color: #333;
    display: block;
    position: relative;
    line-height: 1;
    padding: 7px 13px;
    background: #EEE;
    font-size: 14px;
}

@media(max-width: 768px) {
    html,body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip
    }

    body {
        padding-top:0;
        font-size: 14px
    }

    body.menu-open {
        overflow-y: visible;
        overflow-x: hidden;
        overflow-x: clip
    }

    .global-nav,.header-tools {
        display: none
    }

    .shipping-bar {
        display: flex;
        min-height: 32px;
        padding: 4px 8px;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        line-height: 1.25;
        text-align: center
    }

    .site-header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        z-index: 200;
        box-shadow: none
    }

    .header-main {
        height: 72px;
        padding: 0;
        background: #fff
    }

    .site-header.is-main-fixed {
        padding-bottom: 72px
    }

    .site-header.is-main-fixed .header-main {
        position: fixed;
        z-index: 200;
        top: 0;
        left: 0;
        width: var(--mabbys-mobile-width,100%)!important;
        box-shadow: 0 1px 7px #0002
    }

    .header-logo {
        top: 9px;
        width: 86px;
        height: 54px;
        padding: 0;
        background: none;
        border-radius: 0
    }

    .mobile-tools {
        display: flex;
        position: absolute;
        inset: 0;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
    }

    .mobile-cart {
        position: relative;
        width: 32px;
        height: 36px;
        border: 0;
        background: transparent;
        padding: 2px;
        margin: 4px 0 0;
    }

    .hamburger {
        position: relative;
        width: 32px;
        height: 36px;
        border: 0;
        background: transparent;
        padding: 2px;
        margin: 0 0 2px;
    }

    .mobile-cart img{
    width: 36px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        margin: 7px 0;
        background: var(--navy);
        transition: .3s
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0
    }

    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-drawer {
        display: none;
        position: fixed;
        z-index: 190;
        top: 104px;
        right: 0;
        width: min(88vw,360px);
        height: calc(100dvh - 104px);
        padding: 24px;
        overflow: auto;
        background: #fff;
        transform: translateX(105%);
        transition: none;
        visibility: hidden
    }

    html.mabbys-ui-ready .mobile-drawer {
        transition: transform .35s ease;
        visibility: visible
    }

    .mobile-drawer.is-open {
        transform: none
    }

    body.is-top-page #sub-column {
        display: block!important;
        position: fixed;
        z-index: 190;
        top: 104px;
        right: 0;
        width: min(88vw,360px)!important;
        height: calc(100dvh - 104px);
        margin: 0!important;
        padding: 24px;
        overflow-y: auto;
        background: #fff;
        transform: translateX(105%);
        transition: none;
        visibility: hidden
    }

    html.mabbys-ui-ready body.is-top-page #sub-column {
        transition: transform .35s ease;
        visibility: visible
    }

    body.is-top-page #sub-column.is-open {
        transform: translateX(0)
    }

    .mobile-search form {
        margin-bottom: 22px
    }

    .drawer-nav,.drawer-category {
        list-style: none;
        margin: 0;
        padding: 0
    }

    .drawer-nav a,.drawer-category a {
        display: block;
        padding: 13px 4px;
        border-bottom: 1px solid #e5e8ec
    }

    .drawer-category-title {
        margin: 28px 0 5px;
        color: var(--navy);
        font: 700 20px 'Cardo',serif
    }

    .drawer-calendar {
        margin-top: 30px
    }

    .page-overlay {
        z-index: 180;
        inset: 104px 0 0
    }

    body.mobile-main-fixed .mobile-drawer,
    body.mobile-main-fixed.is-top-page #sub-column {
        top: 72px;
        height: calc(100dvh - 72px)
    }

    body.mobile-main-fixed .page-overlay {
        top: 72px
    }

    .mega-menu {
        display: none
    }

    .hero-slider {
        margin: 0
    }

    .hero-slide {
        padding: 0
    }

    .hero-slide img {
        height: auto;
        aspect-ratio: 1.35;
        object-fit: cover;
        border-radius: 0
    }

    .hero-slider .slick-prev,.hero-slider .slick-next {
        display: none!important
    }

    .hero-slider .slick-dots {
        bottom: -30px;
    }
    .slick-dotted.slick-slider.hero-slider {
    margin-bottom: 10px !important;
}

    .sub-banners {
        width: 90%;
        margin: 0 auto 0px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-section {
        padding: 30px 0;
    }

    .wave-top,.wave-bottom {
        height: 48px;
        background-size: 430px 48px
    }

    .newItem>h2:before,.ranking>h2:before,.news h2:before,.recentlyViewed .section__title:before {
        font-size: 29px
    }

    .newItem>h2,.ranking>h2 {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .newItem .column-set,.ranking .column-set {
        display: flex!important;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0;
        scrollbar-width: none;
        /* width: 90%; */
        /* margin: 0 auto; */
    }

    .newItem .column4,.ranking .column5 {
        min-width: 38vw!important;
        scroll-snap-align: start
    }

    .ranking .column5 {
        min-width: 38vw!important;
    }

    .scroll-progress {
        display: block;
        height: 3px;
        margin-top: 14px;
        background: #dbe0e6
    }

    .scroll-progress span {
        display: block;
        width: 25%;
        height: 100%;
        background: var(--navy)
    }

    .dog-deco {
        width: 100px;
        bottom: -20px;
    }

    .dog-deco.left {
        left: 5%;
    }

    .dog-deco.right {
        right: 5%;
        /* display: none; */
    }

    .top_instagram h3:before {
        font-size: 19px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .top_instagram h3:after {
        width: 120px;
    }

    #instagram {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        width: 90%;
        margin: 0 auto;
    }

    #instagram>div:nth-child(n+5) {
        display: none
    }

    .btn_more {
        margin-top: 30px
    }

    .news {
        padding: 80px 18px
    }

    .news h2 {
        margin-bottom: 30px
    }

    .news-box {
        padding: 20px 0
    }

    .recentlyViewed {
        padding: 82px 16px 105px
    }

    .product__lists {
        display: flex!important;
        gap: 14px;
        overflow-x: auto
    }

    .recent-item {
        min-width: 38vw;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-block {
        border-left: 0;
        border-top: 1px solid #e2e5e9;
        padding: 24px 0 0
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 22px 26px;
    }

    .copyright {
        margin-top: 38px
    }

    .site-footer {
        padding-top: 20px;
        width: 90%;
        margin: 0 auto;
        border: none;
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms!important;
        transition-duration: .01ms!important
    }
}

.hero-slider .hero-slide {
    height: min(31vw,520px)!important
}

.hero-slider .hero-slide img {
    height: 100%!important
}

@media(max-width: 768px) {
    .hero-slider .hero-slide {
        height:auto!important;
        aspect-ratio: 1.35
    }

    .hero-slider .hero-slide img {
        height: 100%!important
    }
}

/* 2026-08-19 visual refinements */
.search-toggle {
    transition: opacity .25s ease,visibility .25s ease
}

.search-toggle.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.hero-slider {
    margin: 0!important
}

.hero-slider .hero-slide {
    width: 672px!important;
    height: auto!important;
    padding: 0 8px
}

.hero-slider .hero-slide img {
    width: 100%!important;
    height: auto!important;
    /* aspect-ratio: 672/420; */
    object-fit: contain!important
}

.top_instagram h3:before {
    font-family: 'Noto Serif JP',serif
}

.wave-top,.wave-bottom {
    background-size: 720px 80px;
    animation: wave-right-to-left 14s linear infinite!important;
}

.wave-top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='80' viewBox='0 0 720 80'%3E%3Cpath fill='%23fff' d='M0 0H720V38C630 68 540 8 450 38S270 68 180 38 90 8 0 38Z'/%3E%3C/svg%3E")!important;
}

.wave-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='80' viewBox='0 0 720 80'%3E%3Cpath fill='%23fff' d='M0 0H720V38C630 68 540 8 450 38S270 68 180 38 90 8 0 38Z'/%3E%3C/svg%3E")!important;
    transform: rotate(180deg);
}

.wave-top.wave-reverse,.wave-bottom.wave-reverse {
    animation-name: wave-left-to-right!important
}

@keyframes wave-right-to-left {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: -720px
    }
}

@keyframes wave-left-to-right {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: 720px
    }
}

.newItem .column-set p.price span,
.ranking .column-set p.price span{
    color: #7E7E7E;
}


@media(max-width: 768px) {
    .hero-slider .hero-slide {
        width:var(--mabbys-mobile-width,100%)!important;
        max-width:100%!important;
        aspect-ratio: auto
    }

    .hero-slider .hero-slide img {
        width: 100%!important;
        /* aspect-ratio: 672/420; */
    }

    .wave-top,.wave-bottom {
        background-size: 432px 48px;
        animation-duration: 12s!important
    }

    @keyframes wave-right-to-left {
        from {
            background-position-x: 0
        }

        to {
            background-position-x: -432px
        }
    }

    @keyframes wave-left-to-right {
        from {
            background-position-x: 0
        }

        to {
            background-position-x: 432px
        }
    }
}

/* Final wave behavior: broad curves; rotation makes successive edges alternate visually. */
.wave-top,.wave-bottom {
    height: 80px!important;
    background-size: 1200px 80px!important;
    animation: wave-broad-right-to-left 20s linear infinite!important
}
.wave-top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='120' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 60C100 10 200 10 300 60S500 110 600 60S800 10 900 60S1100 110 1200 60V0H0Z'/%3E%3C/svg%3E")!important
}
.wave-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='120' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 60C100 10 200 10 300 60S500 110 600 60S800 10 900 60S1100 110 1200 60V0H0Z'/%3E%3C/svg%3E")!important;
    transform: rotate(180deg)
}
@keyframes wave-broad-right-to-left {
    from { background-position-x: 0 }
    to { background-position-x: -1200px }
}
@media(max-width: 768px) {
    .wave-top,.wave-bottom {
        height: 45px!important;
        background-size: 720px 45px!important;
        animation-duration: 16s!important
    }
    @keyframes wave-broad-right-to-left {
        from { background-position-x: 0 }
        to { background-position-x: -720px }
    }
}

/* Clip decorative waves without turning #contents into a scroll container. */
#contents {
    /* overflow-x: clip!important; */
    /* overflow-y: visible!important; */
}

@media(max-width: 768px) {
    .news-box {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .info-history-dog {
        top: -20px;
        right: 3%;
        bottom: auto
    }
}

.top-section .column4 .itemThumb a img {
    min-width: 282px;
}

/* Alternating wave amplitudes with matching tangent angles at every join. */
.wave-top,.wave-bottom {
    background-size:1800px 80px!important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1800' height='120' viewBox='0 0 1800 120' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 60C140.625 -2.5 421.875 -2.5 562.5 60S984.375 122.5 1125 60C1209.375 22.5 1378.125 22.5 1462.5 60S1715.625 97.5 1800 60V0H0Z'/%3E%3C/svg%3E")!important;
}

.recentlyViewed__inner { position:relative; z-index:1; }
.recentlyViewed>.history-wave-top { top:-1px; }

@keyframes wave-broad-right-to-left {
    from { background-position-x:0 }
    to { background-position-x:-1800px }
}

@media(max-width:768px) {
    .wave-top,.wave-bottom { background-size:1080px 45px!important; }
    @keyframes wave-broad-right-to-left {
        from { background-position-x:0 }
        to { background-position-x:-1080px }
    }
}

/* Keep fixed mobile UI aligned to the document width in device emulation too. */
@media(max-width:768px) {
    .site-header {
        right:auto!important;
        width:var(--mabbys-mobile-width,100%)!important;
        max-width:100%!important;
    }

    .header-main,.mobile-tools {
        width:100%!important;
        max-width:100%!important;
    }

    .mobile-tools {
        right:auto!important;
    }

    .page-overlay {
        right:auto!important;
        width:var(--mabbys-mobile-width,100%)!important;
    }

    .mobile-drawer,
    body.is-top-page #sub-column {
        right:auto!important;
        left:calc(var(--mabbys-mobile-width,100%) - var(--mabbys-drawer-width,360px))!important;
        width:var(--mabbys-drawer-width,360px)!important;
        max-width:88%!important;
    }
}

.newItem .itemThumb-wrap .badge {
    width: 75px;
    padding: 10px 0 0 10px;
}

/* お店ページに会員カート情報表示（非表示設定） */
.member_info_cart_info {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
}

.member_info_cart_info .account_guest {
    display: none;
}

.member_info_cart_info .rank_name_0 {
    display: none;
}

.member_info_cart_info .rankup_none {
    display: none;
}

.member_info_cart_info .nrank_prc_0 {
    display: none;
}

.member_info_cart_info .nrank_cnt_0 {
    display: none;
}

.member_info_cart_info .firstname_guest {
    display: none;
}

.member_info_cart_info .more_maru_1 {
    display: none;
}

.member_info_cart_info .free_shipping_0 {
    display: none;
}

.member_info_cart_info .shipping_box_none {
    display: none;
}

.member_info_cart_info .pointmember_none {
    display: none;
}

.member_info_cart_info .rankmember_none {
    display: none;
}

.member_info_cart_info .memberrank_none_none {
    display: none;
}

.member_info_cart_info #member_info_none_none {
    display: none;

}

span.number_comma.sps-cartItmCnt {
    position: absolute;
    top: 0px;
    right: -11px;
    background: #062f69;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 18px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: -0.05em;
}


@media(max-width: 768px) {
    .newItem {
    padding: 50px 0 60px;
    width: 90%;
    margin: 0 auto;
}

#main-column .newItem h2::before {
    font-size: 26px;
}

#main-column .news h2::before {
    font-size: 24px;
}

.top_instagram {
    padding: 60px 0 0;
}

.top_instagram h3 {
    margin: 0 0 30px;
}

#main-column .ranking h2::before {
    font-size: 28px;
}

.ranking {
    padding: 0;
    width: 90%;
    margin: 0 auto;
}

.top-section .column4 .itemThumb a img {
    min-width: unset;
}

.w100 .news {
    width: 90%;
    padding: 50px 0 50px;
}

dl.news-box {
    padding: 25px 0;
}

.news-box p {
    font-size: 12.5px;
    line-height: 180%;
}

.news h2, .recentlyViewed .section__title {
    font-size: 14px;
}

.hero-slider .hero-slide {
    padding: 0;
}

.ranking .badge {
    width: 40px !important;
}

.newItem h3 {
    padding: 0 10px 0px !important;
    font-size: 14px !important;
    margin: -5px 0 0 !important;
}


.ranking h3 {
    padding: 0 !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.newItem .price {
    padding: 3px 10px 10px !important;
}

.ranking .price {
    padding: 3px 0 10px !important;
}

.newItem .itemThumb-wrap .badge {
    width: 50px;
    height: auto;
    padding: 5px 0 0 10px;
}

.news-box h3 {
    font-size: 14px;
    margin: 0 0 5px;
}

.news-box dt, .news-box dd {
    font-size: 15px;
}

.recent-item .item-price {
    padding: 8px 10px 16px;
}

.ranking>h2:before {
    background: url(https://www.estore-test89.com/images/icn_crown.svg) center top / 40px no-repeat;
}
div#cart-footer, footer {
    border-top: solid 1px #EFEFEF;
}

.w100 .freeArea2 {
    margin-bottom: 10px;
}

span.number_comma.sps-cartItmCnt {
    top: 1px;
    right: -8px;
}

#sub-column div.cal_wrapper table.cal tr td {
    font-size: 90%;
}

}

/* Keep every Slick hero image height and inter-slide gap consistent. */
.hero-slider .hero-slide {
    width: 688px!important;
    height: 420px!important;
    padding: 0 8px!important
}

.hero-slider .hero-slide > a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff
}

.hero-slider .hero-slide > a > img {
    display: block;
    width: 100%!important;
    height: 100%!important;
    object-fit: cover!important;
    object-position: center
}

@media(max-width: 768px) {
    .hero-slider .hero-slide {
        width: var(--mabbys-mobile-width,100%)!important;
        max-width: 100%!important;
        height: auto!important;
        padding: 0 !important;
    }

    .hero-slider .hero-slide > a {
        height: auto;
        aspect-ratio: 672 / 420
    }
}
