@charset "UTF-8";
/* カスタマイズ用CSS */
/* 20200919 商品マスタ中のテーブル用 */
table.kaitbl01 {
    border: solid 1px;
    border-collapse: collapse;
}
table.kaitbl01 th {
    background-color: #FFE4E1;
    font-weight: normal;
    text-align: left;
    padding: 10px;
    border: solid 1px;
}
table.kaitbl01 td {
    padding: 10px;
    border: solid 1px;
}

/* 20200922 サイト全体のカラーをピンクに変更 */
/* サイト全体の背景色変更 */
.ec-layoutRole {
  background: #ffe2e3;
}
/* ヘッダーカテゴリナビの背景色変更 */
.ec-itemNav__nav li a {
  background: #ffe2e3;
}
/* カテゴリの背景色変更 */
.ec-categoryRole {
  background: #ffe2e3;
}
/* フッター背景色変更 */
.ec-footerRole {
  background: #B384FF;
}

/* 20200924 YouTubeのレスポンシブ対応 */
.kaiyoutube {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.kaiyoutube .inner {
	padding-top: 56.25%;
	position: relative;
	height: 0;
	overflow: hidden;
}

.kaiyoutube .inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 20200925 ボタンレイアウト追加 */
.kaibtn {
  display:block;  
  max-width: 180px;
  background-color: #0693e3;
  font-size: 18px;
  color: #FFF;
  font-weight: bold;
  padding:16px;
  text-align: center;
  border-radius: 4px;
  transition: .4s;
}

