/* ページ全体の設定 */
body{
  background-color: #fffaf0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  text-align: center;
}
p{
  font-size: 14px;
  margin: 0;
}
img{
  width: 100%;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
a:hover{
  opacity: 0.7;
  cursor: pointer;
}
figure{
  margin: 0;
}
h2, h3{
  margin: 0;
}

/* トップページの設定 */
.top{
  text-align: center;
}
.top .top-logo{
  margin: 10px 15%;
}

.top .top-logo h1{
  margin: 0;
}
.top .top-logo h1 img{
  width: 20%;
  animation: poyonyon2 4s ease-in-out 1 forwards;
}
@keyframes poyonyon2{
  0%{
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15%{
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30%{
    transform: scale(1.02, 1.0) translate(0.8px);
  }
  50%{
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70%{
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100%{
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100%{
    opacity: 1;
  }
}
/* カレンダー */
.ca{
  display: flex;
  justify-content: space-around;
}
.yasumi{
  width: 40%;
}
.new .text h5{
  margin-top: 0px;
  margin-bottom: 10px;
}
.top p{
  font-size: 20px;
  color: #343434;
}
.top .annai{
  width: 80%;
  height: auto;
  margin: 20px 10% 20px 10%;
}
.top .time{
  display: flex;
  justify-content: center;
}
.top .icon img{
  width: 9px;
  height: 9px;
}
.top p{
  font-size: 12px;
}
.top h4{
  display: inline-block;
  padding: 5px 20px;
  margin-top: 15px;
  margin-bottom: 0;
  background-color: salmon;
  font-size: 12px;
  color: #fffaf0;
  font-weight: normal;
}
.top span{
  color: #E73B3F;
}
/* ご挨拶 */
.goaisatsu{
  margin-top: 20px;
  padding-left: 6%;
  padding-right: 6%;
}
.goaisatsu h2{
  font-size: 20px;
  margin-bottom: 10px;
  color: #fa8072;
}
.goaisatsu h3{
  font-size: 16px;
  font-weight: normal;
}
/* お知らせ */
.oshirase{
  border-radius: 5px;
  background-color: #fa8072;
  margin: 20px 6%;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 20px;
}
.oshirase h2{
  padding: 10px 6% 10px 6%;
  font-size: 20px;
  font-weight: bold;
  color: #fffaf0;
}
.oshirase .nakami{
  border-radius: 5px;
  padding: 20px 5%;
  background: #fffaf0;
}
.oshirase .nakami iframe{
  margin-bottom: 10px;
}
.oshirase .nakami .photo{
  width: 50%;
  margin: 0 auto;
}
.oshirase .nakami img{
  width:100%;
  margin-bottom: 15px;
}
.oshirase .nakami p{
  margin-bottom: 4px;
  font-size: 14px;
  color: #512700;
  text-align: left;
}
.oshirase .nakami .don{
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* PC版：ページトップ */
@media (min-width: 600px){
  
  .top .top-img{
    width: 50%;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .top .top-logo h1 img{
    width: 10%;
  }
  .top .annai{
    width: 30%;
    margin-bottom: 10px;
  }
  .top .insta-ca img{
    width: 80%;

  }
  .oshirase h2{
    font-size: 30px;
  }
  .oshirase .nakami{
    padding-top: 30px;
  }
  .oshirase .nakami img{
    width: 60%;
    margin-bottom: 20px;
  }
  .oshirase .nakami p{
    font-size: 18px;
    text-align: center;
  }
  .oshirase .nakami iframe{
    width: 560px;
    height: 315px;
  }


  /* flex-box */
  .top .flexbox{
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 6%;
  }
  .top .ca{
    width: 40%;
  }
  .top .new{
    width: 40%;
  }
}


/* ナビゲーションメニュー */
.top-nav ul{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.top-nav ul li{
  padding: 4px 15px;
  background-color: #279D6B;
  border-radius: 5px;
}
.top-nav ul li:not(:last-child){
  margin-right: 10px;
}
.top-nav ul li a{
  color: #fffaf0;
  font-size: 10px;
}

/* PC版：ナビゲーションメニュー */
@media(min-width: 600px){
  .top-nav ul{
    margin-top: 30px;
  }
  .top-nav ul li{
    padding: 10px 50px;
  }
  .top-nav ul li:not(:last-child){
    margin-right: 60px;
  }
  .top-nav ul li a{
    font-size: 15px;
  }
}

/* 新メニュースライダー */
.new-menu{
  padding-top: 40px;
  background-color: #fffaf0;
}
.new-menu-info{
  padding: 30px 6%;
  border: solid 2px #fa8072;
  margin: 0px 6% 30px 6%;
  border-radius: 5px;
}
.new-menu h2{
  width: 80%;
  padding: 5px;
  background-color: #fa8072;
  color: lightyellow;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
}
.new-menu-info h3{
  text-align: right;
  margin-right: 0;
  margin-bottom: 5px;
  color: #ff8c00;
  font-size: 20px;
}
.new-menu-info .text{
  text-align: center;
  margin-top: 40px;
  color: #808080;
}
.new-menu-info .text p{
  font-size: 12px;
}
.new-menu-info h4{
  background-color: #555;
  color: whitesmoke;
  padding: 10px 4%;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 16px;
  text-align: center;
}
.new-menu-info h4 a{
  color: whitesmoke;
}
.slick-slide img{
  margin: 0 auto;
}
.slider img{
  width: 80%;
}
.slick-prev{
  left: 10px;
}
.slick-next {
  right: 10px;
}
/* PC:新メニュースライダー */
@media(min-width: 600px){
  .new-menu .gentei{
    display: flex;
    justify-content: space-around;

  }
  .gentei .new-menu-info{
    width: 30%;
  }
}



/* メニュー */
.menu{
  padding: 20px 6%;
  background-color: #FDFBF2;
}
.menu .container{
  padding: 6%;
}
.menu .container h2 .mozi{
  width: 75%;
  height: auto;
  margin-left: -40px;
  margin-right: 4px;
}

.menu .container h2 .tengu{
  margin-top: 100px;
  width: 20%;
  height: auto;
  opacity: 0.5;
  transform: scale(-1,1);
}
/* サルタヤのスープ */
.menu .container .soup h2{
  font-size: 20px;
  color: #E73B3F;
  border-bottom: solid 2px #E73B3F;
  border-top: solid 2px #E73B3F;
  padding-top: 10px;
  padding-bottom: 10px;
}
.menu .container .soup img{
  margin-bottom: 20px;
}
.menu .container .soup h4{
  font-size: 16px;
  text-align: left;
  margin-bottom: 0px;
  margin-top: 0px;
}
.menu .container .soup p{
  font-size: 12px;
  text-align: left;
}
/* PC:サルタヤのスープ */
@media(min-width: 600px){
  .menu .container .soup img{
    width: 50%;
  }
  .menu .container .soup h4{
    font-size: 28px;
  }
  .menu .container .soup p{
    font-size: 24px;
  }
  h2{
    margin-top: 60px;
  }
}


/* メニューリスト */
.menu ul li{
  /* border-top: solid 2px salmon; */
  border-bottom: solid 2px salmon;
  padding: 20px 6%;
  margin-bottom: 20px;
}
.menu ul li h3{
  font-size: 24px;
  font-weight: normal;
  color: #c59c5c;
  margin-bottom: 20px;
  text-align: right;
}

.menu ul li .text p{
  font-size: 12px;
  color: #512700;
  text-align: left;
}
.menu .container h4{
  color: salmon;
  font-size: 12px;
}
.menu .container .btn{
  padding: 5px 10px;
  background-color: #279D6B;
  margin-bottom: 20px;
}
.menu .container .btn a{
  color: #FDFBF2;
}
.menu .container .infoinfo{
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu .container .logo{
  width: 10%;
}
.menu .container .info{
  font-size: 8px;
  color: #272727;
}

/* PC版：メニュー */
@media(min-width: 600px){
  .menu{
    padding-top: 0;
  }
  .menu .container{
    padding-right: 0px;
  }
  .menu .container h2 .tengu{
    width: 10%;
    margin-bottom: 0;
  }
  .menu .container h2 .mozi{
    margin-left: -150px;
    width: 40%;
  }
  .menu ul{
    margin-top: 30px;
    display: flex;
    justify-content: space-around
  }
  .menu ul li{
    width: 30%;
    border-bottom: none;
    padding-left: 2%;
    padding-right: 2%;
  }
  .menu .text p{
    padding-right: 5%;
    padding-left: 5%;
  }
  .menu .container .btn{
    display: block;
    width: 30%;
    margin: 0 auto;
  }
  .menu .container .infoinfo{
    margin-top: 20px;
  }
  .menu .container .logo{
    width: 9%;
  }
  .menu .container .info{
    font-size: 24px;
    color: #512700;
    margin-left: 20px;
    margin-right: 20px;
  }
  .menu .container h4{
    font-size: 24px;
  }
  .menu .container .btn a{
    font-size: 24px;
  }
}

/* アクセス */
/* おばんざい */
.obanzai{
  margin-top: 60px;
  padding: 0px 6% 20px 6%;
}
/* カレンダー */
.access .photo{
  margin-bottom: 40px;
}
.access p img{
  width: 8px;
  height: auto;
  margin-right: 1em;
}
.access .add figure{
  margin: 20px;
}
.access p{
  font-size: 18px;
  align-items: center;
  text-align: right;
  color: #E73B3F;
  margin-right: 15%;
}
.access .saru{
  display: inline-block;
  width: 60%;
  text-align: right;
}
.access .tell{
  font-size: 20px;
}
.access .baito{
  margin-top: 10px;
  text-align: center;
}
.access .baito img{
  width: 40%;
  height: auto;
  margin-right: 20px;
}
.access .baito .baito-tengu{
  width: 15%;
  height: auto;
  transform: scale(-1,1);
  margin-bottom: -10px;
}
.access .sns{
  width: 50%;
  margin: 20px auto;
}



/* PC版：アクセス */
@media(min-width: 600px){
  .obanzai{
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .obanzai img{
    width: 60%;
    height: auto;
  }
  .access{
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 28px;
  }
  .access .photo{
    width: 40%;
    margin: 20px auto;
  }
  .access iframe{
    width: 60%;
    height: 200px;
  }
  .access .add figure{
    margin-top: 100px;
  }
  .access p img{
    width: 16px;
  }
  .access p{
    font-size: 24px;
    margin-right: 20%;
  }
  .access .tell{
    font-size: 30px;
  }
  .access .baito img{
    width: 20%;
    margin-right: 0px;
  }
  /* .flexbox2{
    display: flex;
    justify-content: space-around;
  }
  .box-a{
    width: 68%;
  }
  .box-b{
    width: 30%;
  } */

}

/* さるたや工房 */
/* .saltaya .saltaya-kobo{
  width: 50%;
  margin: 30px auto;
}
.saltaya .catch{
  margin-left: 6%;
  margin-right: 6%;
}
.saltaya h3{
  font-size: 18px;
  margin-bottom: 20px;
}
.saltaya .catch p{
  margin-left: 10%;
  margin-right: 10%;
  font-size: 12px;
}
.saltaya .pazzle{
  transform: rotate(-30deg);
  width: 55%;
  opacity: 0.5;
  margin-top: -50px;
}
.saltaya .hope{
  margin-top: -50px;
} */
/* さるたや工房リスト */
/* .saltaya{
  background-color: lightyellow;
  padding-bottom: 50px;
  padding-top: 30px;
}
.saltaya .saltaya-list{
  margin-top: 30px;
}
.saltaya .saltaya-list ul{
  display: flex;
  justify-content: space-around;
}
.saltaya .saltaya-list ul li{
  width: 15%;
  flex: none;
  text-align: center;
}
.saltaya .saltaya-list ul li .icon{
  border-radius: 50%;
}
.saltaya .saltaya-list ul li p{
  color: #fa8072;
  font-size: 10px;
  margin: 0;
}

@media(min-width: 600px){
  .saltaya{
    text-align: right;
  }
  .saltaya .saltaya-kobo{
    width: 20%;
    margin-right: 6%;
  }
  .saltaya .pazzle{
    display: none;
  }
  .saltaya .hope{
    margin-top: 0;
  }
  .saltaya .catch p{
    margin-right: 0;
  }
  .saltaya .saltaya-list ul{
    justify-content: flex-end;
  }
  .saltaya .saltaya-list ul li{
    width: 8%;
    margin-right: 10px;
  }
  .saltaya .saltaya-list ul li p{
    font-size: 8px;
  }
} */

/* スタンプ */
/* .stamp{
  background-color: lightyellow;
}
.stamp-info{
  padding: 30px 6%;
  border: solid 2px #fa8072;
  margin: 0px 6% 30px 6%;
  border-radius: 5px;
}
.stamp-info h2{
  padding: 5px;
  background-color: #fa8072;
  color: lightyellow;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
}
.stamp-info h3{
  text-align: right;
  margin-right: 0;
  margin-bottom: 5px;
  color: #ff8c00;
  font-size: 12px;
}
.stamp-info .text{
  text-align: center;
  margin-top: 40px;
  color: #808080;
}
.stamp-info .text p{
  font-size: 12px;
}
.stamp-info h4{
  background-color: #555;
  color: whitesmoke;
  padding: 10px 4%;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 16px;
  text-align: center;
}
.stamp-info h4 a{
  color: whitesmoke;
}
.slick-slide img{
  margin: 0 auto;
}
.slider img{
  width: 80%;
}
.slick-prev{
  left: 10px;
}
.slick-next {
  right: 10px;
} */







/* フッター */
.copy{
  background-color: salmon;
  padding: 20px;
}
.copy small{
  font-size: 6px;
  color: #FDFBF2;
}
.access .sns{
  width: 70%;
}

