/* カスタマイズ用CSS */
/*==================================
 0 - common
==================================*/
/*フォント変更*/
html,body{ font-family: 'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN','BIZ UDMincho','MS PMincho',serif; }
.other_page .ec-contactRole,
.other_page .ec-role,
.mypage .ec-role,
#page_forgot .ec-layoutRole__main,
.cart_page .ec-cartRole,
.registration_page .ec-registerRole {
  padding-bottom: 5.5em;
}
#page_forgot .ec-role {
  padding-bottom: 0;
}
/*==================================
 1 - header
==================================*/
/* ロゴ */
.ec-layoutRole__header .ec-headerTitle img {
    width: 30%;
}
/* カスタマイズヘッダー - 3col */
.ec-headerNaviRole.ec-headerNavIcon .ec-headerNaviRole__left,
.ec-headerNaviRole.ec-headerNavIcon .ec-headerNaviRole__right {
    width: 45%;
}
.ec-headerNaviRole.ec-headerNavIcon .ec-headerNaviRole__center {
    min-width: 20%;
}
/* カスタマイズヘッダー - padding 0 */
.ec-headerNaviRole.ec-headerNavIcon .ec-headerNaviRole__center .ec-headerRole {
    padding: 0;
}
/* カスタマイズヘッダー - ロゴの大きさ */
.ec-headerNaviRole.ec-headerNavIcon .ec-headerNaviRole__center .ec-headerRole .ec-headerTitle img {
    width: 200px;
}
/* カスタマイズヘッダー - ロゴのaタグ */
.ec-headerNaviRole.ec-headerNavIcon .ec-headerNaviRole__center .ec-headerRole a {
    margin: 0;
}
/* ヘッダーを上部に固定 */
.ec-layoutRole__header {
    width: 100%;
    position: fixed;
    background: #fff;
    border-bottom: 1px solid #F8F8F8;
    transition: 0.3s ease-in-out;
    z-index: 100;
    box-sizing: border-box;
}
.ec-layoutRole__header.fixed {
    position: fixed;
    top: 0;
}
.ec-layoutRole__header.hide {
    transform: translateY(-100%);
}

/* 検索 */
/* .ec-headerSearch.hide .ec-headerSearch__category {
    display: none;
}
.ec-headerSearch.hide .ec-headerSearch__keyword input[type=search] {
    display: none;
} */
.ec-headerSearch.hide .ec-headerSearch__iconBtn {
    border: 0;
    background: none;
    position: relative;
    right: 0;
    top: 0;
    transform: inherit;
    display: block;
    white-space: nowrap;
    z-index: 1;
}
/* .ec-headerSearch.open .ec-headerSearch__keywordBtn {
    border: 0;
    background: none;
    position: relative;
    right: 0;
    top: 0;
    transform: inherit;
    display: block;
    white-space: nowrap;
    z-index: 1;
} */
/* .ec-headerSearch.open .ec-headerSearch__iconBtn,
.ec-headerSearch.hide .ec-headerSearch__keywordBtn {
    display: none;
} */
.ec-headerSearch.hide .ec-headerSearch__category,
.ec-headerSearch.hide input {
    /*display: none;*/
}
.ec-input {
    /*height: 34px;*/
    /*font-size: 16px;*/
    /*border: 0 none;*/
    /*padding: 0.5em 50px 0.5em 1em;*/
    /*box-shadow: none;*/
    /*background: none;*/
    /*box-sizing: border-box;*/
    /*margin-bottom: 0;*/
    /*display: flex;*/
    /*width: 34px;*/
    /*color: var(--bs-body-color);*/
    /*background-color: var(--bs-body-bg);*/
    /*background-image: none;*/
    /*border: 1px solid #ccc;*/
    /*border-radius: var(--bs-border-radius);*/
    /*-webkit-appearance: none;*/
    /*transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;*/
    /*border-radius: 3px;*/
}

.ec-headerSearch__iconBtn img {
    /*width: 20px;*/
    /*height: 20px;*/
}

/* 検索フォーム (初期非表示で右に伸びる) */
.ec-headerSearch__form {
    /*display: none;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 300px; /* 伸びたときの幅 */
    /*transition: width 0.3s ease;*/
    /*background-color: #fff;*/
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    /*border-radius: 4px;*/
    /*z-index: 1000;*/
    /*overflow: hidden;*/
}

/* オーバーレイ背景 */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000;
}


/* =========================================
 * header search modal
 * ヘッダー検索モーダルのレイアウト
 * ======================================= */
/* 検索アイコンボタン（トリガー） */
.ec-headerSearch__iconBtn--trigger {
    /* 既存デザインに合わせて必要なら調整 */
    cursor: pointer; /* マウスカーソルをポインタに */
}
.ec-headerSearch__iconBtn--trigger:hover {
    opacity: 0.6;
}

/* 黒のオーバーレイ */
.ec-headerSearch__modalOver {
    /* 初期状態は display:none（inlineスタイル） */
    position: fixed;              /* 画面全体にかぶせる */
    inset: 0;                     /* top:0; right:0; bottom:0; left:0 の省略 */
    background: rgba(0, 0, 0, .45); /* 半透明の黒 */
    z-index: 900;                 /* ヘッダーより上、モーダルより下になるよう調整 */
}

/* モーダル本体 */
.ec-headerSearch__modal {
    /* 初期状態は display:none（inlineスタイル） */
    position: absolute;           /* ヘッダーの下にドロップダウンするイメージ */
    left: 50%;
    top: 100%;                    /* .ec-headerSearch の下端から表示 */
    transform: translateX(-50%);  /* 中央揃え */
    margin-top: 16px;             /* ヘッダーとの隙間 */
    width: calc(100vw - 40px);    /* 画面幅に応じた最大幅（左右余白20px） */
    max-width: 960px;             /* PCでの最大幅 */
    background: #fff;             /* 白いパネル */
    border-radius: 4px;           /* 角丸 */
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15); /* 影 */
    padding: 24px 32px;           /* 内側余白 */
    z-index: 901;                 /* オーバーレイより上 */
}

/* スマホ時は幅をいっぱいに広げる */
@media (max-width: 767px) {
    .ec-headerSearch__modal {
        left: 0;
        right: 0;
        transform: none;
        margin: 0;
        border-radius: 0;
        width: 100%;
        max-width: none;
        top: 100%;         /* ヘッダー直下からフル幅で表示 */
        padding: 16px 16px;
    }
}

/* モーダル内レイアウトのベース */
.ec-headerSearch__inner {
    display: flex;
    flex-direction: column; /* 縦配置（上:キーワード、下:カテゴリなど） */
    gap: 16px;              /* 各ブロックの余白 */
}

/* キーワード入力行（横並び） */
.ec-headerSearch__keywordField {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 999px;   /* 丸みの強いテキストボックス */
    padding: 0 8px 0 16px;
    background: #f8f8f8;
}

/* テキスト入力（form.name） */
.ec-headerSearch__keywordField .search-name {
    flex: 1 1 auto;         /* 横幅いっぱいに広がる */
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 10px 8px;
    outline: none;          /* フォーカス時のブラウザデフォルト枠を消す */
}

/* 検索ボタン（右側のアイコン） */
.ec-headerSearch__keywordBtn {
    border: none;
    background: #333;
    color: #fff;
    border-radius: 999px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ec-headerSearch__keywordBtn .material-symbols-outlined {
    font-size: 20px;
}

/* カテゴリ選択の行 */
.ec-headerSearch__category .ec-select_search {
    width: 100%;
}

/* 詳細検索リンクの行（右寄せ） */
.ec-headerSearch__linkRow {
    display: flex;
    justify-content: flex-end;
}

.ec-headerSearch__detailLink {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.ec-headerSearch__detailLink:hover {
    text-decoration: underline;
}
.ec-cartNavi:hover {
  opacity: 0.6;
}
.ec-cartNavi .ec-cartNavi__badge {
    position: absolute;
    background-color: #525263;
    top: -2px;
    left: 15px;
}

/*==================================
 2 - slider
==================================*/
/* スライダー - padding右左00 */
.ec-sliderRole {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
}

/*==================================
 3 - main
==================================*/
/* メインコンテンツ */
.ec-layoutRole .ec-layoutRole__contents {
    max-width: 100%;
}
.ec-secHeading {
    margin: 30px 0px 15px 0px;
}
.ec-roleWrap{
    width: 100%;
}

/*==================================
 3 - 1 - navi
==================================*/
/* ナビ */
.ec-itemNav__nav li {
    min-width: 110px;
    border-right: solid 1px #ccc;
}
.ec-itemNav__nav li:last-of-type {
border-right: none;
}
.ec-itemNav__nav li a {
    padding: 16px 30px;
}
/* ログインナビ */
.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item {
    display: flex;
    align-items: center;
}
.ec-drawerRole .ec-headerLinkArea .ec-headerLink__icon {
    line-height: 0;
}
.ec-cartNaviNull .ec-cartNaviNull__message {
    background-color: #999;
}
.ec-headerNav .ec-headerNav__item:hover {
  opacity: 0.6;
}
/*==================================
 3 - 2 - Product
==================================*/
/* ボタン */
.ec-inlineBtn--link {
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border-bottom:  1px solid #ccc;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 5px;
    text-decoration: none;
    color: #333333;
    background-color: transparent;
    font-size: 0.8em;
}
.ec-inlineBtn--link:hover {
    opacity: 0.8;
}

/*==================================
 3 - 00000 - news
==================================*/
/* ニュース枠 */
.ec-newsRole__news {
    border: solid 1px #333333;
    padding: 20px 30px;
}
/*==================================
 3 - 00000 - recipe
==================================*/
/* レシピ */
.ec-eyecatchRole {
    justify-content: center;
}
.ec-roleWrap.ec-roleRecipe .ec-role {
    padding: 80px 20px 80px 20px;
}
.ec-eyecatchRole .ec-eyecatchRole__intro {
    padding-right: 0;
    width: 35%;
}
.ec-eyecatchRole .ec-eyecatchRole__image {
    width: 60%;
}

/*==================================
 3 - 00000 - topic
==================================*/
/* トピック */
.ec-topicRole .ec-role {
    padding: 20px;
    background: #ffffff;
}
.ec-topicRole {
    background: #f8f8f8;
}
.ec-eyecatchRole,
.ec-eyecatchRole .ec-eyecatchRole__image {
    margin-bottom: 0;
}
.ec-topicRole__listItemTag {
    position: relative;
    display: inline-block;
    background-color: #bbbbbb;
    font-size: 12px;
    margin: 7px 0px 0px 0px;
    padding: 2px 0px 2px 0px;
    width: 90px;
    text-align: center;
    font-weight: bold;
}
.ec-topicRole__listItemTagRole {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.ec-topicRole__listItemDate {
  font-size: 90%;
  font-weight: bold;
}

/*==================================
 00000 - footer
==================================*/
/* フッター */
.ec-footerContact {
    position: relative;
    color: #ffffff;
    background-color:#222222;
    width: 100%; /* 横幅をいっぱいにする */
    background-size: cover; /* 画像を要素いっぱいに表示 */
    background-position: center; /* 画像を中央に表示 */
    padding: 50px 0px 70px 0px;
    font-weight: bold;
}
.ec-footerContact::before {
  content: ''; /* 疑似要素の表示 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.3); */
  z-index: 1; /* コンテンツより後ろに配置 */
}
.ec-footerContact * {
  position: relative;
  z-index: 2; /* オーバーレイより前にテキストを表示 */
}

.ec-footeContact .ec-footeContact__inner {
    text-align: center;
}
.ec-footerContact__title {
    padding: 0px 0px 20px 0px;
    text-align: center;
    margin: 0;
}
.ec-footerContact .ec-footerContact__inner {
    text-align: center;
}
.ec-footeContact__navi {
    display: flex;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ec-layoutRole__footer .ec-footerTitle {
    color : #333;
}

.ec-footer-col4 {
    background: #f8f8f8;
    padding: 5.0em 0 5.5em;
    margin: 2.0em auto 0;
}
/* フッター - メール */
.ec-footeContact__cont.ec-footeContact__cont01 {
}
/* フッター - 電話番号 */
.ec-footeContact__cont.ec-footeContact__cont02 {
}
.ec-footerContact .ec-footeContact__navi .ec-footeContact__cont02 a {
    color: inherit;
    font-size: 30px;
}
.ec-footeContact__cont {
    display: inline-flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ec-footerList {
    background: #fff;
}
.ec-footerList .ec-footerList__inner {
    text-align: center;
}
.ec-footerList__list {
    padding: 0;
    color: #333333;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ec-footerList .ec-footerList__link a {
    display: block;
    padding: 15px;
    font-size: 14px;
    color: inherit;
    font-weight: bold;
    text-decoration: none;
    color: #333333;
}
i.icon_circle {
    /* border: solid 2px #333333; */
    font-size: 26px;
    border-radius: 50%;
    padding: 7px;
}
/* 商品詳細 - カテゴリ */
.ec-productRole .ec-productRole__category {
    display: flex;
    gap: 25px;
    padding: 20px 20px;
    border-bottom: none;
}
.ec-productRole .ec-productRole__price {
    color: #333333;
}
.ec-blockBtn--action {
    background-color: #2f2f2f;
    border-color: #2f2f2f;
    color: #ffffff;
}
.ec-blockBtn--action:hover {
    background-color: #2f2f2fcc;
    border-color: #2f2f2fcc;
}
.ec-newItemRole .ec-newItemRole__listItem:not(:first-child) a,
a {
    color: #333333;
}
.ec-newItemRole .ec-newItemRole__listItem:not(:first-child) a:hover,
a:hover {
    color: #333333cc;
}

/*==================================
 00000 - ショッピングカート
==================================*/
.ec-progress .is-complete .ec-progress__number {
    color: #333333;
    background: #dddddd;
}
.ec-progress .is-complete .ec-progress__label {
    color: #333333;
}
.ec-cartRole .ec-cartRole__totalAmount {
    color: #333333;
}
/*==================================
 00000 - shop guide
==================================*/
/* =========================================
  Footer Features Styles
  - Grid 4→2→1
  - EC-CUBE風BEM命名
========================================= */

/* スペーシングと色（必要に応じて上位で上書き可） */
.ec-footer-features {
  --ff-gap: 24px;         /* カード間の余白 */
  --ff-pad: 16px;         /* カード内パディング */
  --ff-radius: 8px;       /* 角丸 */
  --ff-icon-size: 44px;   /* アイコン表示サイズ */
  --ff-title: #333;       /* タイトル色 */
  --ff-text: #666;        /* 説明文色 */
  --ff-more: #999;        /* 「詳細はこちら」色 */
  --ff-border: #eee;      /* カード境界 */
  --ff-hover: #f8f8f8;    /* ホバー背景 */
}

.ec-footer-features__inner {
  /* 必要なら最大幅などを付与（例） */
  margin-inline: auto;
}

.ec-footer-features__list {
  /* Gridの親：PCは4列 */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ff-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-footer-features__item {
  /* 個別の li は装飾不要だが将来拡張に備えて定義 */
}

/* カード全体をリンクにする */
.ec-featureCard {
  display: block;
  height: 100%;
  padding: var(--ff-pad);
  text-align: center;
  text-decoration: none;        /* a要素の下線を消す */
  transition: background-color .2s ease, box-shadow .2s ease, transform .02s ease-in;
  color: inherit;
}

.ec-featureCard:hover,
.ec-featureCard:focus-visible {
  background: var(--ff-hover);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  outline: 2px solid transparent; /* アウトラインの2重表示を防ぐ */
}

.ec-featureCard__icon {
  /* アイコン行：縦方向の余白を抑えてシンプルに */
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--ff-icon-size);
  display: flex;
}

.ec-featureCard__icon img {
  width: var(--ff-icon-size);
  height: var(--ff-icon-size);
  object-fit: contain; /* 画像が正方形でなくても崩さない */
  display: block;
}

.ec-featureCard__title {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ff-title);
  line-height: 1.4;
}

.ec-featureCard__desc {
  margin: 0 0 10px 0;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--ff-text);
}

.ec-featureCard__more {
  display: inline-block;
  font-size: .85rem;
  color: var(--ff-more);
  position: relative;
  padding-right: 14px;        /* 「>」用の余白 */
}
.ec-featureCard__more::after {
  /* 矢印（>）を border で描画：画像不要 */
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
/* トップへ戻るボタン */
.front_page .ec-blockTopBtn {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 10px;
    font-size: 18px;
    background-color: #99999995;
}
.ec-blockBtn--top {
   display: inline-flex;
  border: 1px solid #ffffff;
  background-color: transparent;
   padding-top: 15px;
   padding-bottom: 15px;
   justify-content: center;
   align-items: center;
}
.material-symbols-outlined {
  font-size: 28px;
    font-variation-settings:
        'FILL'0,
        'wght'200,
        'GRAD'0,
        'opsz'24
}
.ec-cartNavi > span {
  position: relative;
  line-height: 0;
}

/* 768–1024px: 2列（タブレット縦・横） */
@media (max-width: 1024px) and (min-width: 768px) {
  .ec-footer-features__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* <768px: 1列（モバイル） */
@media (max-width: 767.98px) {
  .ec-footer-features {
    --ff-gap: 16px;  /* 余白を少し詰める */
    --ff-pad: 14px;
  }
  .ec-footer-features__list {
    grid-template-columns: 1fr;
  }
}

/*==================================
 00 - 00000 - 商品一覧ページ
==================================*/
/*商品ナビ*/
.ec-itemNav__nav > li:hover > a {
    background: #ccc;
}
/* EC-CUBEのメディアクエリを打ち消し */
@media only screen and (min-width: 768px) {
    .ec-topicRole {
        padding: 60px 30px;
    }
    /* ニュース枠 */
    .ec-newsRole .ec-newsRole__news {
        border: solid 1px #333333;
    }
    .ec-layoutRole__footer .ec-footerTitle .ec-footerTitle__copyright {
        font-weight: bold;
    }
    .ec-layoutRole__footer .ec-footerTitle .ec-footerTitle__logo a {
        display: inline-block;
    }
    .ec-layoutRole__footer .ec-footerTitle .ec-footerTitle__logo a img {
        width: 200px;
        aspect-ratio: 95 / 56;
    }
    .ec-headerNaviRole .ec-headerNaviRole__search {
      margin-top:0;
    }
    /* カテゴリナビ */
    .ec-categoryNaviRole {
        margin-top: 40px;
        margin-bottom: 70px;
    }
    .ec-headerNavIcon .ec-headerNav .ec-headerNav__itemLink {
        display: none;
    }
    .ec-headerNaviRole.ec-headerNavIcon {
        padding-bottom: 15px;
    }
    /* 検索 */
    .ec-headerSearch .ec-headerSearch__keyword {
        display: flex;
        float: left;
        width: 34px;
        height: 34px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 50px;
        border-top-left-radius: 50px;
        justify-content: center;
        align-items: center;
    }
    .ec-cartNavi {
        padding: 0 0 0 5px;
        color: revert;
        height: auto;
        min-width: auto;
        background: transparent;
    }

    /*新着*/
    .ec-role.ec-role__customize .ec-newItemRole {
        padding: 130px 0;
    }
    .ec-role.ec-role__customize .ec-newItemRole .ec-newItemRole__listItem {
        width: 33.3333%;
    }
    .ec-role.ec-role__customize .ec-newItemRole .ec-newItemRole__listItem:last-of-type {
        margin-right: 0px;
    }

    /* フッター */
    .ec-footeContact .ec-footeContact__inner {
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        font-size: 16px;
        line-height: 1.4;
        color: #525263;
        -webkit-text-size-adjust: 100%;
        width: 100%;
        max-width: 1130px;
    }
    .ec-footeContact__cont {
        display: inline-flex;
        width: 50%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .ec-footeContact__navi {
        max-width: 1024px;
        flex-direction: row;
    }
    .ec-footeContact__cont.ec-footeContact__cont01 {
        border-right: solid 2px #333333;
    }
    .ec-footerList {
        padding-top: 80px;
    }
    .ec-footerList .ec-footerList__inner {
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        font-size: 16px;
        line-height: 1.4;
        color: #525263;
        -webkit-text-size-adjust: 100%;
        width: 100%;
        max-width: 1130px;
    }
    .ec-footerList .ec-footerList__link {
        display: block;
    }
    .ec-footerList .ec-footerList__link a {
        display: inline-block;
        border-bottom: none;
        margin: 0 10px;
        padding: 0;
    }
}
@media screen and (max-width: 1024px) {
    .ec-footer-features__inner {
      max-width: 768px;
      padding-left: 20px;
      padding-right: 20px;
    }
}
@media screen and (max-width: 768px) {
    .ec-footerList .ec-footerList__link a {
        display: inline-block;
        border-bottom: none;
        margin: 0 10px;
        padding: 0;
    }
  .ec-footerList {
      padding-top: 40px;
  }
  .ec-footerList__list {
      flex-direction: column;
      gap: 10px;
  }
    .ec-layoutRole__footer .ec-footerTitle .ec-footerTitle__logo a img {
        width: 200px;
        aspect-ratio: 95 / 56;
    }
    .ec-footeContact__navi {
        max-width: 480px;
    }
  .ec-footeContact__cont {
    width: 100%;
  }
    .ec-footer-features__inner {
      max-width: 480px;
    }
    .ec-headerNav .ec-headerNav__itemIcon {
        margin-right: 5px;
        margin-left: 5px; 
    }
    .ec-cartNavi {
        padding: 0 0 0 5px;
        color: revert;
        height: auto;
        min-width: auto;
        background: transparent;
    }
    /* トピック */
    .ec-topicRole {
        padding: 40px 20px;
    }
    /* フッター */
    .ec-footerContact {
        height: auto;
        padding-top: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /* フッター - メール */
    .ec-footeContact__cont.ec-footeContact__cont01 {
        order: 2;
        padding: 20px 0px 50px 0px;
    }
    /* フッター - 電話番号 */
    .ec-footeContact__cont.ec-footeContact__cont02 {
        order: 1;
        padding: 20px 0px 50px 0px;
        border-bottom:  solid 2px #333333;
    }
}
@media screen and (max-width: 480px) {
}

@media screen and (max-width: 320px) {
}











/* 共通設定 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.section {
  margin-bottom: 40px;
}

/* ① 画像+内容の2カラムセクション */
.section-2col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 画像ボックス：デフォルト50% */
.section-2col .img-box {
  flex: 0 0 50%;
}
/* 内容ボックス */
.section-2col .content-box {
  flex: 1;
  padding: 20px;
}
/* 画像と内容の順序を反転（オプション） */
.section-2col.img-left {
  flex-direction: row-reverse;
}
/* 画像と内容の順序を反転（オプション） */
.section-2col.img-right {
  flex-direction: row;
}
/* 画像ボックスの幅オプション */
.section-2col .img-box.img-width-33 {
  flex: 0 0 33.3333%;
}
.section-2col .img-box.img-width-50 {
  flex: 0 0 50%;
}
/* モバイル：縦並び */
@media (max-width: 768px) {
  .section-2col {
    flex-direction: column;
  }
  .section-2col .img-box,
  .section-2col .content-box {
    width: 100%;
  }
}

/* ② 画像の上に内容を表示するセクション */
.section-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #333;
}
.section-overlay .overlay-content {
  position: relative;
  z-index: 2;
  /* デフォルトはテキスト右寄せ */
  text-align: left;
}
/* テキスト左寄せ（オプション） */
.section-overlay.text-left .overlay-content {
  text-align: left;
}
/* オーバーレイ（オプション） */
.section-overlay.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}
/* テキストの後ろにシェイプ（オプション） */
.section-overlay.shape::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 0;
}
/* テキストにドロップシャドウ（オプション） */
.section-overlay.drop-shadow .overlay-content {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ③ 背景色もしくは枠線で囲われたセクション */
.section-box {
  padding: 20px;
}
/* 枠線（オプション、デフォルトはなし） */
.section-box.border {
  border: 2px solid #333333; /* ※必要に応じて他の枠線色（#c2c2c2, #666666）も用意可能 */
}
/* 背景色オプションクラス */
.section-box.bg-ccc1a3 { background-color: #ccc1a3; }
.section-box.bg-f6f6f6 { background-color: #f6f6f6; }
.section-box.bg-f0f0f0 { background-color: #f0f0f0; }
.section-box.bg-666666 { background-color: #666666; color: #fff; }

/* ④ 見出し+内容の2カラムセクション */
.section-heading-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-heading-content .heading {
  flex: 0 0 33.3333%; /* デフォルトは33.3333% */
  padding: 20px;
  text-align: left; /* デフォルトは左寄せ */
}
.section-heading-content .content {
  flex: 1;
  padding: 20px;
}
/* 見出しを右側に配置（オプション） */
.section-heading-content.heading-right {
  flex-direction: row-reverse;
}
/* 見出しの幅オプション */
.section-heading-content .heading.width-50 {
  flex: 0 0 50%;
}
/* モバイル：縦並び */
@media (max-width: 768px) {
  .section-heading-content {
    flex-direction: column;
  }
  .section-heading-content .heading,
  .section-heading-content .content {
    width: 100%;
  }
}

/* ⑤ 2～4カラムの内容ボックス */
.section-multi-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-multi-column .box {
  flex: 1 1 calc(33.3333% - 20px); /* デフォルトは3カラム */
  padding: 20px;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  text-align: center;
}
/* オプション：2カラム */
.section-multi-column.cols-2 .box {
  flex: 1 1 calc(50% - 20px);
}
/* オプション：4カラム */
.section-multi-column.cols-4 .box {
  flex: 1 1 calc(25% - 20px);
}
/* モバイル：縦並び */
@media (max-width: 768px) {
  .section-multi-column .box {
    flex: 1 1 100%;
  }
}

/* ⑥ 背景色や枠線がある見出し */
.heading-styled {
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
}
/* 背景色オプション */
.heading-styled.bg-ccc1a3 { background-color: #ccc1a3; }
.heading-styled.bg-f6f6f6 { background-color: #f6f6f6; }
.heading-styled.bg-f0f0f0 { background-color: #f0f0f0; }
.heading-styled.bg-666666 { background-color: #666666; color: #fff; }
/* 枠線オプション */
.heading-styled.border-333333 { border: 2px solid #333333; }
.heading-styled.border-c2c2c2 { border: 2px solid #c2c2c2; }
.heading-styled.border-666666 { border: 2px solid #666666; }

.product_description {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 横スクロールを防ぎ、セル内で折り返す */
}
.product_description th,
.product_description td {
  border: 1px solid #d8d8d9;
  padding: 0.75rem;
  word-wrap: break-word; /* 折り返し設定 */
}
.product_description th {
    width: 20%;
  background-color: #f6f6f6; /* 必要に応じて変更 */
  font-weight: bold;
    vertical-align: top;
}

/*タブ全体のスタイル*/
/*.tabs {*/
/*  margin-bottom: 2rem;*/
/*}*/

/*タブボタン一覧*/
/*.tab-nav {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  list-style: none;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  border-bottom: 1px solid #ccc;*/
/*}*/

/*各タブ（li） */
/*.tab-nav li {*/
/*    width: 33.3333%;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  position: relative;*/
/*  text-align: center;*/
/*}*/
/*.tab-nav li.active {*/
/*    width: 33.3333%;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  position: relative;*/
/*}*/

/*タブ内のボタン*/
/*.tab-nav li button {*/
/*    position: relative;*/
/*    width: 100%;*/
/*  background: none;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  padding: 1rem;*/
/*  font-size: 1rem;*/
/*  text-align: center;*/
/*  color: #333;*/
/*}*/
/*.tab-nav li.active button {*/
/*  font-weight: bold;*/
/*}*/
/*.tab-nav li.active button:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    bottom: -2px;*/
/*  border-bottom: 3px solid #333; 太めの黒ライン*/
/*}*/

/*タブコンテンツ部分（初期は非表示にし、アクティブのみ表示）*/
/*.tab-content {*/
/*  display: none;*/
/*  padding: 1rem 0;*/
/*}*/
/*.tab-content.active {*/
/*  display: block;*/
/*}*/
.tabs { margin-bottom: 2rem; }

.tabs .tab-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem 0;
  border-bottom: 1px solid #ccc;
}

/* 何個でも均等幅に */
.tabs .tab-nav > li {
  flex: 1 1 0;
  text-align: center;
  padding: 1rem .5rem;
  margin: 0;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.tabs .tab-nav > li.active { font-weight: 700; }

/* アクティブ下線 */
.tabs .tab-nav > li.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: #333;
}

/* パネル表示制御 */
.tabs .tab-content { display: none; padding: 1rem 0; }
.tabs .tab-content.active { display: block; }

/* 任意：モバイル見出しクリックで開閉する場合（.tabs.tabs-mobile-heading） */
.tabs.tabs-mobile-heading .tab-content { display: block; }
.tabs.tabs-mobile-heading .tab-content:not(.active) { display: none; }

/* アコーディオン */
.accordion-item {
  border-bottom: 1px solid #ccc;
}
/* ヘッダー部分 */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
}
.accordion-header h3 {
  margin: 0;
  font-size: 1rem;
}
.accordion-header i {
  font-size: 1.2rem;
}
/* コンテンツ部分 */
.accordion-content {
  overflow: hidden;
  max-height: 0; /* 初期は非表示 */
  transition: max-height 0.3s ease;
  padding: 0 1rem; /* アニメーションを見やすくするため余白を確保 */
}
.accordion-item.active .accordion-content {
  padding: 1rem; /* 開いた時の内容余白 */
}
/* もっと見るセクション */
/* ▼▼▼ メインの「もっと見る」コンテナ ▼▼▼ */
.read-more-container {
  position: relative;         /* ボタンを絶対配置するため */
  line-height: 1.6;           /* 行間 */
  max-height: 4.8em;          /* 3行分 (1.6×3=4.8) でテキストを隠す */
  overflow: hidden;           /* はみ出しを隠す */
  margin-bottom: 2rem;
  text-align: left;           /* テキストは左寄せ（必要に応じて変更） */
}

/* 3行目付近をフェードアウトさせるための擬似要素 */
.read-more-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2em; /* フェードの高さ */
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;  /* マウス操作を透過 */
  z-index: 1;           /* ボタンより下になるように調整 */
}

/* ▼▼▼ 「もっと見る」ボタン ▼▼▼ */
.read-more-button {
  /* ボタンをコンテナ内の下部中央に重ねる */
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  transform: translateX(-50%);
  
  z-index: 2;            /* フェードより上に表示 */
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;        /* アイコンと文字を詰めすぎないために調整可 */
}

/* アイコンと文字の間隔 */
.read-more-button i {
  margin-right: 0.25rem;
}

/* ▼▼▼ 展開後（.expanded） ▼▼▼ */
.read-more-container.expanded {
  max-height: none;      /* 制限解除で全文表示 */
}

/* 展開後はフェードを消す */
.read-more-container.expanded::after {
  content: none;
}

/* 展開後はボタンを普通のフローに */
.read-more-container.expanded .read-more-button {
  margin-top: 1rem;       /* テキスト下にスペースを確保 */
}
.ec-newsRole {
  padding: 60px 0 60px 0;
}

/* カテゴリー下線なし */
.ec-productRole .ec-productRole__category {
    padding: 14px 0;
    border-bottom: 0;
}
.ec-inlineBtn--action {
background-color: #333;
border-color: #333;
}
.ec-inlineBtn--cancel {
background-color: #fff;
border-color: #333;
}
.ec-modal .ec-modal-wrap {
    border: none;
}
.ec-select select {
    background-color: none;
}