/*******************************************************************
 修正：上部カートのアイコン色変更　黒からオレンジ
********************************************************************/
.ec-cartNavi__icon {
  color: #ff7d23;
}
/*******************************************************************
 修正：上部検索窓の項目表示　太字と位置調整
********************************************************************/
.ec-headerSearch .ec-headerSearch__category .ec-select select {
 font-weight: bold;
 padding:0px 15px;
}
/*******************************************************************
 修正：カテゴリの背景をオレンジ色に
 *******************************************************************/
.ec-itemNav__nav li ul li a{
 background: #ff7d23;
}
.ec-itemNav__nav > li:hover > a{
 background: #fa2222;    
}
/*******************************************************************
 メインコンテンツ外枠の横幅固定を外す 
 *******************************************************************/
.ec-layoutRole .ec-layoutRole__contents{
  max-width: none; /* 1150px; */
    }
/* スライドショーの横幅固定を外す */
.ec-sliderRole{
   max-width: none; 
   padding: 30px 0px 20px;
   background: #ffe0ab;
}

/*******************************************************************
 スライダー画像の角丸設定と余白の設定 
 *******************************************************************/
.ec-sliderRole img{
   width: 98%;
   padding: 0px;
   border-radius: 25px;
   border: 10px solid #fff;   /* 白い枠線 */
}

/*******************************************************************
 新着情報の画像の角丸設定と余白の設定 
 *******************************************************************/
.ec-newItemframe img{
   border-radius: 50px;
   border: 8px solid #7fd4ce;   /* 枠線 */
}
/**********************************/
/*   新着情報のマークの調整     */
/**********************************/
.ec-secHeading__en img {
    display: block;
    max-width: 128px;
    height: auto;
    margin: 0 auto;
}
.ec-newprtitle {
   padding-top: 30px;    
}
a.ec-inlineBtn--top,
button.ec-inlineBtn--top {
  color: white;
}
/**********************************/
/*   フッターロゴのサイズ設定     */
/**********************************/
@media screen and (min-width:768px) {
#footer_logo img{
    width: 400px;
}}
@media screen and (max-width:768px) {
.ec-footerTitle__logo img{
    width:380px;
}}

/**********************************/
/*   乗用玩具の紹介の設定     */
/**********************************/
.ec-eyecatchRole__introTitle {
  color: #31a6df;     
}
.ec-eyecatchRole__introEnTitle {
  color: #007c73;    
}
.ec-eyecatchRole__introDescription {
 /* color: #007c73; */
  font-weight: 600;
  font-size: 17px;
}
.ec-blockBtn--top {
  color: #fff;
  background-color: #ff7d23;
  border: none;
  border-radius: 99999px;
}
.ec-blockBtn--top:hover{
  color: #fff;
  background-color: #ff2222;
}
.ec-eyecatchRole__image {
  border-radius: 50px;
  border: 8px solid #66cbc4;   /* オレンジの枠線 */
  overflow: hidden;
}
/**********************************/
/*   トピックスの設定     */
/**********************************/
.ec-newsRole {
    padding-bottom: 50px;
}
.ec-secHeading {
    display: flex;
    align-items: center; /* 縦の中央揃え */
    justify-content: left;
    gap: 10px; /* 画像と文字の間隔 */
}
.ec-secHeading .ec-secHeading__line {
    margin: 0px;
    }
/**********************************/
/*   カレンダーの設定     */
/**********************************/
.ec-calendar .ec-calendar__today::before {
    background: #7fd4ce;
}
/**********************************/
/*   カテゴリーの設定     */
/**********************************/
.ec-categoryRole .ec-categoryRole__listItem img{
   border-radius: 9999px;
   /* border: 8px solid #7fd4ce;   枠線 */
}
.ec-footerNavi__link {
  color: #fff;
  font-weight: bold;
  background-color: #ff7d23;
  border: none;
  border-radius: 99999px;    
}
@media (max-width: 767.98px) {
.ec-footerNavi {
  margin-top: 40px; /* ← 背景に埋め込みたい分だけ下げる。調整可能 */
  padding-bottom: 30px; /* 下も少し余白をつけておくと綺麗 */
  position: relative;
  top: 30px; /* ← この値で下げ具合を調整 */
}
.ec-footerNavi__link {
  width:70%;
  margin:  0px auto 5px;            /* 中央寄せ */
} 
.ec-footerNavi .ec-footerNavi__link a{
  padding: 10px 0;
}
.ec-footerTitle {
  padding: 0px 0 5px;
}
.ec-footerTitle img{
 width:70%;
}
}

/**********************************/
/*   商品ページのボタン設定     */
/**********************************/
.ec-blockBtn--action{
  border: none;
  border-radius: 99999px;
}
.ec-blockBtn--cancel{
  border: none;
  border-radius: 99999px;
  background-color: #2ac4b9;
}
.ec-blockBtn--cancel:hover{
  background-color: #007c73;    
}
.ec-grid2{
  margin: 35px 0 0;   
}
/****************************************/
/* 商品ページのスライド画像の左右の隙間 */
/****************************************/
.slick-slide{
 margin: 0 5px;
}
/**********************************/
/*  ページTOPボタンをアイコン化   */
/**********************************/
.ec-blockTopBtn {
  background-color: transparent;
  color: transparent;
  width: 150px;
  height: 112px;
  background-repeat: no-repeat;
  background-image: url("/ec/html/user_data/common/pgtop-btn-pb802.png");
  background-size: 70%;
  right: 0px;
  bottom: 20px;
  opacity: 0.9;
}
@media (max-width: 767.98px) {
.ec-blockTopBtn {
  background-size: 40%;
  right: -80px;
  bottom: -25px;    
  }
}
/**********************************/
/*  最初にフワッと表示   */
/**********************************/
:root{ --page-fade-ms: 2200ms; }

body.front_page {
  opacity: 0;
  transition: opacity var(--page-fade-ms) ease;
}

/* JSで .is-loaded が付いたら表示 */
body.front_page.is-loaded {
  opacity: 1;
}

/* 動きが苦手な環境に配慮 */
@media (prefers-reduced-motion: reduce) {
  body.front_page { transition: none; opacity: 1; }
}

/**********************************/
/*  スクロールでフワッと表示   */
/**********************************/
/* フワッとアニメーション基本形 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* 表示されたとき */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* 少し高級感出すならオプション（好みで） */
.fade-in {
  will-change: opacity, transform;
}

/**********************************/
/*   商品一覧ページの設定     */
/**********************************/

/* グリッドの間隔を広げる */
.ec-shelfGrid { gap: 10px; }

/* 1カードの箱 修正*/
.ec-shelfGrid .ec-shelfGrid__item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 12px;
  /*box-shadow: 0 6px 8px rgba(0,0,0,.06); */
  transition: box-shadow .2s ease, transform .2s ease;
  overflow: hidden;
  display: flex;            /* タイトルや価格を縦積み */
  flex-direction: column;
  height: 350px;
}

/* ホバーでちょい浮かせる */
.ec-shelfGrid .ec-shelfGrid__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  border-color: #ddd;
}

/* 画像枠：比率を揃えてキレイに見せる */
.ec-shelfGrid .ec-shelfGrid__item img {
  width: 100%;
  height: 220px;            /* 欲しい高さに調整 */
  object-fit: contain;      /* 画像を潰さず収める */
  border-radius: 15px;
}

/* タイトル・価格まわりの余白 */
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__name,
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__price,
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__description {
  margin-top: 10px;
}

/* タイトルは2行で省略（長い商品名対策） */
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__name {
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;    /* 行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 価格を目立たせる */
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__price {
  margin-top: auto;         /* 一番下に寄せる */
  font-size: 18px;
  font-weight: 700;
  color: #ff2222;
}

/* 価格の税込注記などは薄めに */
.ec-shelfGrid .ec-shelfGrid__item .ec-productRole__price small {
  font-weight: 600;
  color: #888;
}

/* NEWなどのバッジ（任意で使える汎用クラス） */
.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #ff9900;
  border-radius: 999px;
  vertical-align: middle;
}
.badge--gray { background:#999; }

@media only screen and (min-width: 768px) {
  .ec-shelfGrid .ec-shelfGrid__item {
    padding: 0 16px;
    width: 23%;
  }
   .ec-shelfGrid {
    margin-left: 0px;
    margin-right: -55px;
   }
}
/* スマホで画像を少し低くしてカードの縦長を抑える */
@media (max-width: 768px) {
  .ec-shelfGrid .ec-shelfGrid__item img { height: 180px; }
  .ec-shelfGrid .ec-shelfGrid__item {
  margin-bottom: 5px;
  width: 48%;
  }
}