/*/////総合の設定/////始*/
/*トップ全体*/
.howto_top{
 width="100%"
}
.howto_top img{
  width:100%;
}
.howto_top h2, .howto_top h3, .howto_top h4{
  text-align:center;
}
/*各セクションごとのコンテナ*/
.howto_top_contents{
  margin-bottom:5em;
}
/*トップ内共通ボタン*/
.howto_top_button{
  display:block;
  max-width:300px;
  border-radius:8px;
  padding:10px 30px;
  margin:auto;
  background-color:#00592a;
  border-style:none;
  box-shadow:2px 2px 3px 1px #666;
  text-align:center;
  font-size:14px;
  color: #fff;
}
/* ボタンにカーソルを当てたときの変化*/
.howto_top_button:hover{
  background-color: #9d9969;
  color: #fff;
}
/*/////全体の設定/////終*/



/*/////SLIDER スプレー館デザインより/////始*/
@media screen and (max-width: 1030px) {
  .slider {
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
  }
  
  #slider a img{border:2px solid #fff;}
}
#slider div {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin:0 auto;
}
#slider > div {
  display: none;
}
.bx-viewport #slider > div {
  display: block;
}
.bx-wrapper {
  z-index: 0;
}
#slider img{width:100%;height:auto;}

.bx-wrapper img {
  width: 100%;
  height: auto;
}
.bx-wrapper .bx-viewport {
  box-shadow: none !important;
  border: 0 !important;
  left: 0 !important;
}
.bx-wrapper .bx-pager {
  bottom: -27px !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  margin: 0 3px !important;
  padding-top: 15px;
  width: 25px !important;
  height: 1px !important;
  background: transparent !important;
  border-bottom: 1px solid #cccccc;
  border-radius: 0 !important;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: transparent !important;
  border-bottom: 1px solid #000000;
}
/*/////SLIDER スプレー館デザインより/////終*/



/*/////howtopaintへようこそのボックス/////始*/
.welcomebox{
  padding:2em;
  margin:0 0 2em;
  color:#565656;
  background:#ebebdc;
  border-radius:8px;
}
.welcomebox p{
  font-size:14px;
}
/*/////howtopaintへようこそのボックス/////終*/



/*/////塗る場所から選ぶの表/////始*/
.top_table1{
  width:100%;
  margin:0 0 1em;
  table-layout:fixed;
}
.top_table1 tr{
  vertical-align:top;
  text-align:center;
}
.top_table1 img{
  width:95%;
}
.top_table1 p{
  font-size:16px;
  text-align:center;
}
/*/////塗る場所から選ぶの表/////終*/



/*/////色や仕上がりから選ぶの表/////始*/
.top_table2{
  width:100%;
  margin:0 0 1em;
  table-layout:fixed;
}
.top_table2 tr{
  vertical-align:top;
  text-align:center;
}
.top_table2 td{
  width:50%;
}
.top_table2 img{
  width:98%;
}
.top_table2 p{
  font-size:14px;
  display:inline-block;
  text-align:left;
  padding:0 0.5em 1.5em 0.5em;
}
/*PC表示の時はフォントサイズ大きくする*/
@media (min-width: 1024px) {
  .top_table2 p{
    font-size: 16px;
  }
}
/*/////色や仕上がりから選ぶの表/////終*/



/*/////商品一覧リストのボックス/////始*/
.top_item_list{
  margin:0 auto;
  text-align:center;
  display:block;
}
.top_item_list ul{
  display:inline-block;
}
.top_item_list li{
  text-align:left;
}
/*/////商品一覧リストのボックス/////終*/



/*/////お知らせボックス/////始*/
/*お知らせボックスデザイン*/
.info_box {
  padding:0.5em 1em;
  margin:2em 0;
  color:#717370;
  background:#f3f7f0;
  border-top:solid 6px #b6c7ab;
  box-shadow:0 3px 4px rgba(0, 0, 0, 0.32);
}
/*お知らせボックスの中身コンテナ*/
.info_box_item{
  padding:0 0.5em 2em 0.5em;
}
/*お知らせボックスのテキスト*/
.info_box p{
  margin:0; 
  padding:0;
}
/*お知らせボックスの見出し*/
.info_box h4{
  text-align:center;
}
/*お知らせボックスの見出し（英字）*/
.info_box_h4script{
  font-size:26px;
  font-family:'Dancing Script', cursive;
}
/*/////お知らせボックス/////終*/

/*//////お役立ちコンテンツ用のカード//////始*/
  /* 全体のコンテナ */
  .top-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /*PC表示: 2列 */
    padding: 20px;
    gap:20px;
  }
  /* 各カード */
  .top-card {
    position: relative;
    border: 1px solid #EEE;
    padding: 10px;
    display: flex;
    gap:10px;
    flex-direction: row; /* PC表示: 画像とテキストが横並び */
    width: 100%;
    box-sizing: border-box; /* パディングを含めてサイズを計算 */
  }
  .top-card img {
    width: 200px;    
  }
  @media (max-width: 768px) {
    /* スマホ表示 */
    .top-card {
      flex-direction: column; /* スマホ表示: 画像とテキストが縦並び */
    }
    .top-card img {
      width: 100%;
    }
  }
/*//////お役立ちコンテンツ用のカード//////終*/









/*/////20241106現在不使用TOPページCSS/////*/
.box_top {
  margin: 1.5em 0 1em 0;
}

.hr_dotted {border-top: 2px dashed #bbb; background: transparent;/*背景透明に*/}

.box_top h2 {
padding: 0em 0.5em 0em 0.5em;/*上下 左右の余白*/
margin: 10px 0 10px 0; 
color: #333;/*文字色*/
background: transparent;/*背景透明に*/
border-left: solid 10px #cb7850;/*左線*/
font-size: 24px;}

.box_top h3 {
background: linear-gradient(transparent 65%, #adaa83 65%);
color: #333;/*文字色*/
font-size: 22px;}

.box_top h4 {
border-bottom: solid 3px #9c9869;
color: #333;/*文字色*/
font-size: 20px;
/*線の種類（実線） 太さ 色*/
}

.box_top h5 {
　font-size: 20px;
  color: #333;/*文字色*/
}
  
 
.box_top2 { 
    margin: 5px auto;
}

.box_top2 p{ 
   text-align: center;
}

.box_top2 table {
    margin: 10px auto;
}

.box_top3 { 
	padding: 5px 20px 20px 20px; backGround-color: #fff;
   }

.box_top3 p{ 
   text-align: center;
}

.box_top3 b{ 
  	  font-size: 20px;
   text-align:center;
}

p.about {
  margin-left: 20px;
  margin-right: 50px;
}


.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #5b718f;/*文字色*/
    background: #FFF;
    border: solid 3px #ccdbf0;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.box2 p {
    margin: 0; 
    padding: 0;
}

.box10 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #717370;
    background: #f3f7f0;/*背景色*/
    border-top: solid 6px #b6c7ab;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
}
.box10 p {
    margin: 0; 
    padding: 0;
}
/*/////20241106現在使用していないTOPページCSS/////*/