/* カスタマイズ用CSS */

/* 関連商品の装飾 */
.ec-shelfGrid a{
    color: #333;
}
.ec-shelfGrid__item:hover {
    opacity: 0.7; /* 透明度を70%にする */
    transition: opacity 0.3s ease-in-out; /* なめらかに変化するように */
}
/* 送料ページ　テーブル全体のスタイル */
.souryou_hosoku{
    font-size: 14px;
}
.delivery_frame {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    table-layout: fixed; /* テーブルのレイアウトを固定 */
}

/*区分タイトル*/
.delivery_kubun{
    background-color: #F9F9F9;
}

/* ヘッダー行のデザイン */
.delivery_frame thead tr {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

/* ヘッダーとデータセルのスタイル */
.delivery_frame th,
.delivery_frame td {
    padding: 12px;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    color: #333;
    font-weight: 500;
    width: auto; /* 自動調整 */
}

.delivery_frame th:last-child,
.delivery_frame td:last-child {
    border-right: none;
}

/* 地域セル */
.deliverycharge01_ken {
    width: 70% !important; /* 70%に調整 */
    background: #f9f9f9;
    font-weight: bold;
    padding: 12px;
}

/* 送料セル */
.deliverycharge01_carton {
    width: 30% !important; /* 30%に調整 */
    text-align: center;
    background: #eef6ff;
    font-weight: bold;
}

/* 区分タイトルのデザイン */
.delivery_kubun {
    background: #f4f4f4;
    font-weight: bold;
    padding: 16px;
    font-size: 18px;
    border-bottom: 3px solid #0073aa;
}

.delivery_kubun_title {
    font-weight: bold;
    margin-bottom: 10px;
}


/*送料ページ　トップイラスト*/
.DeliveryJPG{
    padding: 20px;
    margin-bottom: 60px;
}

        

/*ガイドページイラスト*/
img.cart_in_guide {
    display: block;
    margin: 0 auto;
    width: 477px; /* 拡大を防ぐ */
    height: auto;
}
/*関連カテゴリ非表示*/
.ec-productRole__category {
    display: none;
}


/*ヘッダーメニュー　アニメーション*/
.ec-categoryNaviRole {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  box-shadow: none;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;  /* スムーズなアニメーション */
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);  /* 最初は通常表示 */
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-50px);  /* 少し上に移動させて非表示の状態を作る */
  opacity: 0;  /* 最初は透明 */
  z-index: 9999;
}

.fixed.animate {
  transform: translateY(0);  /* 少し下がってぴったり表示 */
  opacity: 1;  /* 完全に表示 */
}







/*関連カテゴリ*/
.CTWord {
  background-color: #fff;
}


/*カラムサイズ調整*/
@media (min-width: 768px) {
  .ec-grid2 .ec-grid2__cell {
    width: 61%;
  }
}

/*フッターアイコンの透明度*/
.footer-column h3 i {
/*    opacity: 0.7;  /* 少し控えめに表示 */
}
/*商品ページのレイアウト*/
.ec-productRole {
  background-color: #FFF;
  padding:40px;
  border-radius: 5px;
}

/*トップページのカラー　ホワイト*/
.front_page .ec-layoutRole {
    background-color: #FFFFFF;  /* トップページは白 */
}

/*商品ページの背景*/
.product_page .ec-layoutRole {
    background: linear-gradient(to bottom, #F0F0F0, #FCFCFC);
}

/*商品ページ　テンプレート部分*/
.pdt_temp{
	margin-top:15px;
	width:100%;
	border:1px solid #999;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-collapse: collapse;
	}

.pdt_temp_th{
	background: #F83;
	color: #fff;
	font-weight: 500;
	font-size: 13px;
	font-size: 1.0rem;
	}

/*価格表トップ*/
.volumediscount {
  background-color: #F0F0F0;
  font-size: 0.9em;
  text-align: center;
  color: #111;
  text-shadow: 1px 1px 1px #ccc;
  padding: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom: 1px solid #999;
  margin-bottom: 1px;
}


/*カテゴリページリンクボタン*/
.category_menu_cl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 3列 or 2列 */
    gap: 6px; /* 各ボタンの間隔 */
    width: 100%; /* 横幅いっぱいに広げる */
    padding: 10px;
    list-style: none; /* リストのデフォルトスタイルを削除 */
    margin: 0 auto; /* 水平中央配置 */
    justify-content: space-between; /* 左右の余白を均等に */
}

.category_menu_cl li {
    display: flex;
}

.category_menu_cl li a {
    display: block;
    width: 100%; /* 各ボタンの幅いっぱい */
    padding: 12px 15px;
    background: #FFF;
    color: #333; /* 文字色 */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 1px #DDD;
    border-radius: 2px; /* 角を少し丸く */
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); /* 右＆下に影を付ける */
    transition: background-color 0.3s, box-shadow 0.2s;
    border-bottom:4px solid #fff;

}

/* ホバー時の効果 */
.category_menu_cl li a:hover {
    background:#F9F9F9;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.50); /* 影を強調 */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    border-bottom:4px solid #6F8BD7;
}


/* デフォルト（PC表示）で3列 */
@media (min-width: 768px) {
    .category_menu_cl {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    /* リンクが多いカテゴリは5列 */
    .category_menu_cl_large {
        display: grid;  /* これを追加しておくと確実！ */
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }
}

/* スマホでは2列（すべて共通） */
@media (max-width: 767px) {
    .category_menu_cl,
    .category_menu_cl_large {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}


/*商品ページ　説明部分*/
.ec-productRole .ec-productRole__btn {
    margin-bottom: 16px;
    min-width: 100%;
}

/* CSS */
button.cart-btn {
  width: 100%; /* 親要素の幅に合わせる */
  max-width: 300px; /* 必要なら最大幅を指定 */
}

/*商品ページ　製品仕様テーブル*/
table {
  width: 100%;
  border-collapse: separate;
  text-align: center;
}

table th, table td {
  border-bottom: 1px solid #999;
  padding: 4px;
}

th {
  font-weight: normal;
}

td {
  font-size: 1em;
  background: #F9F9F9;
}

/* .price_subのスタイル */
.price_sub {
  font-size: 1.2rem;
  padding: 8px;
  background-color: #F0F0F0;
  margin: 0 auto;
  color: #333;
  line-height: 1;
  text-decoration: none;
}

/* table.Productのスタイル */
table.Product th {
  background: #005AA0;
  color: #F0F0F0;
  font-size: 0.9em;
  padding: 0;
  width:50%;
}

table.Product td {
  font-size: 1.4em;
  color: #000;
}

/* table.Product02のスタイル */
table.Product02 th {
  background: #005AA0;
  color: #F0F0F0;
  width: 46%;
  font-size: 14px;
}

table.Product02 td {
  font-size: 0.9em;
  width: 18%;
}

/* table.Specのスタイル */
table.Spec {
  border-spacing: 0;
  text-align: left;
  border-top: 1px solid #999;
  border-left: 1px solid #777;
  font-size: 13px;
  background: linear-gradient(to bottom, #d9d9d9 0%, #f0f0f0 61%, #cccccc 100%);
  margin: 15px 15px 0 0;
  color: #000;
}

table.Spec th {
  vertical-align: top;
  border: 1px solid #999;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  padding: 3px 5px 2px;
  font-weight: 100;
  text-shadow: 1px 1px 0 #fff;
  width: 90px;
}

table.Spec td {
  vertical-align: top;
  border-right: 1px solid #999;
  padding: 7px 5px 2px;
  background: #FFF;
}




/*商品一覧ページ*/
.item_comment_list {
  font-size: 15px;
  font-size: 1.5rem;
  color: #393939;
  background-color: #F0F0F0;
  border-radius: 2px;
  padding: 10px;
  margin-top: 5px;
  line-height: 1.2;
  box-shadow: 1px 1px 0px #AAA;
}

/*パンくず部分*/
.hosoku_text{
    color: #777;
}
/*リストインデント*/
.listcircle{
    margin-left: 20px;
    
}

.policy-bar {
    background-color: #222f53;
    padding: 10px 0; /* 上下の余白 */
    border-top: solid 1px #424242;
}

.policy-content {
    max-width: 1200px; /* 横幅を1200pxに制限 */
    margin: 0 auto; /* センタリング */
    display: flex;
    justify-content: space-between; /* 左右に分ける */
    align-items: center; /* 縦方向の位置を中央に */
}

.policy-links a {
    color: #666;
    margin-right: 15px;
    text-decoration: none;
}

.policy-links a:hover {
    text-decoration: underline;
    color: #333;
}

.policy-since p {
    margin: 0;
    color: #666;
    font-size: 14px;
    text-align: right;
}







/*h1 センタリング　アンダーバー削除*/
.ec-pageHeader h1, .ec-pageHeader .h1{
    text-align: center;
    border:none;
}


/*テキストセンタリング*/
.centercenter{
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.CLJP_10{
    text-align: center;
}

/*faq用*/

.Qicon{
    margin-right: 10px;
    color: #4078E1;
    }
    
/*プライバシーページ用*/
.Privacy_TopComment{
    font-size: 125px;
    font-size: 1.2rem;
    line-height: 1.0em;
    margin-bottom: 80px;
}

.Privacy_text{
    font-size: 18px;
    font-size: 1.2rem;
    line-height: 2.2em;
    margin: 20px;
}

.Privacy_title{
    font-size: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0px 0px 50px 0px;
}


p {
  font-size: 1.2rem;
  line-height: 2.0em;
  }

/*お買い物ガイド　イメージ挿入*/
.appeal {
        display: flex;
        align-items: flex-start;
        padding: 50px;
}
.appeal-image {
    margin-right: 20px;
}
.appeal-block {
    flex: 1;
}

.bold-text {
    font-weight: 600;
}


/* バイオマスPET説明用*/

/* ルート要素のフォントサイズを設定（仮定） */

.BPET_B-Text{
    background-color: #c5ffd4;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 5px;
    padding: 5px;
    line-height: 2em;
}

html {
    font-size: 16px; /* 1rem = 16px */
}

h2.Product_information03 {
    position: relative;
    padding: 1rem 2rem calc(1rem + 8px);
    background: linear-gradient(to bottom, #F9F9F9, #E3E3E3);
    color: #444;
    text-shadow: 1px 1px 0px #FFF;
}

h2.Product_information03:before {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    content: '';
    border: 3px solid #68a457;
}

.BioPet_list {
    font-size: 22px;
    line-height: 2.2em;
    margin-bottom: 50px;
}

/* h1のフォントサイズを1.6remに設定 */
.BN_BioPet_TOP {
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #DFF9AD;
    text-shadow: 1px 1px 1px #FFF;
    color: #000;
    font-weight: 700;
}

.BPET_Comment{
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 720px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 0px #CCC;
}
/* 特定のスタイル設定 */
.BioPet_TOP {
    font-size: 1.2rem; /* 16px * 1.6 = 25.6px */
    width: 100%;
    text-align: center;
    margin: 30px 0px 30px 0px;
    background-color: #DFF9AD;
    text-shadow: 1px 1px 1px #FFF;
    padding: 5px 30px 5px 30px;
}

/* コンテナの幅を設定 */
.content-container {
    max-width: 1150px; /* 横幅を1150pxに設定 */
    margin: 0 auto; /* 中央揃え */
}

/* 画像のサイズを指定 */
.content-container img {
    width: 1150px;
    display: block;
    margin: 0 auto; /* 中央揃え */
}

/* バイオマスPET説明部分のレイアウト */
.explanation-section {
    font-size: 1.2rem; /* 文字サイズを大きくする */
    line-height: 1.6; /* 行間を広くする */
    overflow: hidden; /* floatをクリア */
}

.explanation-section p {
    margin: 0 0 1em; /* 段落の下に余白を追加 */
}

.explanation-section img {
    width: 300px; /* イラストの幅を指定 */
    float: right; /* 画像を右に回り込ませる */
    margin: 0 0 20px 20px; /* 画像の周りに余白を追加 */
}

/* floatをクリアするためのclearfixクラス */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


/* 装飾用のクラス */
.highlighted-text {
    font-size: 1.3rem;
    line-height: 2.0;
    font-weight: bold;
    color: #333;
}

/* リストのスタイルを設定 */
.explanation-list {
    font-size: 1.2rem; /* リスト項目の文字サイズを大きく */
    line-height: 1.8; /* 行間を広く */
    margin-left: 20px; /* インデントを追加 */
}

.explanation-list li {
    margin-bottom: 10px; /* 各リスト項目の下に余白を追加 */
}

.explanation-list strong {
    font-weight: bold;
}

/* 特定のテキストスタイル */
.explanation-text {
    font-size: 1.2rem;
    line-height: 2.0;
}







/*数量部分*/
.ec-numberInput select{
    max-width: 350px;
}



/*商品ページ　リサイズ調整*/
.slide-item {
        width: 686px;
        height: auto;
    }
/*ページトップボタン　重なり調整*/
.pagetop {
    z-index: 9999; /* フッターよりも高い値に設定 */
}

/*2columnページ用*/
.ec-role {
    padding: 20px;
}

.ec-pageHeader {
/*    background-color: white;*/
    color: black;
    padding: 10px 0;
    margin-bottom: 20px;
    text-align: left;
}

.guide-container {
    display: flex;
    flex-wrap: nowrap;
}

.guide-menu {
    flex: 0 0 250px; /* 固定幅を設定 */
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    position: -webkit-sticky; /* Safari用 */
    position: sticky;
    top: 20px;
    height: fit-content;
    background-color: #EAEAEA;
    border-radius: 5px;
    box-shadow: 3px 3px 3px #999;
    background: linear-gradient(to bottom, #E9E9E9, #E1E1E1);
}
.guide-content {
    flex: 1;
    padding: 0px 0px 0px 20px; /* パディングの変更 */
    box-sizing: border-box;
    margin-left: 0; /* マージンをリセット */
    text-align: left; /* 左寄せに設定 */
    width: calc(100% - 290px); /* コンテンツの幅を調整 */
}

.guide-menu ul,
.guide-content ol {
    list-style: none; /* 両カラムのリストから番号を外す */
    padding: 0;
}

.guide-menu li {
    margin-bottom: 10px;
}

.guide-menu a {
    text-decoration: none;
    color: #333;
}

.guide-menu a:hover {
    text-decoration: underline;
}

.sticky {
    position: sticky;
    top: 20px;
    width: 250px; /* 幅を固定 */
    z-index: 1; /* 重なり順を設定 */
}

.guide-menu .small-title {
    color: #000;
    font-size: 0.8em;
    margin-top: 0;
    padding: 5px;
    border-radius: 3px;
    text-align: center;
    border: 1px solid #CCC;
    margin-bottom: 30px;
    background-color: #FFF;
}

.appeal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.appeal-block {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: 30px;
}

.appeal-block h4 {
    margin-top: 0;
}

.appeal-block:last-child {
    margin-right: 0;
}

.icon {
    margin-right: 10px;
    color: #75e8bc; /* アイコンの色を設定 */
}

.answer {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.custom-h3 {
    color: #000;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    border: 1px solid #ddd;
    padding: 20px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-table th, .custom-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.custom-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}

.custom-table th:first-child, .custom-table td:first-child {
    width: 61%;
}

.custom-table th:last-child, .custom-table td:last-child {
    width: 39%;
}

@media (max-width: 768px) {
    .guide-container {
        flex-wrap: wrap;
    }

    .guide-menu {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        top: 0;
    }

    .guide-content {
        flex: 1 1 100%;
        width: 100%;
        padding: 20px;
    }

    .sticky {
        position: relative;

        width: 100%;
    }

    .guide-content {
        width: 100%;
        padding: 0;
    }

    .guide-content h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .guide-menu {
        padding: 10px;
    }

    .guide-content {
        padding: 10px;
    }

    .appeal {
        flex-direction: column;
    }

    .appeal-block {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .appeal-block:last-child {
        margin-bottom: 0;
    }
}




/*ここまで　2columnページ用*/




/*ツールチップ*/
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px; /* 調整可能 */
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Tooltipの位置 */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}



/*特記事項　文字カラー*/
.ec-color-accent {
  color: #F60;
}

.ec-cartRole .ec-cartRole__totalAmount {
  color: #F40;
}

.ec-cartNavi .ec-cartNavi__badge {
  background-color: #F40;
}
/*マイページ　ヒストリー*/
.ec-historyRole .ec-historyRole__contents {
  border-top: 10px solid #fff;
  color: #525263;
  background-color: #ECECEC;
  background: linear-gradient(to bottom, #F9F9F9, #E1E1E1);
  padding: 20px;
}

@media only screen and (min-width: 768px) {
  .ec-imageGrid .ec-imageGrid__img {
     width: 256px;
  }
}

/*アラート部分*/

.ec-cartNaviNull .ec-cartNaviNull__message {
    background-color: #F60;
    border-radius: 6px;
}
.ec-alert-warning {
    background: #F60;  margin-bottom: 20px;
    border-radius: 6px;
}

/*　テンプレート　shopping/index　*/
.shipping-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}
.shipping-info-table th, .shipping-info-table td {
    border: 1px solid #ddd;
    padding: 8px;
}
.shipping-info-table th {
    background-color: #f2f2f2;
    text-align: left;
    width: 50%; /* 必要に応じて調整 */
    font-weight: 500;
}
.shipping-info-table td {
    width: 50%; /* thとtdの合計が100%になるように */
    background-color: #FFF;
    color: #000;
}


.Order_ch_carton{
    color: red;
    font-size: small;
    text-align: center;
}
.customer-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: #000;
    box-shadow: 1px 1px 2px #888;
}
.customer-info-table th, .customer-info-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.customer-info-table th {
    background-color: #a4a4a4;
    color: #FFF;
    border: 1px solid #FFF;
    width: 20%;
    font-weight: 500;
    font-size: 16px;
}

.customer-info-table {
    width: 100%;
    border-collapse: collapse;
}
.customer-info-table th, .customer-info-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.customer-info-table th {
    background-color: #A4A4A4;
    width: 30%; /* ここで横幅を設定します。値は必要に応じて調整してください。 */
}
.customer-info-table td {
    width: 70%; /* thとtdの合計が100%になるようにします。 */
}
.shipping-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}
.shipping-info-table th, .shipping-info-table td {
    border: 1px solid #ddd;
    padding: 8px;
}
.shipping-info-table th {
    background-color: #f2f2f2;
    text-align: left;
    width: 20%; /* 必要に応じて調整 */
}
.Order_ch_carton {
    color: #F60;
    font-size: small;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}
.shipping-info-container {
    border: 1px solid #CCC;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 1px 1px 2px #333;
    background-color: #F9F9F9;
    margin-bottom: 20px;
}



/*マイページメニュー*/
.ec-navlistRole .ec-navlistRole__navlist {
 background: linear-gradient(to bottom, #fff, #e6e6e6 50%, #d7d7d7 50%, #dfdfdf);
 color: #000;
}

.ec-navlistRole .ec-navlistRole__item {
  border-color: #AAA;
  box-shadow: inset 0 0 0 1px #ffffff;
  text-shadow: 1px 1px 0px #FFF;
}


/*cancel　ボタン*/
.ec-blockBtn:hover {
    background-color: #ffffff;
}
 

.ec-blockBtn{
    color: #000;
}

.ec-totalBox .ec-totalBox__btn a {
  color: #000;
  font-weight: 600;
}


 .ec-blockBtn--cancel:active {
    background-color: #f2f2f2;
    border-color: #CCC;
}


.ec-blockBtn--cancel {
    color: #000;
    background-color: #F2F2F2;
    border-color: #CCC;
    -webkit-box-shadow: 1px 1px 1px 1px #FFF inset;
}
.ec-blockBtn--cancel:hover {
    color: #fff;
    background-color: #FFF;
    border-color: #CCC;
    color: #000;
    text-shadow: 1px 1px 1px #CCC;
}


/*ショッピングカート　ボックス部分*/
.ec-totalBox {
  border: 1px solid #CCC;
  box-shadow: 1px 1px 1px #333;
}

/*カテゴリナビ横幅を統一*/
.ec-itemNav__nav li ul li a {
    width: 200px;
    background-color: rgba(233, 235, 238, 0.90); /* 85%透過 */
}

/*会員項目変更時　フッター上部のマージン*/
.ec-registerCompleteRole {
  margin-bottom: 30px;
}
/*フッター上部のマージン*/
.ec-off1Grid{
    margin-bottom: 30px;
}

/*輸入品在庫について*/
.Product_note {
  background-color: #FFF;
  font-size: 18px;
  font-size: 1rem;
  padding: 10px;
  border-radius: 10px;
  border: 1px #666 dashed;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*商品ページ　よくある質問などリスト*/
li.addlist04 {
  font-size: 1.2rem;
  margin-top: 10px;
  background-color: #FFF;
  background: linear-gradient(#FFF, #F9F9F9);
  padding: 10px;
  line-height: 1.8em;
}

/*商品ページ販売制限*/
.Sales_restriction {
  font-size: 15px;
  font-size: 1rem;
  color: #333;
  background: #F0F0F0;
  padding: 5px;
}
/**/
.ec-cartNaviIsset .ec-cartNaviIsset__action .ec-blockBtn--action {
  color: #000;
  margin-bottom: 8px;
  font-weight: 600;
}

.ec-headerNaviRole {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  -webkit-text-size-adjust: 100%;
}

/*ボタン*/
.ec-inlineBtn--action:hover {
  color: #fff;
  background-color: #3351a4;
  border-color: #fff;
}
.ec-blockBtn--action:hover {
    color: #000;
    background-color: #FFF;
    border-color: #CCC;
    text-shadow: 1px 1px 0px #CCC;
}

.ec-blockBtn--action:active{
        color: #000;
    background-color: #FFF;
    border-color: #CCC;
    text-shadow: 1px 1px 0px #CCC;
}
.ec-blockBtn--action:focus{
    color: #6c6c6c;
    background-color: #eee;
    border-color: #aeaeae;
    box-shadow: 0 0 0 0.25rem rgba(189, 189, 189, 0.5);
}

i.addlist {
  font-size: 1.0rem;
}

/*マルチケース　説明部分*/
.CDM_title {
  font-size: 1.0rem;
}

/*ボタン*/
button {
  border-radius: 3px;
}

.ec-blockBtn--action {
  display: inline-block;
  margin-bottom: 0;
  font-weight: bold;
  text-align: center;
/*  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 0.875rem;
  border-radius: 1.42857142;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  text-decoration: none;*/
  color: #000;
  background-color: #f2f2f2;
  border-color: #CCC;
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
-webkit-box-shadow: 1px 1px 1px 1px #FFF inset;
}



/* 下マージン*/
@media only screen and (min-width: 768px) {
  .ec-newsRole .ec-newsRole__news {
    margin-bottom: 30px;
  }
    
  .ec-off2Grid {
    display: flex;
    margin-bottom: 30px;
   }
}
/*商品ページ説明部分*/

.Product_information {
    border-radius: 3px;
    padding: 6px;
    font-size: 16px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 0px;
    text-shadow: 1px 1px 0px #3f3f3f;
    background-color: #315373;
}
.Product_explanation {
  padding: 10px 33px 10px 33px;
  font-size: 12px;
  font-size: 1.1rem;
  line-height: 2em;
  color: #2B2B2B;
  border-radius: 0px 0px 6px 6px;
  background-color: #E9E9E9;
 
}

/*タグ*/
.ec-productRole .ec-productRole__tag {
  display: inline-block;
  padding: 2px 5px;
  list-style: none;
  font-size: 80%;
  color: #FFF;
  border-radius: 3px;
  background-color: #005AA0;
}


/*商品ページ　品名*/
@media only screen and (min-width: 768px) {
  .ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0px #eee;
    color: #000;
  }
}
.price_header{
	font-size: 14px;
	font-size:1.0rem;
	font-weight: 400;
	color: #000;
	}

/*フッター*/
        footer {
            background: linear-gradient(135deg, #222F53 50%, #162E91);
            color: #ffffff;
            padding: 20px;
            border-top: 1px solid #e7e7e7;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #CCC; /* 上部の横ライン */
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .footer-column {
            flex: 1 1 150px;
            margin: 10px;
            max-width: 220px;
            text-align: left;
        }
        .footer-column h3 {
            font-size: 1em;
            white-space: nowrap;
            display: inline-block;
            color: #BFBFBF;
            margin-top: 0px;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li {
            margin-bottom: 5px;
            position: relative;
        }
        .footer-column ul li a {
            text-decoration: none;
            color: #ffffff;
            margin-left: 15px;
        }
        .footer-column ul li a:hover {
            text-decoration: underline;
            text-decoration-color: white;
            
        }
        .footer-column form {
            display: none;
        }
        .footer-column form input,
        .footer-column form button {
            margin-bottom: 10px;
            width: 100%;
            max-width: 180px;
        }
        .footer-column form input {
            padding: 5px;
            border: none;
            border-radius: 3px;
        }
        .footer-column form button {
            padding: 5px;
            border: none;
            border-radius: 3px;
            background-color: #ffffff;
            color: #222F53;
            cursor: pointer;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            border-top: 1px solid #e7e7e7;
            padding-top: 10px;
            position: relative;
            z-index: 1;
        }

.CRS_kosaka{
    font-size: 12px;
    color: #C1C1C1;
}

.icon-category {
    color: #F7987B;  /* 人気の商品カテゴリ → 鮮やかなオレンジ */
}

.icon-support {
    color: #3F51B5;  /* お客様サポート → 落ち着いたブルー */
}

.icon-sample {
    color: #6DA26F;  /* サンプルのご依頼 → フレッシュなグリーン */
}

.icon-info {
    color: #FFC107;  /* お役立ち情報 → 明るいイエロー */
}

.icon-contact {
    color: #E78DF7;  /* ご質問お問い合わせ → 優しいパープル */
}

 .footer-column {
            border-right: 1px dotted rgba(255, 255, 255, 0.4);
        }
        .footer-column:first-child {
            border-left: none;
        }
        .footer-column:last-child {
            border-right: none;
        }

        .footer-column::after {
            top: 15px; /* 先端を下げる */
        }

@media screen and (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
    }
    .footer-column {
        max-width: 45%; /* 2列表示に */
    }
}

@media screen and (max-width: 768px) {
    .footer-column {
        max-width: 100%; /* 1列表示に */
        text-align: center;
    }
}

/*フッター　end*/



/*レスポンシブ　768px*/
@media screen and (max-width: 768px) {

.ec-grid2{
    width: 100%;
}
.ec-productRole {
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px;
}

/*
.ec-grid2__cell {
        width: 50%; /* 4列レイアウトに変更 */


}