@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*ブロック背景透過*/
.header-container,
.main,
.sidebar,
.footer,
.article h2,
.article h3 {
  background-color: rgb(255 255 255 / 0%);
}

/*テーブルブロック透過*/
.container table tr {
  background-color: transparent;
}

/*ヘッダー背景透明化*/
#header-container {
background-color: transparent;
}
/*ナビゲーションメニュー背景透明化*/
#header-container .navi {
background-color: transparent;
}

/*フッター左ブロック右寄せ*/
.footer-left {
	text-align: right;
}

/*フッター中ブロック中央*/
.footer-center {
	text-align: center
}

/*商品ページテーブルヘッダー背景空白*/
.item-table-th {
  background-color: transparent;	
}

/*商品ページテーブルサイズの調整*/
/*説明欄の文字数超過の改行*/
.item-table-td {
	word-wrap: break-word;
}

/*商品ページスライダーのサムネイルサイズ調整*/
.custom-thumb {
	widows: 100%;
}

/*商品ページスライダーのサムネイルの・削除*/
.custom-thumb {
	list-style: none;
}

/*商品ページスライダーのサムネイルの横並び*/
.custom-thumb {
	display: flex;
	justify-content: center;
	
}

/* スライダーサムネイルの左余白削除ここから */
.custom-thumb {
	flex: 1;
	padding-left: 0; /* 左側のパディング（余白）を削除 */
    margin-left: 0;  /* 左側のマージン（余白）を削除 */
}

.custom-thumb li {
	padding: 0; /* 左側のパディング（余白）を削除 */
    margin: 0;  /* 左側のマージン（余白）を削除 */
}

.custom-thumb img {
    display: block; /* 画像をブロック要素にして余計な隙間をなくす場合も */
    width: 100%;    /* 親要素（liやul）の幅いっぱいに表示 */
    height: auto;   /* 縦横比を維持 */
}
/* スライダーサムネイルの左余白削除ここまで */

.custom-item-page {
	margin: 0px auto;
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/

 /*1023px以下でフッターナビ非表示*/	
.menu-footer-menu1-container {
display:none; !important;
}
.menu-footer-menu2-container {
display:none; !important;
}
.menu-footer-menu3-container {
display:none; !important;
}
	
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
