
#wrap{width: 100%;}



.sec_gnavi {
  width: 100%;
  max-width: 500px;
  margin:0 auto;
  padding:30px;
  font-size: 1.5rem;
}

.sec_gnavi_box {
  display: flex; /*子要素を横並びにするには、親要素に display: flex; を指定*/
/*display: inline-flex; インライン要素に使うのであれば、親要素に display: inline-flex; を指定*/
  flex-direction: row; /*子要素をどの方向に配置していくかを指定row-reverse column column-reverse*/
  flex-wrap: wrap; /*子要素が親要素の幅を超えてしまった場合、折り返して複数行に配置*/
  justify-content: space-around;/*親要素に空きスペースがあった場合、子要素を水平方向のどの位置に配置するかを指定*/
  align-items: center;/*親要素に空きスペースがあった場合、子要素を垂直方向のどの位置に配置するかを指定*/
  align-content: space-around;/*子要素が複数行に渡った場合の垂直方向の揃えを指定*/

}
.card_tit{
  font-size: 2.5rem;
  line-height: 3.5rem;
  padding:30px 30px 30px 30px;
  text-align: center;
}


#item_area{
  width: 100%;
  max-width: 1220px;
  margin: 10px auto;
  display: flex; /* flexbox */
	flex-wrap: wrap; /* 折返し指定 */
}

.sample1 {
	width:			280px;
	height:			188px;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;	/* 相対位置指定 */
  display: flex;
}
.sample1 .caption {
	font-size:2rem;
    width: 100%;
    max-width: 150px;
    line-height: 2rem;
	text-align: center;
	padding:10px;
    margin:10px auto;
    border-bottom:1px solid #fff;
    background-color: none;
	color:#fff;
}
.sample1 p.con_txt {
	font-size:150%;
    line-height: 2rem;
	text-align: center;
	color:#fff;
}

.sample1 p.con_txt {
	font-size:150%;
    line-height: 2rem;
	text-align: center;
	color:#fff;
}
.sample1 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;	/* 絶対位置指定 */
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.sample1:hover .mask {
	opacity:		1;	/* マスクを表示する */
}

.button {
    position: relative;
    width: 100%;
    max-width:150px;
    padding: .9em 1em;
    background-color: none;
    border: 1px solid #fff;
    color: #fff;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
  }
  .button a{color:#fff;}
  
  .button::after {
    position: absolute;
    top: 50%;
    right: .2em;
    content: '';
    margin-top: -5px;
    border: 7px solid transparent;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-color: #fff;
    transition: all .2s;
  }
  .button:hover::after {
    right: -.05em;
  }


  .slide_area{
    margin:50px auto 50px ;
  }



/* section_name */
#section_name{

    padding-top: 80px;
    margin-top: -80px;
}



.sec_tit{
    margin: 0 auto 50px;
    padding:0 10px;
    text-align:center;
	}




  .col2 {
    display: flex;
  }
  
  .col2 .item_box {
    width: calc(100% / 2);
 
  }
  .txt_area{
    padding:30px;
  }

  .item_tit{
font-size: 1.8rem;
letter-spacing: 0.1rem;

  }
  .txt{
    padding:30px 0;
  }

.gradient{
width: 100%;

}

.sec_gnavi {
  width: 100%;
  max-width: 700px;
  margin:0 auto;
  padding:30px;
  font-size: 1.5rem;
}

.sec_gnavi_box {
  display: flex; /*子要素を横並びにするには、親要素に display: flex; を指定*/
/*display: inline-flex; インライン要素に使うのであれば、親要素に display: inline-flex; を指定*/
  flex-direction: row; /*子要素をどの方向に配置していくかを指定row-reverse column column-reverse*/
  flex-wrap: wrap; /*子要素が親要素の幅を超えてしまった場合、折り返して複数行に配置*/
  justify-content: space-around;/*親要素に空きスペースがあった場合、子要素を水平方向のどの位置に配置するかを指定*/
  align-items: center;/*親要素に空きスペースがあった場合、子要素を垂直方向のどの位置に配置するかを指定*/
  align-content: space-around;/*子要素が複数行に渡った場合の垂直方向の揃えを指定*/

}



/**/
.item


.item1 { order: 2; }/*order任意の順で並べ替え*/
.item2 { order: 3; }
.item3 { order: 1; }

/*親要素に余ったスペースがあった場合、指定のある子要素が他の子要素に対してどれくらい伸びるかを指定*/
/*
.item2 { flex-grow: 3; }
.item1 { flex-grow: 2; }
.item3 { flex-grow: 1; }
*/
/*flex-grow と逆で、親要素に余ったスペースがなくすべての子要素が入り切らない場合、指定のある子要素が他の子要素に対してどれくらい縮むかを指定*/
/*
.item1 { flex-shrink: 2; }
.item2 { flex-shrink: 3; }
.item3 { flex-shrink: 1; }
*/

/*子要素に対し width と同じように幅の値を指定*/
.item1 { flex-basis: auto; }
.item2 { flex-basis: 200px; }
.item3 { flex-basis: 30%; }


/*親要素に空きスペースがあった場合、子要素を垂直方向のどの位置に配置するかを指定*/
/*
.item1 {
  align-self: flex-end;
}
*/

#section_02{
  margin:0 0 30px 0;
}



#section_02 .card {
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}


#section_02 .card_item{
  width:50%;
}
#section_02 .card_txtarea{

  display: flex;
  justify-content: center;
  align-items: center;
/* border:1px solid #f0efef;*/

}
#section_02 .card-thumbnail {
  width: 100%;
}

#section_02 .card-img {
    display: block;
    width: 100%;
    object-fit: cover;

}

#section_02 .card-caption {
  margin: 30px auto;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

#section_02 .card_tit{
  font-size: 2.3rem;
  padding:30px 30px 30px 30px;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 3.3rem;
  text-align: left;
}

#section_02 .card_txt{
  font-size: 1.8rem;
  padding:0px 30px 30px 30px;
  line-height: 2.8rem;
  text-align: left;

}


/* 偶数番目に登場する.cardは右から左に要素が配置されるようにする */

#section_02 .card:nth-child(even) {
  flex-direction: row-reverse;
}




 #section_03 .card {

  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto ;
}


#section_03 .card_item{
 /* width : calc(100% / 3) ;*/
 width:32%;
 margin:30px 0 ;
}

#section_03 .card-thumbnail {
  width: 100%;
}

#section_03 .card-img {
    display: block;
    width: 100%;
    max-height:350px;
    object-fit: cover;

}

#section_03 .card-caption {

  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

#section_03 .card_tit{
  font-size: 2rem;
  padding:30px 30px 30px 30px;
}

#section_03 .card_txt{
  font-size: 1.5rem;
  padding:0px 30px 30px 30px;
  text-align: left;
}


/* 偶数番目に登場する.cardは右から左に要素が配置されるようにする */

#section_03 .card:nth-child(even) {
  flex-direction: row-reverse;
}


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


  .card_tit{
    font-size: 2.2rem;
    line-height: 3.2rem;
    padding:30px 30px 30px 30px;
    text-align: left;
  }


  #section_02 .card {
    display:block;
  }
  #section_02 .card_tit{
    font-size: 2.1rem;
    line-height: 3rem;
    padding:0 30px 30px 30px;
    text-align: left;
  }

  #section_02 .card_item{
    width:100%;
  }

  #section_02 .card-img {
    display: block;
    width: 100%;
    object-fit: cover;
}

  #section_03 .card{
    display:block;
  }

  #section_03 .card_item{
    width:100%;
  }
}










/*btn基本*/

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
/*////////btn基本*/

/*btn基本*/

.btn_area{
  width: 100%;
  margin:0 auto;
 
}

a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  display: inline-flex;
align-items: center;
}

a.btn-border:hover {
  color: #fff;
  background: #000;
}

@media screen and (max-width:480px) {
  .card {
    display:block;
  }

  .card_item{
    width:100%;
  }
}

table.table02 {
	width:90%;
	max-width: 900px;
	margin:50px auto 50px;
	border-right:#dedede solid 1px;
	border-collapse: collapse;
  border-top:#dedede solid 1px;
}
table.table02 caption {
  font-size: 2.5rem;
  line-height: 3.5rem;
  margin:30px auto;


}



table.table02 thead th {
	background:#dedede;
	color:#000;;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
  border-top:#FFF solid 1px;
}
table.table02 thead th:last-child {
	border-right:#dedede solid 1px;
}
table.table02 tbody th {
	background:#dedede;
  width: 130px;
	color:#000;
	padding:10px 15px;
	border-bottom:#FFF solid 1px;
  font-size: 16px;
    line-height: 2.5rem;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    letter-spacing: 0.1rem;
}
table.table02 tbody tr:last-child th {
	border-bottom:#dedede solid 1px;
}
table.table02 tbody td {
	background:#FFF;
	border-left:#dedede solid 1px;
	border-bottom:#dedede solid 1px;
  font-size: 16px;
  line-height: 2.5rem;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  letter-spacing: 0.1rem;
}

table.table02 tbody td p{
	text-align: left;
}
 
@media screen and (max-width: 640px) {
table.table02 thead {
	display:none;
}
table.table02 tbody th {
	display:block;
  width: 100%;
}
table.table02 tbody td {
	display:block;
}
table.table02 tbody td::before {
	content: attr(label);
	float: left;
	clear:both;
	font-weight:bold;
}

}


img.img_wide {
  width: 100%;
  height: 400px;
  object-fit: cover;/*object-fit: cover;高さを固定し横幅いっぱいに可変*/
  object-position:80% 60%;
}

/* special */ 
#special{ background-image: url("../common/img/bg_02.jpg"); background-repeat: repeat;}

.img_tit{
  position: absolute;
  width: 400px;
  height:100px;
  margin:30px 0 0 0;
  background:rgba(255, 255, 255, 0.80);
  /*background-image: url("../common/img/sikaku.jpg");*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img_tit p{
font-size: 3rem;
line-height:4rem ;
}

@media screen and (max-width:680px) {
  .img_tit{
    position: absolute;
    width: 300px;
    height:80px;
  }

.img_tit p{
font-size: 2rem;
line-height:2.5rem ;
  }

}    
/* ///special */ 

/* kodawari*/ 
#kodawari{ background-image: url("../cuisine/img/omoi_bg.png"); background-size: 100%; background-repeat: no-repeat;}

/* #kodawari{ background-image: url("../common/img/bg01.png"); background-size: 100%; background-repeat: no-repeat;}*/

#kodawari02{background:#eceae0;
  margin-top:50px; background-image: url("../cuisine/img/omoi_bg.png"); background-size: 100%; background-repeat: no-repeat;}

/* /// kodawari*/

/*---price---*/

.price{
  width:100%; max-width:750px;
  border-collapse: collapse;border-spacing: 0;margin-bottom: 20px;border-top:#c5a9b0 solid 1px;
  margin: 30px auto;
}
.price caption{ font-size: 2.5rem; margin:30px;}
.price th{
  text-align: left;
  width: 50%;
}
.price th,
.price td{
  padding:10px 20px; border-bottom:#c5a9b0 solid 1px; vertical-align:top;
  vertical-align: middle;
}

.price td{
  text-align: right;
  font-size: 1.5rem;
}
.tax{font-size: 13px; margin-left: 5px; vertical-align: 1px;}


#day_cuisine{background:#eceae0;}

.card_area{
  width: 100%;
  padding:10px 0 50px 0 ;
  }
  
  .card {
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto ;
 
  }
  .dayitem{ background: #fff; margin:30px auto;}

  .card_item{
    width:50%;
  }
  
  .card-thumbnail {
    width: 100%;
  }
  
  
  .card-thumbnail img{
    width: 95%;
  }
  
  
  .card-img {
      display: block;
      width: 100%;
      object-fit: cover;
  
  }
  
  .card-caption {
  
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .card_tit{
    font-size: 2.5rem;
    padding:30px 30px 30px 30px;
    text-align: center;
  }

  .card_txt_tit{
    display:inline-block;
    background:#999;
    color:#fff;
    padding:3px 10px;
    margin:0 0 5px 0;
  }


  .card_price{
    font-size: 1.8rem;
    padding:0px 30px 50px 30px;
    text-align: center;
  }
  
  .card_txt{
    font-size: 1.6rem;
    padding:0px 30px 50px 30px;
    text-align: center;
  }
  
  
  /* 偶数番目に登場する.cardは右から左に要素が配置されるようにする 
  
  .card:nth-child(even) {
    flex-direction: row-reverse;
  }
  */
  
  @media screen and (max-width:480px) {
    .card {
      display: block;

    
    }
    .card_item{
      width:100%;
    }
    .card-thumbnail img{
      width: 100%;
    }
    
  
    .card_txt{
     text-align: left;
    }
  }
  
  .left{text-align: left;} 

.okosama{width: 100%; max-width: 900px; margin: 20px auto 0; padding:20px 3px 20px 3px; text-align: center; align-items: center; border:3px solid rgb(204, 203, 200);}

.dayuse{width: 100%; background: #f3f1f1; margin: 20px auto 0; padding:20px 0 0 0; text-align: center; align-items: center; }

  
  

