/* カスタマイズ用CSS */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Montserrat:wght@500;600;700&family=Comfortaa:wght@300..700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root{

    /* Color */
    --bg-color: #F8F5EF;
    --text-color: #4A433D;
    --sub-text-color: #7B746D;
    --border-color: #E6E0D7;

    --accent-color: #C8A977;
    --star-color: #FFC107;

    /* Font */
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Montserrat", sans-serif;
}


/* ==========================
   Base
========================== */

html{
    font-size:16px;
}

body{
    background:var(--bg-color);
    color:var(--text-color);

    font-family: "Montserrat","Noto Sans JP", sans-serif;
    font-weight:400;
    line-height:1.8;
    letter-spacing:0.03em;
    
    overflow-x: hidden;

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}


/* ==========================
   English Heading
========================== */

.en-title{
    font-family:var(--font-en);
    font-weight:600;

    color:var(--text-color);

    letter-spacing:0.12em;
    text-transform:uppercase;
    line-height:1.2;
}


/* ==========================
   Japanese Heading
========================== */

.jp-title{
    font-family:var(--font-jp);
    font-weight:500;

    color:var(--text-color);

    line-height:1.6;
    letter-spacing:0.05em;
}


/* 共通見出し */

h1{
    font-family:var(--font-jp);
    font-weight:500;
    font-size:2.2rem;
    line-height:1.5;
}

h2{
    font-family:var(--font-jp);
    font-weight:500;
    font-size:1.8rem;
    line-height:1.5;
}

h3{
    font-family:var(--font-jp);
    font-weight:500;
    font-size:1.4rem;
    line-height:1.6;
}


/* ==========================
   Body Text
========================== */

p,
.description,
.product-description{
    font-family:var(--font-jp);
    font-weight:400;

    color:var(--text-color);

    line-height:1.9;
}


/* ==========================
   Product Name
========================== */

.product-name{
    font-family:var(--font-jp);
    font-weight:500;

    color:var(--text-color);

    line-height:1.7;
}


/* ==========================
   Price
========================== */

.price{
    font-family:var(--font-en);
    font-weight:600;

    color:var(--text-color);

    font-size:2rem;
    letter-spacing:0.03em;
}

.price small{
    font-size:0.7em;
}


/* ==========================
   Review
========================== */

.review-score{
    display:flex;
    align-items:center;
    gap:8px;

    font-family:var(--font-en);
    font-weight:600;
}

.review-score .star{
    color:var(--star-color);
    letter-spacing:2px;
}

.review-count{
    color:var(--sub-text-color);
    font-size:0.9rem;
}


/* ==========================
   Button
========================== */
/* カートに入れる */
button.ec-blockBtn--action,
button.ec-blockBtn--action.add-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 56px !important;
    padding: 0 40px !important;
    line-height: 1 !important;

    background: #4A433D !important;
    border: 1px solid #4A433D !important;
    color: #fff !important;

    border-radius: 999px !important;
    transition: .3s ease !important;
}

/* キャンセル・お気に入り系ボタン */
button.ec-blockBtn--cancel {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 56px !important;
    padding: 0 40px !important;
    line-height: 1 !important;

    background: #fff !important;
    border: 1px solid #B98B73 !important;
    color: #4A433D !important;

    border-radius: 999px !important;
    transition: .3s ease !important;
}

/* hover */
button.ec-blockBtn--action:hover,
button.ec-blockBtn--action.add-cart:hover {
    opacity: .85 !important;
    color: #fff !important;
}

button.ec-blockBtn--cancel:hover {
    background: #F8F5EF !important;
    border-color: #B98B73 !important;
    color: #4A433D !important;
    opacity: .9 !important;
}

/* =========================
   共通：商品カードエリア
========================= */

.rt-product-section {
    background: #F8F5EF;
    padding: 64px 0;
    margin-top: 72px;
}

.rt-product-section__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.rt-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rt-product-card {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    color: #4A433D;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(74, 67, 61, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.rt-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(74, 67, 61, .09);
    text-decoration: none;
}

.rt-product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
}

.rt-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rt-product-card__name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #4A433D;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 8px;
}

.rt-product-card__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #4A433D;
    margin: 0;
}

.rt-product-card__tax {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

@media screen and (max-width: 767px) {
    .rt-product-section {
        padding: 48px 0;
        margin-top: 52px;
    }

    .rt-product-section__inner {
        padding: 0 18px;
    }

    .rt-product-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
    }

    .rt-product-card {
        width: 44%;
        min-width: 160px;
        flex: 0 0 44%;
        padding: 14px;
        scroll-snap-align: start;
    }

    .rt-product-card__name {
        font-size: 13px;
    }
}
/*最近見た商品 */
.rugtasu-recent {
    background: #F8F5EF;
    padding: 64px 0;
    margin-top: 72px;
}

.rugtasu-recent__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.rugtasu-recent__head {
    text-align: center;
    margin-bottom: 40px;
}

.rugtasu-recent__en {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    color: #A59688;
    margin: 0 0 10px;
}

.rugtasu-recent__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .08em;
    color: #4A433D;
    margin: 0;
}

.rugtasu-recent__title::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: #B98B73;
    margin: 20px auto 0;
}

.rugtasu-recent__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rugtasu-recent__empty {
    display: none;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #9A8F84;
    background: rgba(255,255,255,.65);
    border-radius: 16px;
    padding: 34px 20px;
    margin: 0;
}

.rugtasu-recent__bottom {
    text-align: right;
    margin-top: 22px;
}

.rugtasu-recent__clear {
    background: none;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: #7B7168;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .rugtasu-recent {
        padding: 48px 0;
        margin-top: 52px;
    }

    .rugtasu-recent__inner {
        padding: 0 18px;
    }

    .rugtasu-recent__title {
        font-size: 21px;
    }

    .rugtasu-recent__list {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
    }

    .rugtasu-recent .rt-product-card {
        width: 44%;
        min-width: 160px;
        flex: 0 0 44%;
        padding: 14px;
        scroll-snap-align: start;
    }

    .rugtasu-recent .rt-product-card__name {
        font-size: 13px;
    }

    .rugtasu-recent__bottom {
        text-align: center;
    }
}

/* ランキング番号だけ残す */
.rt-ranking__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: #B58A5B;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
}


/* 色玉表示 */
.rt-product-card__colors {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    min-height: 18px !important;
    margin: 8px 0 8px !important;
}

.rt-color-chip {
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    flex: 0 0 12px !important;
}

/* おすすめ商品 */
.rt-recommend {
    background: #F8F5EF;
}

.rt-product-card__comment {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #7B746D;
    margin: 0 0 10px;
    min-height: 44px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============================
   共通：カテゴリーリンクの丸矢印
=============================== */
/* 共通：丸矢印の見た目 */
.rt-circle-arrow {
    position: absolute;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #C8A977;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    z-index: 10;
}

/* 暮らしに合わせて選ぶ */
.rt-life-category-card .rt-circle-arrow {
    right: 12px;
    bottom: 12px;
}

/* カテゴリから選ぶ */
.rt-category__link .rt-circle-arrow {
    right: 12px;
    bottom: 14px;
}

@media (max-width: 767px) {
    .rt-circle-arrow {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .rt-life-category-card .rt-circle-arrow {
        right: 8px;
        bottom: 10px;
    }

    .rt-category__link .rt-circle-arrow {
        right: 8px;
        bottom: 12px;
    }
}

/* 共通セクションタイトル */
.rt-section-heading {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 36px !important;
}

.rt-section-heading__en {
  display: block !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  letter-spacing: .18em !important;
  color: #C8A977 !important;
  
  margin: 0 0 8px !important;
}

.rt-section-heading__ja {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  font-size: 28px !important;
  line-height: 1.6 !important;
  letter-spacing: .08em !important;
  font-weight: 700 !important;
  color: #4A433D !important;
  margin: 0 !important;
  text-align: center !important;
}

.rt-section-heading__ja::before,
.rt-section-heading__ja::after {
  content: "" !important;
  width: 26px !important;
  height: 26px !important;
  background: url("/shop/html/user_data/assets/img/bg-paw.png") center/contain no-repeat !important;
  opacity: .55 !important;
  flex: 0 0 auto !important;
}

.rt-section-heading__lead,
.rt-section-heading__sub {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  letter-spacing: .06em !important;
  color: #6B625A !important;
  margin: 12px 0 0 !important;
  text-align: center !important;
}

@media screen and (max-width: 767px) {
  .rt-section-heading {
    margin-bottom: 28px !important;
  }

  .rt-section-heading__en {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }

  .rt-section-heading__ja {
    font-size: 22px !important;
    gap: 8px !important;
  }

.rt-section-heading__ja::before,
.rt-section-heading__ja::after {
  background-color: #D9B8A8;
  mask: url("/shop/html/user_data/assets/img/icon-paw.svg") center / contain no-repeat;
  -webkit-mask: url("/shop/html/user_data/assets/img/icon-paw.svg") center / contain no-repeat;
}

  .rt-section-heading__lead,
  .rt-section-heading__sub {
    font-size: 13px !important;
  }
}

/* =========================
   TOP共通：セクション余白
========================= */
.rt-top-section,
.rt-about-brand,
.rt-life-category-block,
.rt-category,
.rugtasu-recent,
.rt-voice-block,
.ec-newsRole,
.rt-ranking,
.rt-review {
  padding-top: 88px;
  padding-bottom: 88px;
}

@media screen and (max-width: 767px) {
  .rt-top-section,
  .rt-about-brand,
  .rt-life-category-block,
  .rt-category,
  .rugtasu-recent,
  .rt-voice-block,
  .ec-newsRole,
  .rt-ranking,
  .rt-review {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* =========================
   スクロールフェードイン
========================= */
.rt-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.rt-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

.rt-fadein-delay-1 { transition-delay: .12s; }
.rt-fadein-delay-2 { transition-delay: .24s; }
.rt-fadein-delay-3 { transition-delay: .36s; }

@media screen and (max-width: 767px) {
  .rt-fadein {
    transform: translateY(24px);
    transition-duration: .7s;
  }
}

/* =========================
   共通ホバー
========================= */
.rt-product-card,
.rugtasu-recent__item,
.rt-life-category-card,
.rt-category a,
.rt-ranking a,
.rt-review a {
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    opacity .35s ease;
}

.rt-product-card:hover,
.rugtasu-recent__item:hover,
.rt-life-category-card:hover,
.rt-category a:hover,
.rt-ranking a:hover,
.rt-review a:hover {
  transform: translateY(-4px);
  opacity: .92;
}

@media screen and (max-width: 767px) {
  .rt-product-card:hover,
  .rugtasu-recent__item:hover,
  .rt-life-category-card:hover,
  .rt-category a:hover,
  .rt-ranking a:hover,
  .rt-review a:hover {
    transform: none;
  }
}

/* 購入フロー：戻るボタン */
.ec-orderRole .ec-blockBtn--cancel,
.ec-guestRole .ec-blockBtn--cancel,
.ec-registerRole .ec-blockBtn--cancel,
.ec-cartRole .ec-blockBtn--cancel {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    max-width: 360px !important;
    height: 56px !important;
    margin: 12px auto 0 !important;
    padding: 0 32px !important;

    background: #fff !important;
    border: 1px solid #B98B73 !important;
    color: #4A433D !important;

    border-radius: 999px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* =========================
   Rugtasu SPメニューカラー統一
========================= */

.ec-drawerRole,
.ec-drawerRoleClose,
.rt-sp-menu,
.rt-sp-menu__section {
    background: #F8F5EF !important;
    color: #4A433D !important;
}

.ec-drawerRole a,
.rt-sp-menu a {
    color: #4A433D !important;
    text-decoration: none;
}

.rt-sp-menu__title {
    color: #8A6A4F !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
}

.rt-sp-category > li,
.rt-sp-accordion > li {
    border-bottom: 1px solid #E8E3DD !important;
}

.rt-sp-category__button,
.rt-sp-accordion__button,
.rt-sp-category__parent-link {
    color: #4A433D !important;
    background: transparent !important;
}

.rt-sp-category__button::after,
.rt-sp-accordion__button::after {
    color: #C8A977 !important;
}

.rt-sp-category__children a,
.rt-sp-accordion__body a {
    color: #756B62 !important;
}

.rt-sp-category__children a:hover,
.rt-sp-accordion__body a:hover,
.rt-sp-category__parent-link:hover,
.rt-sp-accordion__button:hover,
.rt-sp-category__button:hover {
    color: #C8A977 !important;
}

/* 新入荷など青リンク対策 */
.ec-drawerRole a[href*="new"],
.ec-drawerRole a,
.rt-sp-category a {
    color: #4A433D !important;
}

/* 検索まわり */
.ec-headerSearch,
.ec-headerSearch__category,
.ec-headerSearch__keyword,
.ec-headerSearch input,
.ec-headerSearch select {
    background: #fff !important;
    color: #4A433D !important;
    border-color: #E8E3DD !important;
}

.ec-headerSearch__category {
    background: #4A433D !important;
    color: #fff !important;
}

.ec-headerSearch__keyword input::placeholder {
    color: #A59688 !important;
}

/* ACCOUNTボタン */
.rt-sp-link {
    background: #fff !important;
    border: 1px solid #E8E3DD !important;
    color: #4A433D !important;
    box-shadow: 0 4px 14px rgba(74, 67, 61, .06);
}

.rt-sp-link i {
    color: #C8A977 !important;
}

.rt-sp-link:hover {
    background: #FFFDF9 !important;
    border-color: #C8A977 !important;
}