/* リセット */

body{
  margin: 0;
  padding: 0;  
  font-family: "ヒラギノ明朝 ProN";
}

ul li{
  text-decoration: none;
  list-style: none;
}

button{
  text-decoration: none;
  background-color: inherit;
  border: none;
}

a{
  text-decoration: none;
}


/* Googleフォント接続コード */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');






/* ここから */















/*
:::::::
ヘッダー 
:::::::
*/



#sh{
  width: 97%;
  height: 80px;
  margin: 1.8% 1.5% ;
  position:fixed;
  z-index: 10;
}

#gh{
  width: 93%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

h1 img{
  width: 250px;
     object-fit: cover;
    height: auto;
}



.openbtn{
	position: relative;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 5px;
  z-index: 999;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 0;
    height: 4px;
    border-radius: 5px;
	  background: #fff;
  	width: 100%;
  }


.openbtn span:nth-of-type(1) {
	top:25px;
  width: 50px;
}

.openbtn span:nth-of-type(2) {
	top:35px;
  width: 40px;
}

.openbtn span:nth-of-type(3) {
	top:45px;
  width: 30px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";
	position: absolute;
	top:12px;
	right: 4px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}

.openbtn.active span:nth-of-type(1) {
    top: 25px;
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 85%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 36px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 85%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";
  transform: translateY(0) rotate(-45deg);
	top:15px;
	right:-15px;
}


#g-nav.panelactive{
  position:fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width:100%;
  height: 100vh;
}

.circle-bg{
  position: fixed;
  z-index:1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #C0D8A8 ;
  transform: scale(0);
  top:-50px;
  left:calc(50% - 50px);
  transition: all .6s;
}

.circle-bg.circleactive{
transform: scale(50);
}

#g-nav-list{
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
  display: block; 
}

#g-nav ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 100%;
}

#g-nav.panelactive ul {
  opacity:1;
}

#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#g-nav li{
text-align: center;
list-style: none;
}

#g-nav li a{
color: #FFF;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}

#g-nav-list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width:960px) {
  #g-nav-list ul {
    flex-direction: column;
  }
}

#g-nav-list.panelactive {
  display: block;
}
#g-nav-list.panelactive ul li{
  position: relative;
  width:30%;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width:960px) {
#g-nav-list.panelactive ul li{
  width:48%;
  }
}


@media screen and (max-width:580px) {
#g-nav-list.panelactive ul li{
  width:100%;
  }
}

#g-nav-list li a{
  padding: 15px 20px;
}

#g-nav-list .panelactive ul li::before{
  content:'';
  width:5px;
  height: 5px;
  position: absolute;
  left:-10px;
  top:43%;
}


/* /ヘッダー */










/*
:::::::
top ファーストビュー 
:::::::
*/






#top{
  position: relative;
  z-index: -1;
  width:100%;
  height: 130vh;
  font-family: "HiraMinProN-W3";
}

#slider {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100vh;
}

#slider_text{
  font-weight: bold;
  font-size: min(2rem, 5vw);
  font-family: 'Shippori Mincho B1', serif;
  line-height: 40px;
  width: 100%;
  height: 100vh;
}

#slider_text p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: #fff;
}

#slider_text p span{
    font-size: min(1rem, 3vw);
      color: #fff;
}


/* 動く線の描写 */
#slider_text p::after{
	content: "";
	position: absolute;
	bottom: 0;
  left: 50%;
  z-index: 999;
	width: 0.8px;
	height: 2000px;
	background: #fff;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:200px;
		top:150px;
		opacity: 1;
	}
	30%{
		height:200px;
		opacity: 1;
	}
	100%{
		height:200px;
		top:200px;
		opacity: 0;
	}
}

canvas{
position: absolute;
bottom: 0;
left:0;
width: 100%;
}


/* /トップ（ファーストビュー） */










/*
:::::::
アバウト 
:::::::
*/



.green{
 background-color: rgb(192,216,168);
 width: 100%;
 position: relative;
 top: 0;
}

.green h2{
 color: #fff;
 font-size: 10.5rem;
 position: absolute;
 z-index: 2;
 top: 150px;
 left: 100px;
}

@media screen and (max-width:960px) {
  .green h2{
    font-size: min(5rem, 20vw);
  }
}

#about{
  z-index: 0;
  display: flex;
  justify-content: flex-end;
  padding: 300px 100px 60px;
}

@media screen and (max-width:1280px) {
  #about{
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding: 300px 0 60px;
  }
}

#about img{
  width: 500px;
  max-width: 100%;
  height: 370px;
}

@media screen and (max-width:960px) {
  #about img{
    height: auto;
  }
}

.about_content {
  text-align: center;
}

.about_content text{
  padding: 50px 0;
}
.about_content h3{
  color: #fff;
  margin: 20px auto;
  padding: 10px 0;
  font-size: 2rem;
  text-align: center;
  width: 200px;
  border-bottom: 1px solid #fff;
}

.about_text{
  padding: 5px;
  font-size: 1rem;
}

.about_text p{
 margin: auto;
  width: 350px;
  padding: 0 25px;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  text-align: justify;
}

@media screen and (max-width:1280px) {
  .about_text p{
    width: auto;
  }
}

/* /アバウト  */








/*
:::::::
メニュー 
:::::::
*/



.menu{
 background-color: rgb(192,216,168);
  width: 100%;
  position: relative;
  z-index: 0;
}

.tab{
  justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 768px){
  .tab{
    margin-bottom: 20px;
    gap: 4px 0;
  }
}

.tab li a{
  color: #333;
	display: block;
	background:#ddd;
	margin:0 2px;
	padding:15px 25px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

@media screen and (max-width: 768px){
  .tab li a{
    border-radius: 20px;
  }
}

.tab li.active a{
	background:#fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.area {
  border-radius:100px;
  margin: auto;
  width: 80%;
	display: none;
	opacity: 0;
	background: #fff;
  height: auto;
	padding:50px 20px;
}

@media screen and (max-width:1280px) {
  .area {
    border-radius: 60px;
  }
}

.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}




.menu_ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 20px;
}

.menu_ul li{
  box-sizing: border-box;
  padding: 20px;
  width: 25%;
  text-align: center;
}

@media screen and (max-width:1280px) {
  .menu_ul li{
    width: 50%;
  }
}

@media screen and (max-width: 768px){
  .menu_ul li{
    width: 100%;
  }
}

.menu_ul li h4{
  font-size: 18px;
  margin: 0 auto 10px;
  background-color: rgb(14, 161, 48);
  color: #fff;

}

.menu_ul li img{
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.menu_ul li text{
    font-size: 0.7rem;
}

.menu_ul li table{
margin:  20px auto;
}


.menu_ul li table .price{
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
 justify-content: center;
align-items: center;
width: 100%;
}



.menu_ul li table .price_img img{
width: 50px;
 height: 40px;
 object-fit: cover;
 margin: 0;
 justify-content: center;
}


/* タブ：サラダ */

.srd_content{
display: flex;
justify-content: center;
align-items: center;
width: 80%;
margin: 30px auto;
}

@media screen and (max-width:960px) {
  .srd_content{
    flex-direction: column;
  }
}


.srd_content img{
  width: 400px;
  max-width: 100%;
  border-radius: 20px;
    object-fit: cover;
}

@media screen and (max-width:960px) {
  .srd_content img{
  }

}

.srd_content h2{
  line-height: 30px;
  width: 400px;
  max-width: 100%;
  padding-left: 40px;
}

@media screen and (max-width:960px) {
  .srd_content h2{
    padding-left: 0;
  }
}

#srd .srd_roop{
display: flex;
margin: 50px auto;
 align-items: center;
justify-content: center;
}



#srd .menu_ul{
  margin:  auto;
  width: 100%;
}



#srd .menu_ul li h4{
  background-color: #6f5252;
  color: #fff;
  font-size: 18px;
 
}
#srd .menu_ul li{
height: 200px;
width: 200px;
}
#srd .menu_ul li span{
   font-size: 18px;
}

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


#srd .menu_ul li span{
     display: flex;
}

#srd .menu_ul{
text-align: center;
}
#srd .srd_roop{
display: block;
margin: 50px auto;
text-align: center;
}
}



.yasai{
width: 100%;
height: auto;
}

.yasai img{
width: 100%;
height: auto;
}


/* /メニュー */













/*
:::::::
アクセス 
:::::::
*/



#access{
  background-color: #fff;
  width: 100%;
  height: auto;
  color: #592A34;
  /* display: flex; */
  position: relative;
  padding: 50px 0;
}

#access_title{
  background-color: red;
}
#access h2{
  justify-content: center;
  text-align: center;
  font-family: Impact;
  font-size: 3rem;
  width: 200px;
  margin: auto;
  padding: 40px 0 5px 0;
}

#access h2 div{
  padding: 5px 0;
  font-size: 1rem;
    border-top: 1px solid;
}

#access img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.left_bar{
  position: absolute;
  top:20px;
  left: 200px;
  width: 350px;
}


.right_bar{
  position: absolute;
  top:20px;
  right: 200px;
  width: 350px;
}

.access_area{
  display: flex;
  justify-content: center;
  margin: 80px auto;
}

@media screen and (max-width:960px) {
  .access_area{
    flex-direction: column;
    align-items: center;
  }
}

.area_text{
  width: 450px;
  height: 250px;
  /* background-color: red; */
  padding: 20px;
  line-height: 30px;
}


@media screen and (max-width: 768px){
  .area_text{
    padding: 20px 5%;
  }
}

.area_text h3{
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0;
}

/* <!-- /アクセス --> */





.instagram {
  background: #FFF;
  padding: 20px;
}
.instagram ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 11vw;
  gap: 20px;
}

.instagram_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  color: #592A34;
  font-size: 4vw;
  text-align: center;
}

.instagram_title span {
  display: block;
  margin-top: 1vw;
  padding-top: 1vw;
  border-top: 1px solid #592A34;
  font-size: 1.5vw;
  font-family: Impact;
}

.instagram_box01 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}

.instagram_box02 {
  grid-column-end: span 1;
  grid-row-end: span 2;
}

.instagram_box03 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}

.instagram_box04 {
  grid-column-end: span 2;
  grid-row-end: span 1;
}

.instagram_box05 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}

.instagram_box06 {
  grid-column-end: span 1;
  grid-row-end: span 2;
}

.instagram_box07 {
  grid-column-end: span 2;
  grid-row-end: span 2;
}

.instagram_box08 {
  grid-column-end: span 2;
  grid-row-end: span 1;
}

.instagram_box09 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}

@media screen and (max-width:1280px) {
  .instagram ul {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 17vw;
  }

  .instagram_title {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    font-size: 7vw;
  }
  
  .instagram_title span {
    margin-top: 1.5vw;
    padding-top: 1.5vw;
    font-size: 3vw;
  }

  .instagram_box01 {
    grid-column-end: span 1;
    grid-row-end: span 2;
  }
  
  .instagram_box02 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box03 {
    grid-column-end: span 2;
    grid-row-end: span 1;
  }
  
  .instagram_box04 {
    grid-column-end: span 1;
    grid-row-end: span 2;
  }
  
  .instagram_box05 {
    grid-column-end: span 2;
    grid-row-end: span 1;
  }
  
  .instagram_box06 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box07 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box08 {
    grid-column-end: span 2;
    grid-row-end: span 1;
  }
  
  .instagram_box09 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
}

@media screen and (max-width: 768px){
  .instagram ul {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 32vw;
  }

  .instagram_title {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    font-size: 14vw;
  }
  
  .instagram_title span {
    margin-top: 3vw;
    padding-top: 3vw;
    font-size: 6vw;
  }

  .instagram_box01 {
    grid-column-end: span 1;
    grid-row-end: span 2;
  }
  
  .instagram_box02 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box03 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box04 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box05 {
    grid-column-end: span 1;
    grid-row-end: span 2;
  }
  
  .instagram_box06 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box07 {
    grid-column-end: span 2;
    grid-row-end: span 1;
  }
  
  .instagram_box08 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
  
  .instagram_box09 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
}


.instagram ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}











/*
:::::::
ニュース
:::::::
*/






#news{
  width: 100%;
  position: relative;
  padding: 60px 0;
}


#news_mask{
  border-radius: 60px;
  background-color: rgb(255,255,255,0.6);
  width: 85%;
  margin: 0 auto;
}

.news_title{
  margin:auto;
  align-items: center;
  width: 200px;
  height: 90px;
  justify-content: center;
  text-align: center;
  font-family: Impact;
  font-size: 3rem;
  padding: 40px 0 5px 0;
}

.news_title h2 div{
  padding: 5px 0;
  font-size: 1rem;
  border-top: 1px solid;
}


.news_content{
width: 100%;
justify-content: center;
}

.news_content ul{
  width: 100%;
  max-width: 1000px;
  line-height: 25px;
  margin: auto;
  justify-content: center;
  display: flex;
  text-align: center;
}

@media screen and (max-width:960px) {
  .news_content ul{
    flex-direction: column;
  }
}

.news_content ul li{
  height: auto;
  margin: 30px;
}


.news_content ul li img{
  width: 100%;
  height: auto;
}

/* /ニュース */









/*
:::::::
フッター
:::::::
*/


footer{
  width: 100%;
  background-color: #592A34;
  color: #fff;
  padding: 20px 0 10px;
  text-align: center;
}

footer #f_title{
  line-height: 1.2rem;
  font-size: 0.7rem;
  width: 180px;
  margin: auto;
}

footer .f_sitemap{
  margin: 20px auto;
  width: 80%;
  border-top: 0.3px solid rgb(255,255,255,0.5);
  padding: 15px;
  justify-content: center;
  display: flex;
}

footer .f_sitemap a{
  color: #FFF;
}

@media screen and (max-width:960px) {
  footer .f_sitemap{
    flex-direction: column;
    gap: 20px;
  }
}

footer .f_sitemap li{
  padding: 0 15px;
}

footer small{
font-size: 0.5rem;
}

/* /フッター */

















































@media screen and (max-width: 768px){
  #top{
    height: 110vh;
  }


footer ul{
  border-top: 0.3px solid #fff;
  /* width: 200px; */
  display: block;
  line-height: 30px;
  /* text-align: left; */
}

footer ul li{
  /* margin: auto; */
  text-align: left;
  /* text-align: center;
  padding: 0 10px; */
}



#title{
  position: absolute;
  right: 50px;
  width: 200px;
  height: auto;
  top: 130px;
}

#title img{
  width: 200px;
}


#moji{
  width: 300px;
  font-size: 0.8rem;
  color: #C0D8A8;
  position: absolute;
  top:250px;
  right: 0px;
  line-height: 20px;
}







#kyabe{
  width: 200px;

  bottom: -10px;
  /* top:850px; */
  right: 150px;
}

#kyabe img{
  width: 200px;

}



#tmt{

  width: 200px;

}

#tmt img{
  width: 200px;

}





#m_smoothie{

  display: block;
  padding: 0px 0;
  width: 100%;
  margin: 50px auto;
}



#access{
  /* background-color: #fff; */
  /* width: 100%; */
  /* height: auto; */
  /* color: #592A34; */
  /* display: flex; */
  /* position: relative; */
  padding: 20px 0;
}


#access h2{
  font-size: 2rem;
  width: 200px;
  margin: auto;
  padding: 20px 0 5px 0;
}

#access h2 div{
  padding: 5px 0;
  font-size: 1rem;
    border-top: 1px solid;
}

#access img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.left_bar{
  position: absolute;
  top:20px;
  left: 0px;
  width: 170px;
}


.right_bar{
  position: absolute;
  top:20px;
  right: 0px;
  width: 170px;
}

.areaa{
  display: block;
  justify-content: center;
  margin: 50px auto;
height: auto;
}
.area_text{
  width: 90%;
  margin:auto;
  height: auto;
}

#access iframe{
  width: 90%;
  margin: 20px auto;
}














/* ニュース */

#news{
  width: 100%;
  position: relative;
}


#news_content{
  border-radius: 60px;
  top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 -webkit-transform: translate(-50%, -50%);
 -ms-transform: translate(-50%, -50%);
  position: absolute;
  background-color: rgb(255,255,255,0.5);
  width: 85%;
  height: auto;
}

#news_content ul{
width: 200px;
}

.news_content_title{
  align-items: center;
  text-align: center;
  justify-content: center;
  margin:auto;
  width: 100%;
  display: block;
}
#news h2{
  justify-content: center;
  text-align: center;
  font-family: Impact;
  font-size: 3rem;
  width: 200px;
  margin: auto;
  padding: 40px 0 5px 0;
}

#news h2 div{
  padding: 5px 0;
  font-size: 1rem;
    border-top: 1px solid;
}

.sitagawa{
width: 100%;
justify-content: center;
}
.sitagawa ul{
  width: 500px;
  margin: auto;
  justify-content: center;
  display: flex;
}
.sitagawa ul li{
  width: 100%;
  height: 100px;
  /* height: auto; */
  background-color: red;
  /* margin: 20px; */
}

.sitagawa ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* /ニュース */







}




#eee{
  position: sticky;
}






/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:green;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
  object-fit: cover;
   height: auto;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* レスポンシブ */

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



  .green h2{
    color: #fff;
    font-size: min(5rem, 20vw);
    /* padding: 150px 0 0 100px; */
      position: absolute;
      z-index: 2;
      top: 110px;
      left: 10px;
  }



  #m_smoothie{
    z-index: 0;
    position: absolute;
    right: 0px;
    top: 300px;
    display: flex;
    height: 300px;
  }

  #m_smoothie img{
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .smg text{
    padding: 50px 0;
  }
  .smg h3{
    color: #fff;padding: 30px 0;
    font-size: 1.5rem;
    text-align: center;
    width: 150px;
    margin: auto;


  }
  .smg h3 div{
    border-top: 1px solid #fff;
    padding: 5px;
    font-size: 1rem;
  }
  .smg text p{
    color: #fff;
    text-align: center;
        font-size: 0.7rem;
        margin: 0 20px;
        line-height: 20px;
  }







  /*
:::::::
ニュース 
:::::::
*/







#news{
  width: 100%;
  position: relative;
 }


#news_content{
  border-radius: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  background-color: rgb(255,255,255,0.5);
  width: 85%;
  height: 500px;
  }

  #news_content ul{
  width: 200px;
  }

  .uegawa{
    align-items: center;
    text-align: center;
    justify-content: center;
    margin:auto;
    width: 100%;
    display:flex
  }
  #news h2{
    justify-content: center;
    text-align: center;
    font-family: Impact;
    font-size: 2rem;
    width:150px;
    margin: auto;
    padding: 20px 0 5px 0;
  }

  #news h2 div{
    padding: 5px 0;
    font-size: 1rem;
      border-top: 1px solid;
  }

  .nwes_1 ul{
    display: none;
  }

  .sitagawa{
  width: 100%;
  justify-content: center;
  }
  .sitagawa ul{
    width: 100%;
    margin: auto;
    justify-content: center;
    display: block;
  }
  .sitagawa ul li{
    display: none;
    width: 100%;
    height: 100px;
    /* height: auto; */
    background-color: red;
    /* margin: 20px; */
  }

  .sitagawa ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



}


/* /ニュース */

/* ヘッダー　お問合せフォーム */

.form_back {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0,0.6);
  display: none;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
}

.form_back.open {
  display: block;
}

.form_screen {
  color: #333;
  border-radius: 20px;
  width: 65%;
  height: 85%;
  border: 0.5px solid #000;
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  display: none;
}

.form_screen.open {
  display: block;
}

.modal-close__wrap {
  position: absolute;
  right: 40px;
  top: 20px;
}

.modal-close {
  background: transparent;
  border-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 28px;
  display: block;
  height: 28px;
}

.modal-close span {position: relative;width: 100%;height: 1px;background: black;display: block;}
.modal-close span:nth-child(1) {transform: rotate(45deg);}
.modal-close span:nth-child(2) {transform: rotate(-45deg);}


#form_content{
    font-family: "ヒラギノ明朝 ProN";
  width: 90%;
  height: auto;
  margin: auto;
}

.form_screen h2{
  text-align: center;
  margin: 40px;
  font-size: 1.8rem;
}
#form_content h4{
  color: #fff;
  background-color: blue;
  font-size: 2rem;
}

.kouomoku{
  text-align: center;
  margin: auto;
  margin: 20px 0;
}
.kouomoku p{
    font-size: 1.3rem;
}
.kouomoku span{
  font-size: 1rem;
  color: red;
}


/* /ヘッダーお問合せフォーム */



.contact {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background: #FFF;
}

.contact * {
  box-sizing: border-box;
}

.contact_container {
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 20px;
}

.contact dl dt {
  margin: 0 0 10px;
  font-weight: bold;
}

.contact dl dd {
  margin: 0 0 20px;
}

.contact input,
.contact textarea {
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	line-height: 1.5;
}

.contact textarea {
	vertical-align: bottom;
}

.contact input:focus,
.contact textarea:focus,
.contact button:focus {
	outline: none;
}

.contact_close {
  margin-top: 50px;
  text-align: center;
}

.contact input#contact_close {
  width: 100px;
}











.menu_salad_content h3{
margin: 0 0 0 20px;
font-size:24px;
font-weight: bold;
color: #6f5252;
}

.menu_salad_content span{
font-size:12px;
margin: 0 0 0 20px;
}

#srd .srd_roop .menu_salad_img{
       width: 320px;
        height: 210px;
margin: auto;
}
#srd .srd_roop .menu_salad_img img{
       width: 100%;
        height: 100%;
object-fit: cover;
}

@media screen and (max-width:960px) {
.menu_salad_content h3{
margin: 10px auto;
font-size:20px;
}

.menu_salad_content span{
margin: auto;
}
}

@media screen and (max-width:580px){
#srd .srd_roop .menu_salad_img{
       width: 100%;
        height: 210px;
margin: 0 0 20px 0;
}
}

#srd .menu_ul  .srd_li{
height: 150px;
}
@charset "utf-8";

/*========= レイアウトのためのCSS ===============*/

.wrapper{
	overflow: hidden;
}

.flex{
	display:flex;
	flex-wrap: wrap;
}

.box{
	width: 220px;
	padding: 20px;
	margin:0 20px 20px 0;
	background: #666;
	color: #fff;
	box-sizing:border-box;
}

.bgextend,
.lineTrigger{
	width: 220px;
	padding: 20px;
	margin:0 20px 20px 0;
	box-sizing:border-box;
}


/*==================================================
ふわっ
===================================*/

/* fadeIn */
.fadeIn{
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* fadeUp */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* fadeDown */

.fadeDown{
animation-name: fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* fadeLeft */

.fadeLeft{
animation-name: fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* fadeRight */

.fadeRight{
animation-name: fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


/*==================================================
ぶわっ、ぽんっ、どどんっ
===================================*/

.zoomIn{
	animation-name: zoomInAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
	opacity: 0;
  }

  to {
    transform: scale(1);
	opacity: 1;
  }
}

.zoomInTrigger{
    opacity: 0;
}




/*==================================================
アニメーション設定
===================================*/

/* アニメーションの回数を決めるCSS*/

.count2{
	animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{
	animation-iteration-count: infinite;/*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{
	animation-delay: 0.5s;
}

.delay-time1{
	animation-delay: 1s;
}

.delay-time15{
	animation-delay: 1.5s;
}

.delay-time2{
	animation-delay: 2s;
}

.delay-time25{
	animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/

.change-time05{
	animation-duration: 0.5s;
}

.change-time1{
	animation-duration: 1s;
}

.change-time15{
	animation-duration: 1.5s;
}

.change-time2{
	animation-duration: 2s;
}

.change-time25{
	animation-duration: 2.5s;
}
