@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
.haku-newcolor-list button{
	transition: 0.2s;
}
.haku-newcolor-list button:hover{
	transform: scale(1.05);
	transition: 0.2s;
}
/* モーダルCSSここから */
.modalArea {
  visibility: hidden; /* displayではなくvisibility */
  opacity : 0;
  position: fixed;
  z-index: 10; /* サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position:absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 768px;
  background-color: #fff;
	height: auto;
	overflow-y: auto;
  max-height: 80%;
		padding: 1rem;

}

  .closeModal {
/*      position: absolute;
        top: 0.5rem;
        right: 1rem;右上にアブソリュート*/
	  cursor: pointer;
      font-size: 18px;
	  color: #333;
	  padding: 1rem;
	  text-align: right;
	transition: 0.2s;
  }
.closeModal:hover {
	opacity: 0.7;
	transition: 0.2s;
}


.is-show { /* モーダル表示用クラス */
  visibility: visible;
  opacity : 1;
}
.modalContents-haku-name{
	font-size: 20px;
	padding: 1rem;
}
.modalContents img{
	width: 100%;
	max-width: 600px;
}




/* モーダルCSSここまで */


