@charset "UTF-8";

/* -------------レスポンシブ--------------- */
/* 961以上→ only_p */
/* 960以下→ un_ts */
/* 960~416→ only_t */
/* 769以上→　ov_tab */
/* 768以下→ un_tab */
/* 421以上→ ov_s */
/* 420以下→ only_s */


@media screen and (min-width: 961px) {
    .only_t {
        display: none!important;
    }

    .only_s {
        display: none!important;
    }

    .un_ts {
        display: none!important;
    }
}

@media screen and (max-width: 960px) {
    .only_p {
        display: none!important;
    }

    .only_t {
        display: block!important;
    }

    .only_s {
        display: none!important;
    }

    .un_ts {
        display: block!important;
    }
}

@media screen and (min-width: 769px) {
    .ov_tab {
        display: block!important;
    }

    .un_tab {
        display: none!important;
    }
}

@media screen and (max-width: 768px) {
    .ov_tab {
        display: none!important;
    }

    .un_tab {
        display: block!important;
    }
}

@media screen and (min-width: 421px) {
    .ov_s {
        display: block!important;
    }
}

@media screen and (max-width: 420px) {
    .only_p {
        display: none!important;
    }

    .only_t {
        display: none!important;
    }
    .only_s {
        display: block!important;
    }

    .ov_s {
        display: none!important;
    }
}

/* フォント */
.noto {
    font-family: "Noto Sans JP", sans-serif;
}
.mincho {
    font-family: shippori-mincho, sans-serif;
}
.cormorant {
    font-family: cormorant, sans-serif;
}

/* ローディング */
/* 全画面を覆うグレー/黒系の背景 */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F6F4F0; /* 背景色はお好みで */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 一番手前に表示 */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* 消える時のフェードアウト効果 */
}

/* 読み込み完了後にJSでこのクラスを付与して消す */
#loading-overlay.loaded {
  opacity: 0;
  visibility: hidden;
}

/* 画像を永久にくるくる回す設定 */
#loading-image {
  width: 250px;  /* 画像のサイズ（適宜調整してください） */
  height: 250px;
  animation: spin 10s linear infinite; /* 3秒かけて1周、等速で無限に繰り返す */
}
@media screen and (max-width: 768px) {
#loading-image {
  width: 150px;  /* 画像のサイズ（適宜調整してください） */
  height: 150px;
}
}

/* 回転のアニメーション定義 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    padding: 0 20px;
}
.header__nav {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.common__fv-logo {
    width: 120px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
}
@media screen and (max-width: 768px) {
.common__fv-logo {
    left: 50%;
    transform: translate(-50%,-50%);
}
}
.header__nav--flex {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 35px;
    position: relative;
}
.header__nav-contents {
    display: flex;
    gap: 35px;
}
@media screen and (max-width: 960px) {
.header__nav-contents {
    gap: 15px;
}
.header__nav-contents a {
    height: 20px;
}
}
/* --- 外側の2本線ボタン --- */
.hamburger {
    cursor: pointer;
    width: 55px;
    height: 30px; /* 2本線に合わせて調整 */
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 768px) {
.hamburger {
    position: absolute;
    left: 0;
}
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    transition: background-color 0.3s; /* 色の変化だけアニメーション */
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger p {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #333;
}
/* クリック時に白くする */
.hamburger.is-active span {
    background-color: #FDFDFC;
}

/* --- メニュー内の×ボタン --- */
.menu-close {
    cursor: pointer;
    width: 55px;
    height: 40px;
    position: relative;
}
@media screen and (max-width: 600px) {
.menu-close {
    position: absolute;
    top: 50%;
    left: 20px;
        transform: translateY(-50%);
}
}
.menu-close span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FDFDFC;
    position: absolute;
    top: 40%;
}
.menu-close span:nth-child(1) { transform: rotate(15deg); }
.menu-close span:nth-child(2) { transform: rotate(-15deg); }
.menu-close p {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #FDFDFC;
}

/* --- ロゴ・アイコン用（画像） --- */
/* ベースにtransitionを入れる */
.header__nav-contents a img {
    transition: filter 0.4s ease;
}

/* 白に反転させる */
header.is-invert .header__nav-contents a img {
    filter: brightness(0) invert(1);
}

/* --- ハンバーガーメニュー用 --- */
/* span（線）とp（文字）にtransitionを入れる */
.hamburger span,
.hamburger p {
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* 白に反転させる */
header.is-invert .hamburger span {
    background-color: #fff; /* 線を白に */
}

header.is-invert .hamburger p {
    color: #fff; /* 文字を白に */
}


/* --- メニュー本体（前回同様） --- */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    height: 100vh;
    background-color: #4D0000;
    color: #FDFDFC;
    transition: right 0.3s;
    z-index: 99;
    display: flex;
}
@media screen and (max-width: 1000px) {
.nav-menu {
    width: 600px;
}
}
@media screen and (max-width: 600px) {
.nav-menu {
    width: 100%;
}
}
.nav-menu--left {
    width: 43%;
    position: relative;
}
@media screen and (max-width: 1000px) {
.nav-menu--left {
    display: none;
}
}
.nav-menu--left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-menu-textArea {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    line-height: 1.5;
    letter-spacing: 2px;
}
.nav-menu-textArea__main {
    font-size: 40px;
    margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
.nav-menu-textArea__main {
    font-size: 24px;
    margin-bottom: 20px;
}
}
.nav-menu-textArea__sub {
    font-size: 20px;
}
@media screen and (max-width: 1500px) {
.nav-menu-textArea__sub {
    font-size: 12px;
}
}
.nav-menu--right {
    width: 57%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}
@media screen and (max-width: 1000px) {
.nav-menu--right {
    width: 100%;
}
}
@media screen and (max-width: 600px) {
.nav-menu--right {
    display: block;
}
}
.nav-menu-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    gap: 35px;
    position: relative;
}
@media screen and (max-width: 600px) {
.nav-menu-list {
    padding: 0 20px;
    gap: 20px;
}
}
.nav-menu.is-active {
    right: 0;
}
.nav-menu-list-logo {
    width: 15%;
    min-width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 601px) {
.nav-menu-list-logo {
    display: none;
}
}
.ham__contents {
    width: 85%;
    margin: 0 auto;
}
@media screen and (max-width: 600px) {
.ham__contents {
    width: 100%;
    padding: 0 20px;
    margin-top: 40px;
}
}
@media screen and (max-width: 600px) {
.ham__contents--left {
    display: none;
}
}
.ham__contents--left img {
    width: 20%;
    min-width: 260px;
    margin-top: -30px;
    margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
.ham__contents--left img {
    min-width: 140px;
}
}
.ham__contents--right {
    display: flex;
    gap: 100px;
    position: relative;
}
@media screen and (max-width: 1200px) {
.ham__contents--right {
    gap: 40px;
}
}
@media screen and (max-width: 600px) {
.ham__contents--right {
    flex-direction: column;
}
}
.ham__contents__nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}
.ham__contents__nav-blc-title {
    font-size: 50px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1500px) {
.ham__contents__nav-blc-title {
    font-size: 32px;
}
}
@media screen and (max-width: 600px) {
.ham__contents__nav-blc-title {
    font-size: 44px;
}
}
.ham__contents__nav-blc-title a {
    display: flex;
    align-items: center;
}
.ham__contents__nav-blc-title span {
    font-size: 14px;
    margin-left: 15px;
}
@media screen and (max-width: 600px) {
.ham__contents__nav-blc-title span {
    font-size: 11px;
    margin-left: 10px;
}
}
.ham__contents__nav-blc-list {
    margin-top: 20px;
    line-height: 2.5;
}
.ham__contents__nav-blc-list-item {
    font-size: 13px;
}
.ham__linkBlc {
    border-top: 1px solid #FDFDFC;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    font-size: 12px;
    width: 85%;
    margin: 0 auto;
}
@media screen and (max-width: 1400px) {
.ham__linkBlc {
    display: block;
}
}
.ham__linkBlc-list {
    display: flex;
    gap: 40px;
}
@media screen and (max-width: 600px) {
.ham__linkBlc-list {
    flex-direction: column;
    gap: 20px;
}
}
@media screen and (max-width: 1400px) {
.ham__copy {
    margin-top: 20px;
}
}
@media screen and (max-width: 600px) {
.ham__copy {
    margin-top: 40px;
}
}
.top__fv-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; 
    background-image: url("/user_data/packages/EC_2026_pc/assets/img/fv_bg.png");
    background-size: 130% auto; /* 少しだけ大きくして、動く余裕を作る */
    background-position: center 0%; /* 初期位置 */
    background-repeat: no-repeat;
}
@media screen and (min-width: 1920px) {
.top__fv-bg {
    height: 2720px; 
}
}
@media screen and (max-width: 768px) {
.top__fv-bg {
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: bottom;
    height: auto;
}
}
.bottle-limit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* FVの開始から、About内のstop-hereまでの高さを確保 */
    /* 100%だと一番下まで行くので、止めたい位置に合わせて調整 */
    height: auto; 
    pointer-events: none;
}
.bottle-rail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    pointer-events: none;
    z-index: 2; 
}
.top__fv-bottle {
    position: -webkit-sticky;
    position: sticky;
    top: var(--bottle-start-pos, 50vh);
    left: 50%;
    transform: translate(-50%, -50%); 
    max-width: 180px;
    width: 13%;
    height: auto;
    padding-left: 35px;
    opacity: 0; /* 最初は透明 */
    transition: opacity 0.8s ease; /* ふわっと出す */
}
@media screen and (min-width: 1920px) {
    .top__fv-bottle {
        max-width: 200px;
        width: 100%;
        padding-left: 40px;
    }
}
@media screen and (max-width: 1600px) {
    .top__fv-bottle {
        width: 11%;
        padding-top: 6%;
    }
}
@media screen and (max-width: 1200px) {
    .top__fv-bottle {
        padding-left: 25px;
        width: 10%;
    }
}
@media screen and (max-width: 960px) {
    .top__fv-bottle {
        position: absolute;
        top: 235px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 768px) {
    .top__fv-bottle {
        top: 65vw;
        max-width: 140px;
        width: 37vw;
        padding-left: 30px;
    }
}
@media screen and (max-width: 500px) {
    .top__fv-bottle {
        top: 106vw;
        max-width: 140px;
        width: 37vw;
    }           
}
.top__fv-bottle img {
    max-height: 500px;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
.top__fv-bottle img {
    max-height: 320px;
}
}
.top__fv-bottle.is-fadein {
    opacity: 1;
}
.top__fv {
    height: clamp(400px, 56.25vw, 1120px);
    position: relative;
    width: 100%;
    overflow: hidden; 
}
@media screen and (min-width: 1920px) {
.top__fv {
    height: 1120px;
}
}
@media screen and (max-width: 768px) {
.top__fv {
    padding-top: 130%;
    height: 0;
    background-color: #F6F4F0;
}
}
@media screen and (max-width: 500px) {
.top__fv {
    padding-top: 200%;
}
}
.top__fv-img {
    position: absolute;
    max-width: none; 
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px); /* 15px〜20pxほど下から浮き上がらせる */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible.top__fv-img {
    opacity: 1;
    transform: translateY(0);
}

.top__fv-img img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 2s ease-out;
}
/* 表示中のズームイン */
.is-zooming {
    /* ズームしている最中は上の transition を無効化してスムーズに動かす */
    transition: none !important; 
    animation: fvZoomInSingle 10000ms linear forwards; 
}

@keyframes fvZoomInSingle {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2); 
    }
}

/* 1番目: 左上 (--leftTop) */
.is-visible.top__fv-img--leftTop {
    transition-delay: 0.2s;
}

/* 5番目: 右上 (--rightTop) */
.is-visible.top__fv-img--rightTop {
    transition-delay: 0.4s;
}

/* 2番目: 中央左 (--leftCenter) */
.is-visible.top__fv-img--leftCenter {
    transition-delay: 0.6s;
}

/* 3番目: 下部左 (--leftBottom) */
.is-visible.top__fv-img--leftBottom {
    transition-delay: 0.8s;
}

/* 4番目: 下部右 (--rightBottom) */
.is-visible.top__fv-img--rightBottom {
    transition-delay: 1.0s;
}

.top__fv-img--leftTop {
    top: 0;
    left: 18%;
    width: 16%;
}
@media screen and (min-width: 1920px) {
.top__fv-img--leftTop {
    top: 0;
    left: calc(50% - 640px);
    width: 313px;
}
}
@media screen and (max-width: 768px) {
.top__fv-img--leftTop {
    top: 19vw;
    left: 5%;
    width: 24vw;
}
}
@media screen and (max-width: 500px) {
    .top__fv-img--leftTop {
        top: 30vw;
        width: 27vw;
}
}
.top__fv-img--leftCenter {
    top: 29%;
    left: 5%;
    width: 17%;
}
@media screen and (min-width: 1920px) {
.top__fv-img--leftCenter {
    top: 330px; 
    left: calc(50% - 880px);
    width: 329px;
}
}
@media screen and (max-width: 768px) {
.top__fv-img--leftCenter {
    top: 48vw;
    left: 0;
    width: 40vw;
}
}
@media screen and (max-width: 500px) {
.top__fv-img--leftCenter {
    top: 74vw;
    width: 39vw;
}
}
.top__fv-img--leftBottom {
    top: 57%;
    left: 16%;
    width: 22%;
}
@media screen and (min-width: 1920px) {
.top__fv-img--leftBottom {
    top: 630px; 
    left: calc(50% - 700px);
    width: 440px;
}
}
@media screen and (max-width: 768px) {
.top__fv-img--leftBottom {
    top: 85vw;
    left: 12vw;
    width: 35vw;
}
}
@media screen and (max-width: 500px) {
.top__fv-img--leftBottom {
    top: 133vw;
    left: 7vw;
    width: 39vw;
}
}
.top__fv-img--rightBottom {
    top: 59%;
    right: 32%;
    width: 17%;
}
@media screen and (min-width: 1920px) {
.top__fv-img--rightBottom {
    top: 680px; 
    right: calc(50% - 360px);
    width: 335px;
}
}
@media screen and (max-width: 768px) {
.top__fv-img--rightBottom {
    top: 97vw;
    right: 5%;
    width: 32vw;
}
}
@media screen and (max-width: 500px) {
.top__fv-img--rightBottom {
    top: 160vw;
    width: 33vw;
}
}
.top__fv-img--rightTop {
    top: 10%;
    right: 0;
    width: 26%;
}
@media screen and (min-width: 1920px) {
.top__fv-img--rightTop {
    top: 80px;  
    right: calc(50% - 960px);
    width: 520px;
}
}
@media screen and (max-width: 1200px) {
.top__fv-img--rightTop {
    top: 15%;
}
}
@media screen and (max-width: 768px) {
.top__fv-img--rightTop {
    top: 23vw;  
    right: 0;
    width: 42vw;
}
}
@media screen and (max-width: 500px) {
.top__fv-img--rightTop {
    top: 44vw; 
    width: 48vw;
}
}

.top__fv-logo {
    width: 200px; 
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 1600px) {
.top__fv-logo {
    width: 13%;
}
.top__fv-logo img {
    margin: 0 auto;
}
}
@media screen and (max-width: 768px) {
.top__fv-logo {
    width: 140px; 
    top: 15px;
}
}
.top__fv-sideMenu {
    position: absolute;
    top: 35vw;
    left: 2%;
    font-size: 14px;
    line-height: 3;
}
@media screen and (min-width: 1920px) {
.top__fv-sideMenu {
    top: 60%;
    left: calc(50% - 930px);
}
}
@media screen and (max-width: 960px) {
    .top__fv-sideMenu {
        left: 1%;
        font-size: 12px;
    }
}
@media screen and (max-width: 768px) {
    .top__fv-sideMenu {
        display: none;
    }
}
.top__fv-sideMenu li {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible.top__fv-sideMenu li {
    opacity: 1;
    transform: translateY(0);
}

.top__fv-sideMenu li:nth-child(1) { transition-delay: 0.2s; }
.top__fv-sideMenu li:nth-child(2) { transition-delay: 0.4s; }
.top__fv-sideMenu li:nth-child(3) { transition-delay: 0.6s; }
.top__fv-sideMenu li:nth-child(4) { transition-delay: 0.8s; }
/* スライダー全体の設定 */
.top__fv-news {
    position: absolute;        
    right: 40px;             
    bottom: 9%;            
    width: 420px;           
    height: 100px;          
    z-index: 1;           
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (min-width: 1920px) {
    .top__fv-news {
        right: calc(50% - 930px);
    }
}
@media screen and (max-width: 1650px) {
    .top__fv-news {
        bottom: 0;
    }
}
@media screen and (max-width: 1200px) {
    .top__fv-news {
        bottom: -15px;
    }
}
@media screen and (max-width: 960px) {
.top__fv-news {
    position: static;        
    transform: translateX(0);       
    width: 100%;
    padding: 0 20px;       
}
}
.is-visible.top__fv-news {
    opacity: 1;
    transform: translateY(0);
}
/* スライダー内のアイテム */
.swiper-inner {
    position: relative;
    height: 100%;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;             
}

/* 矢印のスタイルを変更 */
.swiper-button-prev, .swiper-button-next {
    position: absolute;      /* スライダー内で絶対位置 */
    top: 50%;                 /* 矢印を縦中央に */
    transform: translateY(-50%); /* 完全に中央に配置 */
    width: 15px;              /* 矢印の幅 */
    height: 15px;             /* 矢印の高さ */
    background-size: contain; /* 画像に合わせてサイズ調整 */
    background-repeat: no-repeat;
    margin-top: auto!important;
}

/* 左矢印 */
.swiper-button-prev {
    left: 0;           /* 左矢印をスライダーの外に出す */
    background-image: url('/user_data/packages/EC_2026_pc/assets/img/arrow_left.svg'); /* 左矢印画像のパス */
}
@media screen and (max-width: 768px) {
.swiper-button-prev {
    left: 20px!important;
}
}
/* 右矢印 */
.swiper-button-next {
    right: 0;          /* 右矢印をスライダーの外に出す */
    background-image: url('/user_data/packages/EC_2026_pc/assets/img/arrow_right.svg'); /* 右矢印画像のパス */
}
@media screen and (max-width: 768px) {
.swiper-button-next {
    right: 20px!important;
}
}
.swiper-button-next svg, .swiper-button-prev svg {
    display: none;
}
.top__about {
    position: relative;
}
@media screen and (max-width: 1920px) {
.top__about {
    height: 1600px;
}
}
@media screen and (max-width: 1400px) {
.top__about {
    height: 0;
    padding: 40px 20px 90%;
}
}
@media screen and (max-width: 960px) {
.top__about {
    padding: 40px 20px 100%;
}
}
@media screen and (max-width: 768px) {
.top__about {
    padding: 40px 20px 160%;
}
}
@media screen and (max-width: 550px) {
.top__about {
    padding: 40px 20px 180%;
}
}
@media screen and (max-width: 450px) {
.top__about {
    padding: 40px 20px 200%;
}
}

/* 新規追加：メイン画像用スライダーの設定 */
.top__fv-main-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* ロゴやメニューより後ろに */
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

.top__fv-main-slider.is-visible {
    opacity: 1;
}

/* Swiperの構造全体に対して高さを100%に指定 */
.top__fv-main-slider,
.top__fv-main-slider .swiper-wrapper,
.top__fv-main-slider .swiper-slide {
    width: 100%;
    height: 100%; /* 親要素(.top__fv)の高さを継承させる */
}

/* スライドの中身の基準点 */
.top__fv-main-slider .swiper-slide {
    position: relative; /* 重要：絶対配置の基準をここに固定 */
}

.top__fv-news-date {
    display: block;
    font-size: 16px;
    color: #846418;
    margin-bottom: 10px;
}
.top__fv-news-ttl {
    font-size: 12px;
    text-decoration: underline;
}
.top__about-h2--wrapper {
    width: 450px;
    position: absolute;
    top: 340px;
    left: calc(50% - 550px);
}
@media screen and (max-width: 1400px) {
.top__about-h2--wrapper {
    top: 200px;
}
}
@media screen and (max-width: 1200px) {
.top__about-h2--wrapper {
    width: 400px;
    left: calc(50% - 420px);
}
}
@media screen and (max-width: 960px) {
.top__about-h2--wrapper {
    width: 100%;
    position: static;
    top: auto;
    left: auto;
}
}
.top__about-h2--en {
    display: inline-block;
    font-size: 19px;
    color: #846418;
}
@media screen and (max-width: 768px) {
.top__about-h2--en {
    font-size: 14px;
    margin-bottom: 20px;
}
}
.top__about-h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 2px;
}
@media screen and (max-width: 1200px) {
.top__about-h2 {
    font-size: 32px;
}
}
@media screen and (max-width: 768px) {
.top__about-h2 {
    font-size: 26px;
    margin-bottom: 30px;
}
}
.top__about-leftBlc {
    width: 390px;
    position: absolute;
    top: 500px;
    right: calc(50% - 540px);
}
@media screen and (max-width: 1400px) {
.top__about-leftBlc {
    top: 250px;
}
}
@media screen and (max-width: 1200px) {
.top__about-leftBlc {
    width: 300px;
    right: calc(50% - 420px);
}
}
@media screen and (max-width: 960px) {
.top__about-leftBlc {
    width: 100%;
    position: static;
    top: auto;
    right: auto;
}
}
.top__about-leftBlc__text {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
.top__about-leftBlc__text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
}
}
.top__about-leftBlc__link {
    width: 180px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 10px;
    margin: 0 0 0 auto;
    
    /* 修正：border-bottomを削除し、親を相対位置指定にする */
    border-bottom: none;
    position: relative; 
    text-decoration: none;
    color: #33312C;
}
@media screen and (max-width: 768px) {
    .top__about-leftBlc__link {
        border-bottom: 1px solid #33312C;
    }
}

/* 1. ボーダーのアニメーション */
@media screen and (min-width: 769px) {
    .top__about-leftBlc__link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;           /* 最初は幅0 */
        height: 1px;
        background-color: #33312C;
        transition: width 0.4s ease; /* アニメーションの設定 */
    }
}

/* ホバー時に幅を100%にする */
.top__about-leftBlc__link:hover::after {
    width: 100%;
}

/* 2. 矢印の動き */
.top__about-leftBlc__link .top__about-leftBlc__link--arrow {
    display: inline-block; /* transformを効かせるために必要 */
    transition: transform 0.3s ease;
}

/* ホバー時に右へ移動 */
.top__about-leftBlc__link:hover .top__about-leftBlc__link--arrow {
    transform: translateX(10px); /* 10px右に動かす */
}
@media screen and (max-width: 768px) {
.top__about-leftBlc__link {
    font-size: 16px;
}
}
.top__about-ticker {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: flex; /* 横に並べる */
    user-select: none;
    opacity: 0.6;
}
@media screen and (max-width: 768px) {
.top__about-ticker {
    bottom: 30px;
}
}
.ticker-content {
    display: flex;
    flex-shrink: 0; /* 幅を縮ませない */
    min-width: 100%; /* 最低でも画面幅分確保 */
    padding-left: 0; /* 左の余白を消す */
    animation: ticker-loop 100s linear infinite;
}

.ticker-content span {
    font-size: 240px;
    font-weight: 300;
    color: #FDFDFC;
    padding-right: 50px; /* テキスト間の余白 */
    white-space: nowrap;
}
@media screen and (max-width: 1200px) {
.ticker-content span {
    font-size: 180px;
}
}
@media screen and (max-width: 768px) {
.ticker-content span {
    font-size: 90px;
}
}
/* 1つめが左に消え切るタイミングで、2つめが全く同じ位置に来るようにループ */
@keyframes ticker-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.top__products {
    background-color: #F6F4F0;
    padding: 200px 0 100px;
}
@media screen and (max-width: 768px) {
.top__products {
    padding: 80px 0;
}
.top__products .inner {
    padding: 0 20px;
}

}
.top__products-topText {
    margin-bottom: 100px;
}
.top__products-h2--wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    column-gap: 15px;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
.top__products-h2--wrapper {
    margin-bottom: 40px;
}
}
.top__products-h2 {
    font-size: 130px;
}
@media screen and (max-width: 768px) {
.top__products-h2 {
    font-size: 64px;
}
}
.top__products-h2--sub {
    font-size: 13px;
}
@media screen and (max-width: 768px) {
.top__products-h2--sub {
    font-size: 11px;
    margin-top: 10px;
}
}
.top__products-topText--text {
    font-size: 15px;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
.top__products-topText--text {
    font-size: 14px;
    text-align: left;
}
}
.top__products-link {
    width: 180px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 10px;
    margin: 0 auto;
    
    /* 修正：border-bottomを削除し、親を相対位置指定にする */
    border-bottom: none;
    position: relative; 
    text-decoration: none;
    color: #33312C;
}
@media screen and (max-width: 768px) {
.top__products-link {
    border-bottom: 1px solid #33312C;
}
}

/* 1. ボーダーのアニメーション */
@media screen and (min-width: 769px) {
    .top__products-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;           /* 最初は幅0 */
        height: 1px;
        background-color: #33312C;
        transition: width 0.4s ease; /* アニメーションの設定 */
    }
}

/* ホバー時に幅を100%にする */
.top__products-link:hover::after {
    width: 100%;
}

/* 2. 矢印の動き */
.top__products-link .top__about-leftBlc__link--arrow {
    display: inline-block; /* transformを効かせるために必要 */
    transition: transform 0.3s ease;
}

/* ホバー時に右へ移動 */
.top__products-link:hover .top__about-leftBlc__link--arrow {
    transform: translateX(10px); /* 10px右に動かす */
}
@media screen and (max-width: 768px) {
.top__products-link {
    font-size: 16px;
}
}
.top__products-topText .top__products-link {
    margin: 0 auto;
}
.top__products-reco {
    margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
.top__products-reco {
    margin-bottom: 80px;
}
}
.top__products-reco a {
    transition: transform 0.3s ease; /* 動きを滑らかにする（0.3秒かけて変化） */
    backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
    .top__products-reco a:hover {
        opacity: 1;
        transform: translateY(-10px);
    }
}
.top__products-reco--flex {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}
@media screen and (max-width: 960px) {
.top__products-reco--flex {
    display: block;
    
}
}
.top__products-reco--left {
    width: 55%;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(143, 100, 24, 0.1) 10%, rgba(143, 100, 24, 0.1) 100%);
    position: relative;
    margin-top: 70px;
    padding-bottom: 40px;
}
@media screen and (max-width: 960px) {
.top__products-reco--left {
    margin: 70px auto;
}
}
@media screen and (max-width: 768px) {
.top__products-reco--left {
    width: 100%;
    background-image: none;
    background-color: rgba(143, 100, 24, 0.1);
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 70px auto 50px;
}
}
.top__products-reco__circle {
    width: 315px;
    height: 315px;
    position: absolute;
    top: -60px;
    left: -160px;
    animation: anime-rotate 20s linear infinite;
}
@media screen and (max-width: 768px) {
.top__products-reco__circle {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -50px;
}
}
.top__products-reco__circle img {
    width: 100%;  /* 親要素の幅に合わせる */
    height: auto; /* アスペクト比を維持 */
}
@keyframes anime-rotate {
    0% {
        transform: rotate(0deg); /* 開始：0度 */
    }
    100% {
        transform: rotate(360deg); /* 終了：360度（1回転） */
    }
}

.top__products-reco--right {
    width: 45%;
    margin-bottom: 120px;
}
@media screen and (max-width: 960px) {
.top__products-reco--right {
    width: 100%;
}
}
@media screen and (max-width: 768px) {
.top__products-reco--right {
    width: 100%;
    margin-bottom: 60px;
    margin-top: -80px;
}
}
.top__products-reco__bottle--flex {
    display: flex;
    width: 83%;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
@media screen and (max-width: 768px) {
.top__products-reco__bottle--flex {
    width: 50%;
}
}
.top__products-reco__name {
    font-size: 90px;
    color: #846418;
    margin-bottom: 60px;
    line-height: 1;
}
@media screen and (max-width: 1200px) {
.top__products-reco__name {
    font-size: 78px;
}
}
@media screen and (max-width: 960px) {
.top__products-reco__name {
    text-align: center;
}
}
@media screen and (max-width: 768px) {
.top__products-reco__name {
    font-size: 52px;
    margin-bottom: 40px;
    margin-top: -30px;
    text-align: left;
}
}
.top__products-reco__name--sub {
    display: block;
    font-size: 16px;
    color: #9B9789;
    margin-top: 15px;
}
@media screen and (max-width: 768px) {
.top__products-reco__name--sub {
    font-size: 13px;
    margin-top: 20px;
}
}
.top__products-reco__text {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
.top__products-reco__text {
    text-align: center;
}
}
@media screen and (max-width: 768px) {
.top__products-reco__text {
    font-size: 14px;
    text-align: left;
}
}
.top__products-reco .top__products-link {
    margin: 0 0 0 auto;
}

/* スライダーの上では標準のカーソルを非表示にする */
.top__products-slider {
    cursor: none;
}

/* もしスライド内のリンクやボタンにもホバーした時に消したい場合はこれも追加 */
.top__products-slider a, 
.top__products-slider button {
    cursor: none;
}
/* マウスストーカーの基本設定（ご提示のコードを調整） */
.cursor-stalker {
    width: 120px;
    height: 120px;
    background-color: rgba(240, 244, 244, 0.4);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 50%;
    position: fixed; /* absoluteよりfixedの方が追従の計算が楽です */
    top: 0;
    left: 0;
    pointer-events: none; /* マウスイベントを透過させてスライダーを操作可能にする */
    z-index: 100;
    opacity: 0; /* 初期状態は非表示 */
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    transform: translate(-50%, -50%); /* 中心に合わせる */
}

/* 矢印のデザイン（疑似要素） */
.cursor-stalker:before, .cursor-stalker:after {
    content: "";
    width: 10px;
    height: 15px;
    background-color: #11111180;
    display: block;
}
.cursor-stalker:before {
    clip-path: polygon(100% 0, 0% 50%, 100% 100%);
}
.cursor-stalker:after {
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
}

/* --- 画像の拡大エフェクト --- */
.product-img-wrapper {
    overflow: hidden; /* はみ出た分を隠す */
}
.product-img-wrapper img {
    width: 100%;
    transition: transform 0.5s ease; /* ゆっくり拡大させる */
}
/* スライドにホバーしたら中の画像を拡大 */
.swiper-slide:hover .product-img-wrapper img {
    transform: scale(1.1); /* 1.1倍に拡大 */
}

.top__products-slider--wrapper {
    margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
.top__products-slider--wrapper {
    margin-bottom: 80px;
}
}
.top__products-slider {
    width: 100%;
    overflow: hidden; /* はみ出しを隠す */
    padding: 20px 0;
}

.top__products-slider__slide {
    display: flex; /* Swiper-slideの中でカードを中央寄せにする */
    justify-content: center;
    box-sizing: border-box; /* パディングを含めたサイズ計算にする */
}

.top__products-slider__card {
    width: 100%;
    max-height: 640px;
    min-height: 640px;
    display: flex;
    background-color: #fff;
    padding: 40px 60px;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
.top__products-slider__card {
    flex-direction: column;
    max-height: none;
    min-height: 680px;
    padding: 20px 20px 60px;
    gap: 0;
}
}
.top__products-slider__card:hover {
    opacity: 1;
}
.top__products-slider__card::after {
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/slide_triangle.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
.top__products-slider__card::after {
    width: 15px;
}
}
.top__products-slider__card:hover::after {
    transform: translate(5px, 5px);
}
.top__products-slider__card--text {
    writing-mode: vertical-rl;
    width: auto;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
.top__products-slider__card--text {
    font-size: 12px;
    position: absolute;
    top: 30px;
    left: 10px;
}
}
.top__products-slider__card--img {
    width: auto;
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
.top__products-slider__card--img {
    margin: 0 auto;
    height: 340px;
}
}
.top__products-slider__card--img picture {
    height: 100%;
}
.top__products-slider__card:hover .top__products-slider__card--img {
    transform: scale(1.05);
}
.top__products-slider__card--img img {
    margin: 0 auto;
}
.top__products-slider__card--detail {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 768px) {
.top__products-slider__card--detail {
    width: 100%;
}
}
.top__products-slider__card-title {
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.top__products-slider__card-title {
    margin-bottom: 20px;
}
}
.top__products-slider__card-name {
    font-size: 65px;
    margin-bottom: 15px;
    color: #846418;
}
@media screen and (max-width: 1800px) {
.top__products-slider__card-name {
    line-height: 1;
    font-size: 50px;
}
}
@media screen and (max-width: 1500px) {
.top__products-slider__card-name {
    font-size: 46px;
}
}
@media screen and (max-width: 768px) {
.top__products-slider__card-name {
    font-size: 36px;
}
}
.top__products-slider__card-name--sub {
    font-size: 16px;
    color: #9B9789;
}
@media screen and (max-width: 768px) {
.top__products-slider__card-name--sub {
    font-size: 10px;
}
}
.top__products-slider__card-price {
    font-size: 40px;
    color: #33312C;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.top__products-slider__card-price {
    font-size: 22px;
}
}
.top__products-slider__card-price--small {
    font-size: 14px;
    margin-left: 5px;
}
@media screen and (max-width: 768px) {
.top__products-slider__card-price--small {
    font-size: 10px;
}
}
.top__products-slider__card-detail {
    font-size: 14px;
    border-left: 3px solid #846418;
    padding-left: 3px;
}
@media screen and (max-width: 768px) {
.top__products-slider__card-detail {
    font-size: 10px;
}
}
.top__products-slider__card-detail--border {
    border-left: 1px solid #846418;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.75;
}
.top__products-slider--wrapper .top__products-link {
    margin: 60px 0 0 auto;
}
@media screen and (max-width: 960px) {
.top__products-slider--wrapper .top__products-link {
    margin: 40px 0 0 auto;
}
}
.top__map {
    margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
.top__map {
    margin-bottom: 80px;
}
}
.top__map.top__map--list {
    margin: 150px 0;
}
@media screen and (max-width: 768px) {
.top__map.top__map--list {
    margin: 80px 0;
}
}
.top__map-h2--wrapper {
    text-align: center;
    margin-bottom: 60px;
}
.top__map-h2 {
    font-size: 80px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.top__map-h2 {
    font-size: 44px;
}
}
.top__map-h2--sub {
    font-size: 13px;
}
@media screen and (max-width: 768px) {
.top__map-h2--sub {
    font-size: 11px;
}
}
.top__map-contents {
    background: url(/user_data/packages/EC_2026_pc/assets/img/map_bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 0;
    position: relative;
    width: 100%;
    padding-top: 53.3%;
}
@media screen and (max-width: 768px) {
.top__map-contents {
    background: url(/user_data/packages/EC_2026_pc/assets/img/map_bg_sp.png);
    background-size: 100%;
    padding-top: 167.3%;
}
}
.top__map-contents__item {
    transition: transform 0.3s ease; /* 動きを滑らかにする（0.3秒かけて変化） */
    backface-visibility: hidden;    /* ちらつき防止 */
}
@media screen and (min-width: 768px) {
    .top__map-contents a:hover {
        opacity: 1;
    }
}
@media screen and (min-width: 768px) {
    .top__map-contents a:hover .top__map-contents__item {
        transform: translateY(-5px);
    }
}


/* タブのスタイル */
.sp-tab-nav { 
    display: flex;
    border-bottom: #4a0000 2px solid;
}
.tab-btn { 
    flex: 1;
    padding: 15px;
    border: none;
    background: #ccc;
    cursor: pointer;
    max-width: 90px;
}
.tab-btn.active { 
    background: #800;
    color: #fff;
}

/* コンテンツエリアのスタイル */
.tab-content { 
    display: none;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 165%;
    background-size: cover;
    background-position: center;
}
.tab-content.active { 
    display: block;
}

/* 背景画像の切り替え */
#sweet {
    background-image: url('/user_data/packages/EC_2026_pc/assets/img/map_bg_sweet.jpg');
}
#dry { 
    background-image: url('/user_data/packages/EC_2026_pc/assets/img/map_bg_dry.jpg');
}

/* ボトルの共通設定 */
.bottle { position: absolute; width: 50px; /* ボトルのサイズは適宜調整 */ }

.top__map-contents__item {
    max-height: 140px;
    position: absolute;
}
@media screen and (max-width: 768px) {
.top__map-contents__item {
    height: 85px;
}
}
@media screen and (max-width: 600px) {
.top__map-contents__item {
    height: 70px;
}
}
@media screen and (max-width: 500px) {
.top__map-contents__item {
    height: 55px;
}
}
.top__map-contents__item-01 {
    top: -2%;
    left: 1%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-01 {
    top: 3%;
    left: 5%;
}
}
.top__map-contents__item-02 {
    top: -2%;
    right: 22%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-02 {
    top: 11%;
    right: 70%;
}
}
.top__map-contents__item-03 {
    top: -2%;
    left: 17%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-03 {
    top: 21%;
    left: 46%;
}
}
.top__map-contents__item-04 {
    top: -2%;
    right: 15%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-04 {
    top: 18%;
    right: 4%;
}
}
.top__map-contents__item-05 {
    top: -2%;
    right: 8%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-05 {
    top: 2%;
    right: 47%;
}
}
.top__map-contents__item-06 {
    top: -2%;
    right: 1%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-06 {
    top: 10%;
    right: 3%;
}
}
.top__map-contents__item-07 {
    top: 19%;
    right: 5%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-07 {
    top: 32%;
    right: 9%;
}
}
.top__map-contents__item-08 {
    top: 41%;
    left: 36%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-08 {
    top: 40%;
    left: 70%;
}
}
.top__map-contents__item-09 {
    top:41%;
    left: 43%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-09 {
    top:50%;
    left: 70%;
}
}
.top__map-contents__item-10 {
    top:41%;
    left: 51%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-10 {
    top: 41%;
    left: 6%;
}
}
.top__map-contents__item-11 {
    top:41%;
    left: 58%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-11 {
    top: 51%;
    left: 6%;
}
}
.top__map-contents__item-12 {
    top:50%;
    left: 6%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-12 {
    top: 63%;
    left: 8%;
}
}
.top__map-contents__item-13 {
    top:50%;
    left: 14%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-13 {
    top: 57%;
    left: 36%;
}
}
.top__map-contents__item-14 {
    top:50%;
    left: 21%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-14 {
    top: 64%;
    left: 42%;
}
}
.top__map-contents__item-15 {
    top:50%;
    left: 29%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-15 {
    top: 65%;
    left: 68%;
}
}
.top__map-contents__item-16 {
    top:26%;
    left: 17%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-16 {
    top: 49%;
    left: 46%;
}
}
.top__map-contents__item-17 {
    top:57%;
    left: 1%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-17 {
    top: 72%;
    left: 6%;
}
}
.top__map-contents__item-18 {
    top:57%;
    left: 9%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-18 {
    top: 74%;
    left: 61%;
}
}
.top__map-contents__item-19 {
    top:79%;
    left: 1%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-19 {
    top: 81%;
    left: 6%;
}
}
.top__map-contents__item-20 {
    top:79%;
    left: 4%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-20 {
    top: 90%;
    left: 6%;
}
}
.top__map-contents__item-21 {
    top:79%;
    left: 10%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-21 {
    top: 90%;
    left: 27%;
}
}
.top__map-contents__item-22 {
    top:79%;
    left: 17%;
}
@media screen and (max-width: 768px) {
.top__map-contents__item-22 {
    top: 81%;
    left: 35%;
}
}
.top__map-text {
    font-size: 12px;
    color: #9B9789;
    margin-top: 15px;
    text-align: right;
}
@media screen and (max-width: 768px) {
.top__map-text {
    font-size: 10px;
}
}
.top__banner--wrapper {
    margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
.top__banner--wrapper {
    margin-bottom: 100px;
}
}
.top__banner {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/banner_bg.png);
    background-size: 100% 100%;
    background-position: center;
    color: #FDFDFC;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4% 60px;
    transition: transform 0.5s ease;
}
@media screen and (min-width: 961px) {
    .top__banner:hover {
        transform: scale(1.02);
        opacity: 1;
    }
}
@media screen and (max-width: 768px) {
.top__banner {
    padding: 4% 30px;
    background-size: 100% 102%;
}
}
@media screen and (max-width: 600px) {
.top__banner {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/banner_bg_sp.png);
    background-size: 100% 100%;
    padding: 13% 30px;
}
}
@media screen and (max-width: 500px) {
.top__banner {
    padding: 30% 30px;
}
}
.top__banner::after {
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/triangle_white.svg);
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 5%;
    right: 2%;
}
@media screen and (max-width: 768px) {
.top__banner::after {
    width: 15px;
    height: 15px;
    bottom: 3.5%;
    right: 2.5%;
}
}
.top__banner--left {
}
@media screen and (max-width: 768px) {
.top__banner--left {
}
}
.top__banner-title--sub {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
.top__banner-title--sub {
    font-size: 14px;
    margin-bottom: 20px;
}
}
@media screen and (max-width: 768px) {
.top__banner-title--sub {
    font-size: 11px;
}
}
.top__banner-title {
    font-size: 42px;
    margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
.top__banner-title {
    font-size: 32px;
    margin-bottom: 20px;
}
}
@media screen and (max-width: 960px) {
.top__banner-title {
    font-size: 26px;
    margin-bottom: 40px;
    line-height: 1.5;
}
}
@media screen and (max-width: 550px) {
.top__banner-title {
    font-size: max(26px, 7vw);
}
}
.top__banner-text {
    font-size: 15px;
    line-height: 1.75;
}
@media screen and (max-width: 1200px) {
.top__banner-text {
    font-size: 13px;
}
}
@media screen and (max-width: 960px) {
.top__banner-text {
    font-size: 12px;
    line-height: 2;
}
}
.top__banner--right {
    width: 20%;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 768px) {
.top__banner--right {
    width: 38%;
}
}
@media screen and (max-width: 550px) {
.top__banner--right {
    width: 28%;
    position: absolute;
    top: 5%;
    right: 12%;
}
}
@media screen and (max-width: 500px) {
.top__banner--right {
    width: 40%;
    right: 5%;
}
}
@media screen and (max-width: 400px) {
.top__banner--right {
    width: 38%;
    top: 9%
}
}
.top__banner-bgImage {
    width: 28%;
    position: absolute;
    bottom: 5%;
    right: 2%;
}
@media screen and (max-width: 960px) {
.top__banner-bgImage {
    width: 30%;
}
}
@media screen and (max-width: 768px) {
.top__banner-bgImage {
    width: 48%;
}
}
.top__store {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/store_bg.png);
    background-size: cover;
    display: flex;
    position: relative;
}
.top__store--left {
    width: 62%;
    position: relative;
}
@media screen and (max-width: 1200px) {
.top__store--left {
    width: 58%;
}
}
@media screen and (max-width: 960px) {
.top__store--left {
    width: 100%;
    height: 0;
    padding-top: 123%;
}
}
@media screen and (max-width: 768px) {
.top__store--left {
    padding-top: 113%;
}
}
.top__store-img--top {
    width: 64%;
    height: 35%;
    position: absolute;
    top: -4%;
    left: 0;
    z-index: 1;
}
@media screen and (max-width: 1300px) {
.top__store-img--top {
    width: 74%;
}
}
@media screen and (max-width: 960px) {
.top__store-img--top {
    width: 77vw;
    height: 39%;
    top: 0;
}
}
.top__store-img--center {
    width: 43%;
    height: 46%;
    position: absolute;
    top: 16%;
    left: 48%;
    z-index: 1;
}
@media screen and (max-width: 1500px) {
.top__store-img--center {
    top: 14%
}
}
@media screen and (max-width: 1300px) {
.top__store-img--center {
    width: 53%;
    left: 38%;
    top: 12%
}
}
@media screen and (max-width: 1080px) {
.top__store-img--center {
    top: 11%
}
}
@media screen and (max-width: 960px) {
.top__store-img--center {
    width: 40vw;
    height: 45%;
    top: 33vw;
    left: 55vw;
}
}
.top__store-img--bottom {
    width: 44%;
    height: 34%;
    position: absolute;
    top: 46%;
    left: 10%;
    z-index: 1;
}
@media screen and (max-width: 1500px) {
.top__store-img--bottom {
    top: 42%;
}
}
@media screen and (max-width: 1300px) {
.top__store-img--bottom {
    height: 26%;
    top: 38%;
}
}
@media screen and (max-width: 1080px) {
.top__store-img--bottom {
    top: 35%;
}
}
@media screen and (max-width: 960px) {
.top__store-img--bottom {
    width: 43vw;
    height: 39%;
    top: 70vw;
    left: 18vw;
}
}
.top__store--right {
    width: 38%;
    margin: 140px 0 200px;
    color: #FDFDFC;
    margin-right: calc((100% - 1200px) / 2);
}
@media screen and (max-width: 1200px) {
.top__store--right {
    width: 40%;
    margin: 120px 0 180px;
}
}
@media screen and (max-width: 960px) {
.top__store--right {
    width: 100%;
    margin: 100px 0;
}
}
.parallax-container {
    overflow: hidden;  /* はみ出した部分を隠す（＝これが枠の役割） */
}

.parallax-image {
    width: 100%;
    height: 120%;      /* 枠より大きくする（120%など） */
    object-fit: cover; /* 画像が歪まないようにカバー */
    display: block;
}

.top__store-h2--wrapper {
    margin-bottom: 60px;
    padding: 0 20px;
}
@media screen and (max-width: 960px) {
.top__store-h2--wrapper {
    margin-bottom: 40px;
}
}
.top__store-h2 {
    font-size: 130px;
    margin-bottom: 10px;
    line-height: 1.25;
}
@media screen and (max-width: 1700px) {
.top__store-h2 {
    font-size: 70px;
}
}
.top__store-h2--sub {
    font-size: 13px;
    letter-spacing: 2px;
}
.top__store-text {
    font-size: 15px;
    line-height: 2.5;
    margin-bottom: 20px;
    padding: 0 20px;
}
@media screen and (max-width: 960px) {
.top__store-text {
    font-size: 14px;
    margin-bottom: 40px;
}
}
.top__store-link {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 768px) {
.top__store-link {
    gap: 20px;
}
}
.top__store-link__item {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #FDFDFC;
}
@media screen and (max-width: 768px) {
.top__store-link__item {
    padding: 20px 0;
}
}
.top__store-link__item:after {
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/arrow_right_white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 13px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
.top__store-link__item:after {
    right: 0;
}
}
.top__store-link__item:hover:after {
    /* 元の translateY(-50%) を維持したまま、右に 5px 移動 */
    transform: translateY(-50%) translateX(5px);
}
.top__store-link__item-title {
    font-size: 22px;
}
@media screen and (max-width: 768px) {
.top__store-link__item-title {
    font-size: 15px;
}
}
.top__store-link__item-title--sub {
    font-size: 16px;
    margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
.top__store-link__item-title--sub {
    font-size: 11px;
}
}
.top__store-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: flex; /* 横に並べる */
    user-select: none;
    opacity: 0.2;
}
@media screen and (max-width: 960px) {
.top__store-ticker {
    top: 41%;
}
}
@media screen and (max-width: 768px) {
.top__store-ticker {
    top: 38%;
}
}
@media screen and (max-width: 600px) {
.top__store-ticker {
    top: 38%;
}
}
@media screen and (max-width: 500px) {
.top__store-ticker {
    top: 36%;
}
}
.top__store-ticker .ticker-content span {
    font-size: 240px;
    line-height: 1;
}
@media screen and (max-width: 1200px) {
.top__store-ticker .ticker-content span {
    font-size: 120px;
}
}
@media screen and (max-width: 415px) {
.top__store-ticker .ticker-content span {
    font-size: 100px;
}
}
.top__news--wrapper {
    position: relative;
    padding: 200px 0;
    background-color: #F6F4F0;
}
@media screen and (max-width: 960px) {
.top__news--wrapper {
    padding: 40px 0 100px;
}
}
.top__news {
    display: flex;
    gap: 120px;
}
@media screen and (max-width: 960px) {
.top__news {
    flex-direction: column;
    gap: 40px;
}
}
.top__news-h2 {
    font-size: 130px;
}
@media screen and (max-width: 960px) {
.top__news-h2 {
    font-size: 64px;
    margin-bottom: 10px;
}
}
.top__news-h2--sub {
    font-size: 13px;
}
@media screen and (max-width: 960px) {
.top__news-h2--sub {
    font-size: 11px;
}
}
.top__news-contents {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #CFCDC9;
}
.top__news-contents__item {
    display: flex;
    gap: 40px;
    font-size: 15px;
    padding: 40px 10px;
    border-bottom: 1px solid #CFCDC9;
    position: relative;
    line-height: 1.75;
}
@media screen and (max-width: 960px) {
.top__news-contents__item {
    font-size: 14px;
    display: block;
}
}
@media screen and (max-width: 768px) {
.top__news-contents__item {
    padding: 20px 10px;
}
}
.top__news-contents__item-date {
    color: #846418;
    display: inline-block;
}
@media screen and (max-width: 960px) {
.top__news-contents__item-date {
    margin-bottom: 20px;
}
}
.top__news-contents__item-title {
    padding-right: 40px;
}
.top__news--right {
    flex: 1;
}
.top__news--right .top__products-link {
    margin: 60px 0 0 auto;
}
.top__news-contents__item-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.footer__top {
    position: relative;
    z-index: 2;
    background-color: #4D0000;
    padding: 200px 20px 60px;
    color: #FDFDFC;
}
@media screen and (max-width: 768px) {
.footer__top {
    padding: 60px 0;
}
}
.footer__top-contents {
    display: flex;
    gap: 200px;
}
@media screen and (max-width: 960px) {
.footer__top-contents {
    justify-content: space-between;
    gap: 60px;
}
}
@media screen and (max-width: 768px) {
.footer__top-contents {
    flex-direction: column;
    gap: 40px;
}
}
@media screen and (max-width: 768px) {
.footer__top-contents--left {
    width: 40%;
    margin: 0 auto;
}
}
.footer__top-contents--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
}
@media screen and (max-width: 768px) {
.footer__top-contents--grid {
    column-gap: 30px;
}
}
.footer__top-contents--right {
    display: flex;
    gap: 60px;
}
@media screen and (max-width: 768px) {
.footer__top-contents--right {
    justify-content: center;
}
}
.footer__top-contents__nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    
}
.footer__top-contents__nav-blc-title {
    font-size: 32px;
}
.footer__top-contents__nav-blc-list {
    margin-top: 20px;
    line-height: 2.5;
}
.footer__top-contents__nav-blc-list-item {
    font-size: 13px;
}
.footer__top-linkBlc {
    border-top: 1px solid #FDFDFC;
    margin-top: 250px;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    font-size: 12px;
}
@media screen and (max-width: 768px) {
.footer__top-linkBlc {
    display: block;
    margin-top: 40px;
    padding: 40px 0 0;
}
}
.footer__top-linkBlc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media screen and (max-width: 768px) {
.footer__top-linkBlc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
}
@media screen and (max-width: 768px) {
.footer__copy {
    margin-top: 60px;
    text-align: center;
}
}
.footer__bottom {
    position: sticky;
    bottom: 0;
    z-index: 1;

    background-image: url(/user_data/packages/EC_2026_pc/assets/img/footer_bg.png);
    background-size: cover;
    background-position: center;
    height: 1080px;
}
@media screen and (max-width: 768px) {
.footer__bottom {
    height: 668px;
}
}
.footer__bottom-contents {
    width: 100%;
    position: absolute;
    top: 1400px;
    left: 50%;
    transform: translateX(-50%);
    color: #FDFDFC;
    text-align: center;
}
@media screen and (max-width: 768px) {
.footer__bottom-contents {
    top: 125%;
}
}
.footer__bottom-contents__main {
    font-size: 56px;
    line-height: 1.75;
}
@media screen and (max-width: 768px) {
.footer__bottom-contents__main {
    font-size: 26px;
}
}
.footer__bottom-contents__sub {
    font-size: 26px;
    margin-top: 30px;
}
@media screen and (max-width: 768px) {
.footer__bottom-contents__sub {
    font-size: 13px;
}
}

.fixed__button {
    width: 133px;
    position: fixed;
    bottom: 60px;
    right: 40px;
    font-size: 18px;
    color: #33312C;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(20px);
}
@media screen and (max-width: 768px) {
    .fixed__button {
        width: 20%;
        bottom: 20px;
        right: 20px;
        font-size: 14px;
    }
}
.fixed__button.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Buyボタンのベース */
.fixed__button-item--buy {
    transition: transform 0.5s ease, filter 0.4s ease;
}
@media screen and (min-width: 961px) {
    .fixed__button-item--buy:hover {
        transform: scale(1.05);
        opacity: 1;
    }
}

.fixed__button-item--buy.is-invert img {
    filter: brightness(1.4);
}

/* TOPボタンのベース */
.fixed__button-item--top {
  transition: color 0.4s ease, filter 0.4s ease; /* 文字色とアイコンの両方を対象にする */
}

.fixed__button-item--top.is-invert {
    color: #fff;
}

.fixed__button-item--top.is-invert img {
    filter: brightness(0) invert(1);
}

.fixed__button-item--top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* 共通タイトル部分 */
.common__title--wrapper {
    text-align: center;
}
.common__title {
    font-size: 130px;
    color: #33312C;
    margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
.common__title {
    font-size: 60px;
}
}
.common__title--sub {
    font-size: 13px;
    letter-spacing: 1.5px;
}
@media screen and (max-width: 960px) {
.common__title--sub {
    font-size: 11px;
}
}
.common__linkArea {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}
@media screen and (max-width: 768px) {
.common__linkArea {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
}
#about .common__linkArea,#products .common__linkArea {
    padding: 0 20px;
}
.common__linkArea-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 17px;
    background-color: #4D0000;
    color: #FDFDFC;
    padding: 10px 20px;
    width: 280px;
    position: relative;
}
@media screen and (max-width: 768px) {
.common__linkArea-item {
    width: 100%;
}
}
.common__linkArea-item:before {
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/triangle_white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    
}
.common__linkArea-item--sub {
    font-size: 10px;
}
.common__lineUp {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/lineup_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 20px 180px;
    position: relative;
}
@media screen and (max-width: 768px) {
.common__lineUp {
    padding: 80px 0 100px;
}
}
.common__lineUp--flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 120px;
    color: #FDFDFC;
}
@media screen and (max-width: 768px) {
.common__lineUp--flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
}
.common__lineUp-h2 {
    font-size: 130px;
}
@media screen and (max-width: 960px) {
.common__lineUp-h2 {
    font-size: 64px;
    margin-bottom: 10px;
}
}
.common__lineUp-h2--sub {
    font-size: 13px;
    letter-spacing: 1.5px;
}
@media screen and (max-width: 960px) {
.common__lineUp-h2--sub {
    font-size: 11px;
}
}
.common__lineUp-link {
    width: 180px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 10px;
    margin: 0 auto;
    border-bottom: 1px solid #FDFDFC;
}
@media screen and (max-width: 768px) {
.common__lineUp-link {
    font-size: 16px;
}
}
.common__lineUp-ticker {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: flex; /* 横に並べる */
    user-select: none;
    opacity: 0.2;
    line-height: 1;
}
@media screen and (max-width: 1200px) {
.common__lineUp-ticker {
    bottom: -30px;
}
}
@media screen and (max-width: 768px) {
.common__lineUp-ticker {
    bottom: -10px;
}
}

/* わたしたちについて */
#about {
    background-color: #F6F4F0;
}
.about__main {
    width: 100%;
    padding-right: 80px;
    margin-top: 120px;
}
@media screen and (max-width: 768px) {
.about__main {
    padding-right: 20px;
    margin-top: 60px;
}
}
.about__feature-h2Area {
    padding: 60px 20px;
    margin-top: 90px;
}
@media screen and (max-width: 960px) {
.about__feature-h2Area {
    padding: 30px 20px;
    margin-top: 30px;
}
}
.about__feature-h2Area-h2 {
    font-size: 52px;
    margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
.about__feature-h2Area-h2 {
    font-size: 26px;
    margin-bottom: 30px;
}
}
.about__feature-h2Area-text {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}
@media screen and (max-width: 960px) {
.about__feature-h2Area-text {
    font-size: 14px;
}
}
.about__feature-contents {
    padding: 80px 0;
}
@media screen and (max-width: 768px) {
.about__feature-contents {
    padding: 30px 0;
}
}
.about__feature-contents .inner {
    display: flex;
    flex-direction: column;
    gap: 150px;
}
@media screen and (max-width: 768px) {
.about__feature-contents .inner {
    gap: 60px;
}
}
.about__feature-bg-manager {
    background-color: #4D0000; /* 初期の色 */
    transition: background-color 0.8s ease; /* ふわっと変化させる */
}
.about__feature-bg-manager.is-light {
    background-color: #F6F4F0;
}
.about__feature-bg-manager.is-light .about__feature-contents--top {
    color: #33312C; 
}
.about__feature-contents--top {
    color: #FDFDFC;
    background-color: transparent;
    transition: color 0.8s ease;
}
.about__feature-contents-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}
@media screen and (max-width: 960px) {
.about__feature-contents-item {
    flex-direction: column;
    gap: 40px;
}
}
.about__feature-contents-item-img {
    width: 48%;
}
@media screen and (max-width: 960px) {
.about__feature-contents-item-img {
    margin: 0 auto;
}
}
@media screen and (max-width: 768px) {
.about__feature-contents-item-img {
    width: 100%;
}
}
.about__feature-contents-item:nth-of-type(2) .about__feature-contents-item-img{
    order: 2;
}
@media screen and (max-width: 960px) {
.about__feature-contents-item:nth-of-type(2) .about__feature-contents-item-img{
    order: 1;
}
}
.about__feature-contents-item-textArea {
    width: 52%;
}
@media screen and (max-width: 960px) {
.about__feature-contents-item-textArea {
    width: 100%;
    order: 2;
}
}
.about__feature-contents-item-textArea-num {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.about__feature-contents-item-textArea-num {
    font-size: 15px;
    margin-bottom: 10px;
}
}
.about__feature-contents--bottom {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/about/features_bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 80px 0 700px;
}
@media screen and (max-width: 768px) {
.about__feature-contents--bottom {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/about/features_bg_sp.png);
    padding: 30px 0 110%;
}
}
.about__feature-contents--bottom .about__feature-contents-item-textArea-num {
    color: #846418;
}
.about__feature-contents-item-textArea-title {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 1px;
    margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
.about__feature-contents-item-textArea-title {
    font-size: 28px;
}
}
@media screen and (max-width: 768px) {
.about__feature-contents-item-textArea-title {
    font-size: 20px;
    margin-bottom: 30px;
}
}
.about__feature-contents-item-textArea-text {
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.about__feature-contents-item-textArea-text {
    font-size: 14px;
}
}
.about__store {
    position: relative;
    text-align: center;
    padding: 200px 0 20%;
    max-width: 1920px;
    margin: 0 auto;
}
@media screen and (max-width: 1500px) {
.about__store {
    padding: 200px 0 30%;
}
}
@media screen and (max-width: 768px) {
.about__store {
    padding: 80px 20px 110%;
    margin-bottom: 40px;
}
}
@media screen and (max-width: 650px) {
.about__store {
    padding: 80px 20px 105%;
}
}
@media screen and (max-width: 500px) {
.about__store {
    padding: 80px 20px 118%;
    margin-bottom: initial;
}
}
@media screen and (max-width: 400px) {
.about__store {
    padding: 80px 20px 130%;
}
}
.about__store-img {
    position: absolute;
}
.about__store-img--leftTop {
    top: 22%;
    left: 0;
    width: 26vw;
    z-index: 2;
}
@media screen and (min-width: 1921px) {
    .about__store-img--leftTop {
        max-width: 470px;
    }
}
@media screen and (max-width: 1500px) {
    .about__store-img--leftTop {
        width: 22vw;
    }
}
@media screen and (max-width: 1200px) {
    .about__store-img--leftTop {
        top: 29%;
    }
}
@media screen and (max-width: 960px) {
    .about__store-img--leftTop {
        width: 19vw;
    }
}
@media screen and (max-width: 768px) {
    .about__store-img--leftTop {
        top: auto;
        bottom: 35%;
        left: 4%;
        width: 47%;
    }
}
@media screen and (max-width: 600px) {
    .about__store-img--leftTop {
        bottom: 33%;
    }
}
@media screen and (max-width: 450px) {
    .about__store-img--leftTop {
        bottom: 31%;
    }
}
.about__store-img--leftBottom {
    top: 52%;
    left: 18%;
    width: 12vw;
    z-index: 2;
}
@media screen and (min-width: 1921px) {
    .about__store-img--leftBottom {
        max-width: 255px;
    }
}
@media screen and (max-width: 1500px) {
    .about__store-img--leftBottom {
        top: 50%;
        left: 12%;
    }
}
@media screen and (max-width: 960px) {
    .about__store-img--leftBottom {
        left: 8%;
    }
}
@media screen and (max-width: 768px) {
    .about__store-img--leftBottom {
        top: auto;
        left: 0;
        bottom: 0%;
        width: 39%;
    }
}
@media screen and (max-width: 650px) {
    .about__store-img--leftBottom {
        bottom: 2%;
    }
}
@media screen and (max-width: 600px) {
    .about__store-img--leftBottom {
        bottom: 5%;
    }
}
@media screen and (max-width: 500px) {
    .about__store-img--leftBottom {
        width: 42%;
        bottom: 6%;
    }
}
@media screen and (max-width: 400px) {
    .about__store-img--leftBottom {
        bottom: 7%;
    }
}
.about__store-img--right {
    top: 22%;
    right: 0;
    width: 27vw;
    z-index: 2;
}
@media screen and (min-width: 1921px) {
    .about__store-img--right {
        max-width: 562px;
    }
}
@media screen and (max-width: 1200px) {
.about__store-img--right {
    width: 24vw;
}
}
@media screen and (max-width: 960px) {
.about__store-img--right {
    width: 23vw;
}
}
@media screen and (max-width: 768px) {
.about__store-img--right {
    width: 44%;
    top: auto;
    bottom: 5%;
}
}
@media screen and (max-width: 500px) {
.about__store-img--right {
    width: 46%;
}
}
.about__store-ticker {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: flex; /* 横に並べる */
    user-select: none;
    opacity: 0.8;
}
@media screen and (max-width: 768px) {
.about__store-ticker {
    bottom: 23%;
}
}
@media screen and (max-width: 500px) {
.about__store-ticker {
    bottom: 22%;
}
}
@media screen and (max-width: 400px) {
.about__store-ticker {
    bottom: 21%;
}
}
.about__store-h2Area {
    margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
    .about__store-h2Area {
        margin-bottom: 40px;
    }
}
.about__store-h2Area-h2 {
    font-family: ms-mincho, sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.75;
}
@media screen and (max-width: 1500px) {
    .about__store-h2Area-h2 {
        font-size: 32px;
        line-height: 1.5;
    }
}
.about__store-h2Area-h2--sub {
    font-size: 19px;
    margin-bottom: 40px;
    color: #846418;
}
@media screen and (max-width: 1200px) {
.about__store-h2Area-h2--sub {
    margin-bottom: 20px;
}
}
.about__store-textArea {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 15px;
    line-height: 2.25;
}
@media screen and (max-width: 1500px) {
    .about__store-textArea {
        gap: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .about__store-textArea {
        font-size: 13px;
    }
}

.about__location {
    padding: 0 20px 160px;
}
@media screen and (max-width: 768px) {
.about__location {
    padding: 0 0 40px;
    overflow: hidden;
}
}
.about__store-location--wrapper {
    text-align: center;
    padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
.about__store-location--wrapper {
    text-align: left;
    padding: 0 0 40px;
}
}
.about__store-location {
    font-size: 130px;
    color: #33312C;
    margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
.about__store-location {
    font-size: 64px;
    line-height: 1;
}
}
.about__store-location--sub {
    font-size: 13px;
    letter-spacing: 1.5px;
}
.about__location-contents {
    display: flex;
    gap: 60px;
}
@media screen and (max-width: 768px) {
.about__location-contents {
    flex-direction: column;
    gap: 30px;
}
}
.about__location-contents-img {
    transition: opacity 0.3s ease; /* 0.3秒かけてふわっとさせる */
    opacity: 1;
}
.is-fading {
    opacity: 0;
}
.about__location-contents--left {
    width: 50%;
    position: sticky;       /* stickyに変更（元は relative） */
    top: 40px;             /* スクロール時に画面の上端からどのくらい空けるか（お好みで調整） */
    align-self: flex-start; /* 親要素（flex）の高さに引っ張られず、上基準で固定するために必須 */
    height: fit-content;
}
@media screen and (max-width: 768px) {
.about__location-contents--left {
    width: 100%;
    position: relative; /* stickyを解除 */
    top: initial;       /* 上端の固定を解除 */
}
}
@media screen and (max-width: 768px) {
.about__location-contents--left img {
    width: 100%;
}
}
.about__location-contents--left .about__location-circle {
    width: 315px;
    height: 315px;
    position: absolute;
    top: -130px;
    left: -160px;
    animation: anime-rotate 20s linear infinite;
}
@media screen and (max-width: 768px) {
.about__location-contents--left .about__location-circle {
    width: 35%;
    height: auto;
    top: -15%;
    left: auto;
    right: -15%;
}
}
.about__location-contents--right {
    width: 50%;
    border-top: 1px solid #33312C;
}
@media screen and (max-width: 768px) {
.about__location-contents--right {
    width: 100%;
}
}
.about__location-store {
    padding: 60px 0;
    border-bottom: 1px solid #33312C;
}
@media screen and (max-width: 960px) {
.about__location-store {
    padding: 40px 0;
}
}
@media screen and (max-width: 768px) {
.about__location-store {
    padding: 20px 0;
}
}
.about__location-store-name {
    position: relative;
    cursor: pointer;
}
.about__location-store-name::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/arrow_right.svg);
    background-repeat: no-repeat;
    width: 13px;
    height: 15px;
    transition: transform 0.3s ease;
}
.about__location-store-name--sub {
    font-size: 16px;
    color: #846418;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.about__location-store-name--sub {
    font-size: 12px;
    margin-bottom: 10px;
}
}
.about__location-store:hover .about__location-store-name::after {
    transform: translateY(-50%) translateX(5px);
}
.about__location-store-name--main {
    font-size: 32px;
}
@media screen and (max-width: 768px) {
.about__location-store-name--main {
    font-size: 18px;
}
}
.about__location-store-detail {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 1px;
    overflow: hidden;
    height: 0; 
    display: none; 
    transition: height 0.4s ease;
}
@media screen and (max-width: 768px) {
.about__location-store-detail {
    font-size: 13px;
}
}
.about__location-store-detail-inner {
    padding-top: 40px;
}
@media screen and (max-width: 768px) {
.about__location-store-detail-inner {
    padding-top: initial;
}
}
.about__location-store-detail-item {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #9B9789;
}
.about__location-store-detail-item a {
    text-decoration: underline;
}
@media screen and (max-width: 960px) {
.about__location-store-detail-item-title {
    min-width: 30px;
}
}
.about__location-store-detail-map {
    display: inline-block;
    background-color: #4D0000;
    color: #FDFDFC;
    padding: 10px 60px 10px 20px;
    margin-top: 50px;
    font-size: 18px;
    position: relative;
}
@media screen and (max-width: 768px) {
.about__location-store-detail-map {
    margin-top: 20px;
    font-size: 16px;
}
}
.about__location-store-detail-map::after {
    content: '';
    display: inline-block;
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/arrow_right_white.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/* 商品について */
#products {
    background-color: #F6F4F0;
}
.products__point-contents {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 150px;
}
@media screen and (max-width: 768px) {
.products__point-contents {
    padding: 40px 0;
    gap: 60px;
}
}
.products__point-contents-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
@media screen and (max-width: 960px) {
.products__point-contents-item {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
}
}
.products__point-contents-item:nth-of-type(odd) {
    margin-left: calc((100% - 960px) / 2);
}
@media screen and (max-width: 960px) {
.products__point-contents-item:nth-of-type(odd) {
    margin-left: initial;
}
}
.products__point-contents-item:nth-of-type(even) {
    margin-right: calc((100% - 960px) / 2);
}
@media screen and (max-width: 960px) {
.products__point-contents-item:nth-of-type(even) {
    margin-right: initial;
}
}
.products__point-contents-item picture {
    width: 46vw;
    order: 1;
}
@media screen and (max-width: 768px) {
.products__point-contents-item picture {
    width: 100%;
}
}
.products__point-contents-item-textArea {
    order: 2;
    width: 45%;
}
@media screen and (max-width: 960px) {
.products__point-contents-item-textArea {
    width: 100%;
}
}
.products__point-contents-item:nth-of-type(odd) .products__point-contents-item-textArea {
    order: 1;
}
@media screen and (max-width: 960px) {
.products__point-contents-item:nth-of-type(odd) .products__point-contents-item-textArea {
    order: 2;
}
}
.products__point-contents-item:nth-of-type(odd) picture {
    order: 2;
}
@media screen and (max-width: 960px) {
.products__point-contents-item:nth-of-type(odd) picture {
    order: 1;
}
}
.products__point-contents-item-textArea-num {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 75px;
}
.products__point-contents-item-textArea-num:before {
    display: inline-block;
    content: '';
    background-color:  #33312C;
    height: 1px;
    width: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
.products__point-contents-item-textArea-num {
    font-size: 15px;
    margin-bottom: 10px;
}
}
.products__point-contents-item-textArea-title {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.products__point-contents-item-textArea-title {
    font-size: 22px;
}
}
.products__point-contents-item-textArea-title--strong {
    color: #846418;
}
.products__point-contents-item-textArea-text {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.products__point-contents-item-textArea-text p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.products__point-contents-item-textArea-text {
    font-size: 14px;
}
}
.products__slider {
    width: 100%;
    height: 750px;
    display: flex;
    gap: 40px;
    user-select: none;
    padding-top: 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
.products__slider {
    height: 450px;
    gap: 20px;
    padding-top: 120px;
}
}
.ticker-content.ticker-content--img {
    gap: 40px;
}
@media screen and (max-width: 768px) {
.ticker-content.ticker-content--img {
    gap: 20px;
}
}
.products__slider-circle {
    width: 315px;
    height: 315px;
    position: absolute;
    top: 5%;
    left: 15%;
    z-index: 2;
    animation: anime-rotate 20s linear infinite;
}
@media screen and (max-width: 960px) {
.products__slider-circle {
    width: 130px;
    height: 130px;
    top: 10%;
    left: 3%;
}
}
.products__lineup {
    margin: 100px 0 200px;
}
@media screen and (max-width: 768px) {
.products__lineup {
    margin: 100px 0 100px;
}
}
.products__lineup-contents-title--wrapper {
    border-bottom: 1px solid #33312C;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
    margin: 120px 0 20px;
}
@media screen and (max-width: 1200px) {
.products__lineup-contents-title--wrapper {
    margin: 60px 0 30px;
}
}
.products__lineup-contents-sort--sp {
    display: flex;
    justify-content: space-between;
    padding: 0 0 30px;
}
.products__lineup-contents-title {
    font-size: 32px;
}
@media screen and (max-width: 960px) {
.products__lineup-contents-title {
    font-size: 22px;
}
}
.products__lineup-contents-amount {
    font-size: 14px;
}
.products__lineup-contents-amount--num {
    display: inline-block;
}
.products__lineup-contents-nav--wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 20px 50px;
}
@media screen and (max-width: 960px) {
.products__lineup-contents-nav--wrapper {
    margin: 0 0 50px;
}
}
.products__lineup-contents__nav-cat {
    display: flex;
    align-items: center;
    gap: 20px;
}
.products__lineup-contents__nav-cat-title {
    font-size: 15px;
}
.products__lineup-contents__nav-cat-list {
    display: flex;
    gap: 10px;
}
@media screen and (max-width: 768px) {
.products__lineup-contents__nav-cat-list {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
}
}
.products__lineup-contents__nav-cat-list::-webkit-scrollbar {
    display: none;
  }

  .products__lineup-contents__nav-cat-list > * {
    /* 各 item を縮ませず、横に並べ続ける */
    flex: 0 0 auto;
  }
.products__lineup-contents__nav-cat-list-item {
    font-size: 15px;
    color: #9B9789;
    border: 1px solid #9B9789;
}
.products__lineup-contents__nav-cat-list-item.is-active {
    font-size: 15px;
    color: #846418;
    border: 1px solid #846418;
}
#product-list .products__lineup-contents__nav-cat-list-item {
    font-size: 15px;
    color: #846418;
    border: 1px solid #846418;
}
.products__lineup-contents__nav-cat-list-item a {
    padding: 5px 15px;
}
.products__lineup-contents__nav-sort {
    width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}
.products__lineup-contents__nav-sort:before {
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/icon_sort.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 19px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.products__lineup-contents__nav-sort-arrow {
    width: 12px;
    height: 7px;
}

.products__lineup-contents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media screen and (max-width: 1100px) {
.products__lineup-contents-grid {
    gap: 20px;
}
}
@media screen and (max-width: 960px) {
.products__lineup-contents-grid {
    grid-template-columns: 1fr;
}
}
.products__lineup-contents-grid-item__card {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #FDFDFC;
    padding: 40px;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 960px) {
    .products__lineup-contents-grid-item__card {
        padding: 20px;
    }
}
.products__lineup-contents-grid-item__card::after {
    content: '';
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/slide_triangle.svg);
    width: 22px;
    height: 22px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card::after {
    width: 15px;
}
}
.products__lineup-contents-grid-item__card:hover::after {
    transform: translate(5px, 5px);
}
.products__lineup-contents-grid-item__card--text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: auto;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card--text {
    font-size: 10px;
    position: absolute;
    top: 20px;
    left: 10px;
    letter-spacing: 0px;
}
}
.products__lineup-contents-grid-item__card--img {
    display: flex;
    align-items: center;
    width: 100px;
    max-height: 320px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card--img {
    margin: 0 0 0 13%;
    height: auto;
}
}
.products__lineup-contents-grid-item__card--img img {
    margin: 0 auto;
}
.products__lineup-contents-grid-item__card:hover .products__lineup-contents-grid-item__card--img {
    transform: scale(1.1);
}
.products__lineup-contents-grid-item__card--detail {
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: center;
}
.products__lineup-contents-grid-item__card-award {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
.products__lineup-contents-grid-item__card-award {
    font-size: 14px;
}
}
.products__lineup-contents-grid-item__card-award span {
    font-size: 14px;
}
@media screen and (max-width: 1200px) {
.products__lineup-contents-grid-item__card-award span {
    font-size: 10px;
}
}
.products__lineup-contents-grid-item__card-award img {
    width: 48px;
}
@media screen and (max-width: 1200px) {
.products__lineup-contents-grid-item__card-award img {
    width: 33px;
}
}
.products__lineup-contents-grid-item__card-title {
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card-title {
    margin-bottom: 20px;
}
}
.products__lineup-contents-grid-item__card-name {
    font-size: 33px;
    margin-bottom: 10px;
    color: #846418;
    overflow-wrap: normal;
    word-break: normal;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card-name {
    font-size: 24px;
}
}
.products__lineup-contents-grid-item__card-name--sub {
    font-size: 13px;
    color: #9B9789;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card-name--sub {
    font-size: 10px;
}
}
.products__lineup-contents-grid-item__card-price {
    font-size: 26px;
    color: #33312C;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card-price {
    font-size: 22px;
}
}
.products__lineup-contents-grid-item__card-price--small {
    font-size: 12px;
    margin-left: 5px;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card-price--small {
    font-size: 10px;
}
}
.products__lineup-contents-grid-item__card-detail {
    font-size: 11px;
    border-left: 3px solid #846418;
    padding-left: 3px;
}
@media screen and (max-width: 768px) {
.products__lineup-contents-grid-item__card-detail {
    font-size: 10px;
}
}
.products__lineup-contents-grid-item__card-detail--border {
    border-left: 1px solid #846418;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    line-height: 1.75;
}
.products__lineup-contents-grid-item__card-detail-text--flex {
    display: flex;
}
@media screen and (max-width: 768px) {
    .products__lineup-contents-grid-item__card-detail-text--th {
        min-width: 50px;
    }
}
/* 非表示にするためのクラス */
.is-hidden {
    display: none !important;
}

/* 表示時のアニメーション（任意） */
.products__lineup-contents-grid-item {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ギフトラッピング */
#wrapping {
    background-color: #F6F4F0;
}
.wrapping__contents--wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    padding: 120px 0 200px;
}
@media screen and (max-width: 768px) {
.wrapping__contents--wrapper {
    padding: 80px 0 80px;
}
}
.wrapping__contents-inner {
    padding: 0 20px;
}
@media screen and (max-width: 960px) {
.wrapping__contents-inner {
    padding: 0;
}
}
.wrapping__contents-h2 {
    display: flex;
    justify-content: space-between;
    background-color: #4D0000;
    color: #FDFDFC;
    padding: 10px 20px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.wrapping__contents-h2 {
    flex-direction: column;
    gap: 7px;
}
}
.wrapping__contents-h2 h2 {
    font-size: 24px;
}
@media screen and (max-width: 768px) {
.wrapping__contents-h2 h2 {
    font-size: 14px;
}
}
.wrapping__contents-price {
    font-size: 24px;
}
@media screen and (max-width: 768px) {
.wrapping__contents-price {
    font-size: 14px;
}
}
.wrapping__contents-price span {
    font-size: 18px;
}
@media screen and (max-width: 768px) {
.wrapping__contents-price span {
    font-size: 10px;
}
}
.wrapping__gift-img img {
    width: 235px;
    margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
.wrapping__gift-img img {
    width: 50%;
    margin: 0 auto 30px;
}
}
.wrapping__name {
    font-size: 18px;
    color: #846418;
    text-align: center;
    line-height: 1.75;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.wrapping__name {
    font-size: 14px;
    margin-bottom: 30px;
}
}
.wrapping__text {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.wrapping__text {
    font-size: 14px;
}
}
.wrapping__text span {
    color: #c40000;
}
.wrapping__note {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.wrapping__note {
    font-size: 14px;
}
}
.wrapping__img {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
.wrapping__img {
    gap: 40px;
}
}
.wrapping__img--flex {
    display: flex;
    justify-content: center;
    column-gap: 100px;
}
@media screen and (max-width: 960px) {
.wrapping__img--flex {
    column-gap: 40px;
}
}
@media screen and (max-width: 600px) {
.wrapping__img--flex {
    flex-wrap: wrap;
    row-gap: 20px;
}
}
.wrapping__card {
    font-size: 15px;
    text-align: center;
    color: #846418;
    letter-spacing: 1px;
}
@media screen and (max-width: 600px) {
.wrapping__card {
    width: 35%;
}
}
@media screen and (max-width: 600px) {
.wrapping__card.wrapping__card--message {
    width: 100%;
}
}
.wrapping__card img {
    width: 118px;
    margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
.wrapping__card img {
    width: 100%;
}
}
.wrapping__img--grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    max-width: 840px;
    margin: 0 auto 40px;
    gap: 40px;
}
@media screen and (max-width: 768px) {
.wrapping__img--grid {
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
}
.wrapping__card--message img {
    width: 180px;
    margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
.wrapping__card--message img {
    width: 100%;
}
}
.wrapping__card--message {
    line-height: 1.5;
}
.wrapping__card--message span {
    font-size: 15px;
}
@media screen and (max-width: 768px) {
.wrapping__card--message span {
    font-size: 14px;
}
}
.wrapping__bag {
    display: flex;
    margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
.wrapping__bag {
    flex-direction: column;
    gap: 40px;
}
}
.wrapping__bag-detail {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 1200px) {
.wrapping__bag-detail {
    justify-content: center;
}
}
@media screen and (max-width: 768px) {
.wrapping__bag-detail {
    flex-direction: column;
    gap: 10px;
}
}
.wrapping__bag-detail img {
    width: 165px;
}
.wrapping__bag-detail p {
    font-size: 18px;
    color: #846418;
    line-height: 2;
    white-space: nowrap;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.wrapping__bag-detail p {
    font-size: 15px;
}
}
.wrapping__bag-detail p span {
    font-size: 12px;
}
.wrapping__grid-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media screen and (max-width: 960px) {
.wrapping__grid-items {
    gap: 20px;
}
}
@media screen and (max-width: 768px) {
.wrapping__grid-items {
    grid-template-columns: 1fr;
}
}
.wrapping__grid-item {
    background-color: #FDFDFC;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
@media screen and (max-width: 960px) {
.wrapping__grid-item {
    padding: 15px;
}
}
@media screen and (max-width: 768px) {
.wrapping__grid-item {
    gap: 10px;
}
}
.wrapping__grid-item-top {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-top {
    gap: 10px;
    margin-bottom: initial;
}
}
.wrapping__grid-item-top picture {
    width: 20%;
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-top picture {
    width: 18%;
}
}
.wrapping__grid-item-top--gift img {
    width: 20%;
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-top--gift img {
    width: 18%;
}
}
.wrapping__grid-item-top.wrapping__grid-item-top--bag img {
    width: auto;
    height: 140px;
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-top.wrapping__grid-item-top--bag img {
    height: 70px;
}
}
.wrapping__grid-item-top-text--name {
    font-size: 22px;
    color: #846418;
    margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-top-text--name {
    font-size: 16px;
}
}
.wrapping__grid-item-top-text--price {
    font-size: 26px;
    margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-top-text--price {
    font-size: 16px;
}
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-top-text--price {
    margin-bottom: 10px;
}
}
.wrapping__grid-item-top-text--price.mb-10 {
    margin-bottom: 10px;
}
.wrapping__grid-item-top-text--price span {
    font-size: 12px;
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-top-text--price span {
    font-size: 10px;
}
}
.wrapping__grid-item-top-text--note {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 1px;
}
.wrapping__grid-item-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-bottom {
    gap: 10px;
}
}
.wrapping__grid-item-bottom--num {
    font-size: 12px;
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-bottom--num {
    font-size: 10px;
    min-width: 121px;
}
}
.wrapping__grid-item-bottom--num input {
    width: 100px;
    height: 60px;
    border: 1px solid #CFCDC9;
    margin-left: 5px;
    padding: 15px;
}
@media screen and (max-width: 1200px) {
.wrapping__grid-item-bottom--num input {
    width: 80px;
}
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-bottom--num input {
    height: 40px;
}
}
.wrapping__grid-item-bottom--button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4D0000;
    color: #FDFDFC;
    width: 280px;
    gap: 10px;
    font-size: 17px;
    padding: 20px 0;
}
@media screen and (max-width: 1200px) {
.wrapping__grid-item-bottom--button {
    width: 220px;
}
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-bottom--button {
    font-size: 12px;
    padding: initial;
    width: 184px;
    height: 40px;
}
}
@media screen and (max-width: 768px) {
.wrapping__grid-item-bottom--button {
    width: 100%;
}
}
.wrapping__grid-item-bottom--button img {
    width: 22px;
}
@media screen and (max-width: 960px) {
.wrapping__grid-item-bottom--button img {
    width: 16px;
}
}

/* ショップガイド */
#shopGuide {
    background-color: #F6F4F0;
}
.guide__ankerArea {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 120px;
    margin-bottom: 150px;
}
@media screen and (max-width: 960px) {
.guide__ankerArea {
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 80px;
}
}
@media screen and (max-width: 768px) {
.guide__ankerArea {
    gap: 15px;
    margin-bottom: 80px;
}
}
.guide__ankerArea--flex {
    display: flex;
    justify-content: center;
    gap: 40px;
}
@media screen and (max-width: 960px) {
.guide__ankerArea--flex {
    gap: 20px;
}
}
@media screen and (max-width: 768px) {
.guide__ankerArea--flex {
    flex-direction: column;
    gap: 15px;
}
}
.guide__ankerArea-item {
    background-color: #4D0000;
    color: #FDFDFC;
    min-width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    font-size: 22px;
    position: relative;
    line-height: 1.5;
}
@media screen and (max-width: 1200px) {
.guide__ankerArea-item {
    min-width: 150px;
    height: 150px;
    font-size: 16px;
    gap: 15px;
}
}
@media screen and (max-width: 960px) {
.guide__ankerArea-item {
    min-width: 120px;
    height: 120px;
    font-size: 14px;
}
}
@media screen and (max-width: 768px) {
.guide__ankerArea-item {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    height: 50px;
    gap: 15px;
    padding-left: 20px;
}
}
.guide__ankerArea-item::after {
    content: '';
    display: inline-block;
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/triangle_white.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
@media screen and (max-width: 768px) {
.guide__ankerArea-item::after {
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
}
.guide__ankerArea-item p {
    text-align: center;
}
@media screen and (max-width: 768px) {
.guide__ankerArea-item p {
    order: 2;
}
}
@media screen and (max-width: 1200px) {
.guide__ankerArea-item img {
    width: 30%;
}
}
@media screen and (max-width: 768px) {
.guide__ankerArea-item img {
    order: 1;
    width: 20px;
}
}
.guide__contents {
    padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
.guide__contents {
    padding-bottom: 80px;
}
}
.guide__contents-h2 {
    text-align: center;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.guide__contents-h2 {
    margin-bottom: 30px;
}
}
.guide__contents-h2 h2 {
    font-size: 48px;
}
@media screen and (max-width: 768px) {
.guide__contents-h2 h2 {
    font-size: 32px;
}
}
.guide__contents-h2--sub {
    font-size: 19px;
    color: #846418;
    margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
.guide__contents-h2--sub {
    font-size: 15px;
    margin-bottom: 10px;
}
}
.guide__contents--column {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
.guide__contents--column {
    gap: 40px;
    margin-bottom: 50px;
}
}
.guide__contents-item {
    display: flex;
    align-items: center;
    gap: 60px;
}
@media screen and (max-width: 768px) {
.guide__contents-item {
    flex-direction: column;
    gap: 30px;
}
}
.guide__contents-img {
    max-width: 580px;
    width: 40%;
}
@media screen and (max-width: 768px) {
.guide__contents-img {
    max-width: 100%;
    width: 100%;
}
}
.guide__contents-textArea {
    width: 60%;
}
@media screen and (max-width: 768px) {
.guide__contents-textArea {
    width: 100%;
}
}
.guide__contents-textArea-ttl {
    font-size: 30px;
    color: #846418;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.guide__contents-textArea-ttl {
    font-size: 22px;
    margin-bottom: 15px;
}
}
.guide__contents-textArea-text {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.guide__contents-textArea-text {
    font-size: 14px;
}
}
.guide__new-button {
    position: relative;
    width: 535px;
    height: 65px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #846418;
    font-size: 17px;
    color: #FDFDFC;
    line-height: 1;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.guide__new-button {
    width: 100%;
    height: 50px;
    font-size: 15px;
}
}
.guide__new-button::after {
    content: '';
    display: inline-block;
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/arrow_right_white.svg);
    background-size: 100%;
    width: 12px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.guide__mypage-linkArea {
    margin-bottom: 60px;
}
.guide__mypage-linkArea p {
    font-size: 15px;
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 768px) {
.guide__mypage-linkArea p {
    font-size: 14px;
    text-align: left;
}
}
.guide__mypage-linkArea--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 0 60px;
}
@media screen and (max-width: 960px) {
.guide__mypage-linkArea--flex {
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0 40px;
}
}
.guide__mypage-linkArea-item {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4D0000;
    font-size: 17px;
    color: #FDFDFC;
    height: 60px;
    position: relative;
    line-height: 1;
}
@media screen and (max-width: 1200px) {
.guide__mypage-linkArea-item {
    font-size: 14px;
}
}
@media screen and (max-width: 960px) {
.guide__mypage-linkArea-item {
    width: 100%;
}
}
@media screen and (max-width: 768px) {
.guide__mypage-linkArea-item {
    width: 100%;
    justify-content: flex-start;
    height: 50px;
    padding-left: 20px;
}
}
.guide__mypage-linkArea-item::after {
    content: '';
    display: inline-block;
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/triangle_white.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
@media screen and (max-width: 768px) {
    .guide__mypage-linkArea-item::after {
        width: 10px;
        height: 10px;
        position: absolute;
        bottom: 5px;
        right: 5px;
    }
}
@media screen and (max-width: 768px) {
.guide__mypage-linkArea-item img {
width: 20px;
}
}

.guide__contents-detail--column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
@media screen and (max-width: 768px) {
.guide__contents-detail--column {
    gap: 40px;
}
}
.guide__contents-detail h3 {
    font-size: 30px;
    color: #846418;
    border-bottom: 1px solid #846418;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.guide__contents-detail h3 {
    font-size: 22px;
}
}
.guide__contents-detail img {
    padding-top: 10px;
}
@media screen and (max-width: 768px) {
.guide__contents-detail img {
    padding-top: initial;
}
}
.guide__contents-detail-company {
    width: 65%;
}
@media screen and (max-width: 768px) {
.guide__contents-detail-company {
    width: 100%;
    margin: 15px 0;
}
}
.guide__contents-detail-list {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.guide__contents-detail-list {
    font-size: 14px;
}
}
.guide__contents-detail-list li {
    padding-left: 20px;
    position: relative;
}
.guide__contents-detail-list li:before {
    content: '・';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.guide__contents-detail p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.guide__contents-detail p {
    font-size: 14px;
    line-height: 2;
}
}
.guide__contents-detail p .guide__contents-detail-text--red {
    color: #d03d3c;
}
.guide__contents-detail p.guide__contents-detail-text--bold {
    font-weight: 600;
}
.guide__contents-detail-clock {
    width: 60%;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.guide__contents-detail-clock {
    width: 100%;
    margin: 40px 0;
}
}
.guide__contents-detail--payWrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ベースのデザイン */
.guide__contents-faq {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* 質問部分（ヘッダー） */
.guide__contents-faq-item--q {
    background-color: #4a0000; 
    color: #fff;
    padding: 25px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
    letter-spacing: 2px;
}
@media screen and (max-width: 960px) {
.guide__contents-faq-item--q {
    padding: 15px 10px;
    font-size: 15px;
}
}
.guide__contents-faq-item-ttl {
    position: relative;
    padding-left: 40px;
}
@media screen and (max-width: 960px) {
.guide__contents-faq-item-ttl {
    padding-left: 25px;
}
}
.guide__contents-faq-item-ttl:before {
    font-family: cormorant, sans-serif;
    content: 'Q';
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 30px;
}
@media screen and (max-width: 960px) {
.guide__contents-faq-item-ttl:before {
    top: -3px;
    font-size: 20px;
}
}
/* プラス・マイナスアイコンの作成 */
.guide__contents-faq-item--q .icon {
    position: relative;
    width: 16px;
    height: 16px;
}
.guide__contents-faq-item--q .icon::before, .guide__contents-faq-item--q .icon::after {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
/* 横棒 */
.guide__contents-faq-item--q .icon::before {
    width: 100%;
    height: 2px;
}
/* 縦棒（プラスの時だけ表示） */
.guide__contents-faq-item--q .icon::after {
    width: 2px;
    height: 100%;
}

/* 開いている時のアイコン（マイナスにする） */
.guide__contents-faq-item.is-open .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* 回答部分のアニメーション設定 */
.guide__contents-faq-item--a {
    display: grid;
    grid-template-rows: 0fr; /* 初期状態は高さ0 */
    transition: grid-template-rows 0.3s ease;
    background-color: #fff;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.75;
}

.guide__contents-faq-item.is-open .guide__contents-faq-item--a {
    grid-template-rows: 1fr; /* 開いた状態 */
}

.guide__contents-faq-item--a .guide__contents-faq-item-text {
    min-height: 0;
    padding: 0 20px;
    transition: padding 0.3s ease;
}

.guide__contents-faq-item.is-open .guide__contents-faq-item--a .guide__contents-faq-item-text {
    padding: 20px; /* 開いた時だけ余白を作る */
    letter-spacing: 2px;
}

/* 葡萄のめぐみ 定期購入について */
#subscription {
    background-color: #F6F4F0;
}
@media screen and (max-width: 768px) {
#subscription {
    padding-top: initial;
}
}
.subscription__title--bg {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/subscription/fv_bg.jpg);
    height: 445px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
@media screen and (max-width: 768px) {
.subscription__title--bg {
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/subscription/fv_bg_sp.jpg);
    height: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding-top: 39%;
    position: relative;
}
}
.subscription__title--flex {
    display: flex;
    align-items: center;
    height: 100%;
}
.subscription__title {
    font-size: 68px;
    color: #FDFDFC;
    line-height: 1.5;
    padding-left: 100px;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.subscription__title {
    font-size: 28px;
    padding-left: initial;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
}
.subscription__title--sub {
    font-size: 45px;
}
@media screen and (max-width: 768px) {
.subscription__title--sub {
    font-size: 19px;
}
}
.subscription__contents {
    padding-bottom: 200px;
}
@media screen and (max-width: 1200px) {
.subscription__contents {
    padding: 0 0 80px;
}
}
.subscription__contents h2 {
    font-size: 41px;
    text-align: center;
    margin: 120px 0 80px;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
.subscription__contents h2 {
    font-size: 26px;
    margin: 50px 0 35px;
}
}
.subscription__contents h2 span {
    font-size: 66px;
    color: #846418;
}
@media screen and (max-width: 768px) {
.subscription__contents h2 span {
    font-size: 40px;
}
}
.subscription__items {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
.subscription__items {
    gap: 30px;
    margin-bottom: 40px;
}
}
.subscription__item {
    background-color: #fff;
    padding: 60px 100px;
    position: relative;
}
@media screen and (max-width: 768px) {
.subscription__item {
    padding: 40px;
}
}
@media screen and (max-width: 500px) {
.subscription__item {
    padding: 20px;
}
}
.subscription__item-num {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 95px;
    letter-spacing: 1px;
}
.subscription__item-num:before {
    display: inline-block;
    content: '';
    background-color:  #33312C;
    height: 1px;
    width: 80px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
.subscription__item-num {
    font-size: 15px;
    margin-bottom: 10px;
}
}
.subscription__item-h3 {
    font-size: 40px;
    color: #846418;
    margin-bottom: 50px;
    line-height: 1.75;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.subscription__item-h3 {
    font-size: 23px;
    margin-bottom: 20px;
}
}
.subscription__item-textArea {
    width: 70%;
}
@media screen and (max-width: 768px) {
.subscription__item-textArea {
    width: 100%;
}
}
.subscription__item-text {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.subscription__item-text {
    font-size: 14px;
}
}
.subscription__item-text.mb-30 {
    margin-bottom: 30px;
}
.subscription__item-list {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
}
.subscription__item-list-ttl {
    font-size: 15px;
}
.subscription__item-list li {
    padding-left: 20px;
    position: relative;
    color: #C74040;
}
.subscription__item-list li:before {
    content: '・';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.subscription__item-img {
    position: absolute;
    bottom: 10%;
    right: 6%;
}
@media screen and (max-width: 768px) {
.subscription__item-img {
    position: static;
    margin: 0 auto 30px;
}
}
@media screen and (max-width: 500px) {
.subscription__item-img {
    width: 45%;
}
}
.subscription__button {
    width: 500px;
    height: 65px;
    background-color: #4a0000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    color: #FDFDFC;
    margin: 0 auto;
    position: relative;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.subscription__button {
    width: 100%;
    height: 50px;
    gap: 10px;
    font-size: 15px;
    position: relative;
}
}
.subscription__button:after {
    content: '';
    display: inline-block;
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/arrow_right_white.svg);
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.product__image-thumbnails-ttl {
    font-size: 28px;
    border-left: 4px solid #846418;
    padding-left: 10px;
}
.item__detail--table {
    border-top: 1px solid #CFCDC9;
    margin-top: 40px;
}
.item__detail--row {
    padding: 0 0 20px;
    border-bottom: 1px solid #CFCDC9;
    display: flex;
}
.item__detail--head {
    font-size: 14px;
    width: 35%;
}
.item__detail--body {
    font-size: 13px;
    width: 65%;
}
.product__quantity--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.products__favorite-button {
    border: none;
    background-color: transparent;
    width: auto;
    height: auto;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 20px 5px;
    text-align: left;
}
.products__favorite-icon {
    margin-right: 5px;
}
.product__nav-text--wrap {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product__nav-text {
    font-size: 13px;
    color: #33312C;
    position: relative;
    display: block;
    padding-left: 10px;
    text-decoration: underline;
}
.product__nav-text:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left: 9px solid #000;
    border-right-width: 0;
}
.products__wrapping-detail {
    padding-top: 60px;
}
.products__wrapping-detail-open {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    background-color: #FDFDFC;
    padding: 10px;
    margin-bottom: 20px;
    border-top: 1px solid #33312C;
    cursor: pointer;
}
.products__wrapping-detail-blc {
    display: none;
}

/* クラスが付与されたら表示する */
.products__wrapping-detail-blc.is-open {
    display: block;
}

/* （参考）クリック時に矢印を回転させる場合 */
.products__wrapping-detail-open.is-active img {
    transform: rotate(180deg);
    transition: transform 0.3s;
}
.products__wrapping-detail-topText {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.products__wrapping-detail-group {
    margin-bottom: 20px;
}
.products__wrapping-detail-group:last-of-type {
    margin-bottom: initial;
}
.products__wrapping-detail-group--inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.products__wrapping-detail-group-ttl {
    font-size: 14px;
    color: #FDFDFC;
    background-color: #846418;
    padding: 10px;
    margin-bottom: 20px;
}
.products__wrapping-detail-group-item-ttl {
    font-size: 15px;
    border-left: 2px solid #846418;
    padding-left: 10px;
    margin-bottom: 20px;
}
.products__wrapping-detail-group-item-img {
    width: 230px;
    margin-bottom: 20px;
}
.products__wrapping-detail-group-item-text--blc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.products__wrapping-detail-group-item-text {
    font-size: 12px;
}
.products__wrapping-detail-group-item-text a {
    text-decoration: underline;
}
.products__wrapping-detail-group-item--flexBlc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.products__wrapping-detail-group-item--flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
.products__wrapping-detail-group-item-img--wrap {
    width: 60px;
    margin-bottom: initial;
}
.products__wrapping-detail-group-item-img--message {
    width: 110px;
}
.products__wrapping-detail-group-item-img--shopping {
    width: 130px;
}
.products__wrapping-detail-group--flex {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.products__wrapping-detail-group-item-img--label {
    margin-bottom: 10px;
}
.products__wrapping-detail-link {
    width: 100%;
    height: 45px;
    position: relative;
    border: 1px solid #33312C;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.products__wrapping-detail-link:after {
    content: '';
    display: inline-block;
    background-image: url(/user_data/packages/EC_2026_pc/assets/img/arrow_right.svg);
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.js-picture-container {
    height: auto!important;
}