@charset "UTF-8";

/*すべてのページに適用される*/
body {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background-color: #ffffff;
}

.wrapper {
  margin:0 auto 0 auto;
  width: 90%
  
}


h2 {
  color: #442220;
  font-size: 18px;
  border-bottom-width: 2px;
  border-bottom-style: dotted;
  border-bottom-color: #442220;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  display: flex; 
  flex-wrap: wrap;
}

h2 img {
 height: 20%; 
 width: 20%;
}



p {
  line-height: 160%;
}
a:link {
  color: #0000bb;
  text-decoration: none;
}
a:visited {
  color: #aa2a66;
}
a:hover {
  color: #4faacc;
}
a:active {
  color: #6a3add;
}

h1 {
  text-align: center;
  margin: 15px 0 10px 0;
  padding: 0 0 0 0;
  line-height: 0;
  background-color: #f9f9f9;
  background-size: auto;

}

h3 {
  font-size: 1rem;
}


img {
  
  border-style: none;
  width: 100%
}


#logo img {
 width: 80%;
}

.sale {
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #442220;
	margin-bottom: 20px;
}

.red {
	color: #ff0000;
}







.flexorder-box {
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	
}

@media only screen and (max-width: 1000px){


#navi {
  display: none;
}
}





/*すべてのページに適用- naviまわり-*/


/* 以前のメニュー

.navi-wrap {
	position: relative;
}

#navi {
  width: 100%;
  background: #eeeeee; /* メニューの背景色 */

/*

  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */

/*
	
}

#navi ul {
  font-size: 20px;
  list-style-type: none;
  padding-right: 20px; /* 右側の固定分余白を空ける */


/*

  padding-left: 20px;
   /*max-width: 2800px; メニューの最大幅 */


/*


  width: 1200px;  /*メニューの最小幅 */

/*
  height: 26px;
  line-height:26px;
  margin: 0 auto;
}

#navi li {
   float: left;
   width: 150px; /* メニューの個別の幅 */

/*

   text-align: center;
}

#navi li + li {
    border-left: 2px solid #aa2a66;
    box-sizing: border-box;
}

#navi li :visited {
  color: #aa2a66;
}

#navi li :hover {
 background: #4faacc; /* マウスホバー時の背景色 */

/*

}


#navi li a {
  display: inline-block;
  color: #0000cc;  /* メニューの文字色 */

/*

  text-decoration: none;
}

.btn { /* 左側に固定する部分 */

/*

  position: absolute;
  top: 0;
  left: 0;
  width: 20px;  /* 固定部分の幅 */

/*

  height: 26px;  /* メニューの高さに合わせる */

/*

  line-height: 26px;
  background: #cccccc;
  font-size: 2rem;
  
}



.next-btn { /* 右側に固定する部分 */

/*

  position: absolute;
  top: 0;
  right: 0;
  width: 20px;  /* 固定部分の幅 */

/*

  height: 26px;  /* メニューの高さに合わせる */

/*

  line-height: 26px;
  background: #cccccc;
  font-size: 2rem;
  
}

*/

/* ハンバーガーメニューのスタイル */


  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 20px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    top: 0px;
    left: -5px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 12px;
    width: 20px;
    position: absolute;
    top: 17px;
    left: 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin:0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 50vh;
    max-width: 100px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }



  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(30deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-30deg);
  }



/*newitem*/

.shin {
	font-size: 1rem;
}
.newitem {
	display: flex;
	justify-content:space-around;
	flex-wrap: wrap;
	margin-right: 30px;
	}

.newitem li {
	list-style-type: none;
	width: 50%;
	height: auto;

}

.newitem img {
	width: 90%;
}


/*すべてのページに適用-footer-*/


.footer {
  display: flex;
  flex-wrap: wrap;
  background-image: url(../image/Prick.gif);
  background-repeat: repeat-x;
  margin-top: 30px;
  padding: 20px 0 20px 0;
  font-size: smaller;
  color: #440000;
  
}

/*個別のスタイル*/
/*index.html*/
.hyo {

  margin: 20px 0 0 0;
}

.news_item {
  margin: 0 0 0 0;
  color: #440000;
}
/*about.html*/

.gmap {
  position:relative;
  width:100%;
  height:0;
  padding-top:75%;
}

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

/*annai.html*/

.annai {
  text-align: center;
  padding-right: 1em;
}

.annai img {
  width: 80%;
}


table.toia {
  border-collapse: collapse;
  border: 1px solid #666666;
  text-align: left;
  

}
table.toia th, table.toia td {
  padding: 6px 2px 6px 4px;
	border: 1px solid #999999;  
    vertical-align: middle;
	
}
/*#form th {
  background-color: #c99e73;
  color: #442220;
  
}
*/
table.toia th {
       background-color: #eeeeee;
    color: #442220;
	
}

/*shop_PC.html*/

 
.item {
	display: flex;
	justify-content:space-around;
	flex-wrap: wrap;
	margin: 5px;
	padding: 0 0 0 0;
	
}

.item li {
	list-style-type: none;
	width: 33%;
	height: auto;

}

.item img {
	width: 70%;
}



.shohin {
    text-align: center;
        margin: 5px;
	order: 1;
}

.syosai {
	font-size: 20px;
        margin: 5px;	
	order: 3;
}

.shop_under {
	order: 2;
}





input[type='image'] {
    width: 40%;	
    height: 50%;
}

select {
 font-size: 20px;

}

@media only screen and (max-width: 1000px){

.link img{
   width:5%
}
}

.news_item {
 font-size: 18px;

}

.link {
 font-size: 18px;

}

/* ask2.html*/

#form {
font-size: 1rem;
}



