@charset "utf-8";

body {
  background-color: #ffedd3;
  color: #51422a;
}
#footer {
  background-color: #d9d9d9;
  width: 100vw;
  height: 250px;
  margin: 0 auto;
  padding: 30px;
}
.sns {
  display: flex;
  width: 150px;
  margin: 0 auto;
  justify-content: space-between;
}
.sns img {
  width: 24px;
}

#g-nav {
  display: block;
}
.cl-logo img {
  width: 195px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 10%);
}
.headerlogo {
  display: flex;
  margin: 0 auto;
  width: 1080px;
  text-align: center;
  justify-content: space-evenly;
}
.symbol-top img {
  width: 102px;
  height: 115px;
  margin: 50px 0 0 0;
  /* background-color: blue; */
}

.logo-top img {
  /* background-color: #bb2c2c; */
  width: 652px;
  height: 112px;
  margin: 50px 20px 0 20px;
}
.top-logo img {
  width: 60vw;
  /* height: 15vh; */
  margin: 10px;
}

.top-img img {
  width: 100vw;
  /* height: 85vh; */
}
.logo img {
  width: 195px;
}
.symbol-sm img {
  width: 40px;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #ffedd3;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 65%;
  left: 48%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

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

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

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  left: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

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

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*=================
スライダーのためのcss
==================*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 45vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  /*  */
  /*  */
}
/*　背景画像設定　*/

.slider-item01 {
  background: url(../img/food1.jpg);
}

.slider-item02 {
  background: url(../img/food2.jpg);
}

.slider-item03 {
  background: url(../img/food3.jpg);
}

.slider-item04 {
  background: url(../img/drink1.jpg);
}

.slider-item05 {
  background: url(../img/drink2.jpg);
}

.slider-item06 {
  background: url(../img/drink3.jpg);
}

.slider-item07 {
  background: url(../img/desert1.jpg);
}

.slider-item08 {
  background: url(../img/desert2.jpg);
}

.slider-item09 {
  background: url(../img/desert3.jpg);
}

.slider-item10 {
  background: url(../img/d_food1.jpg);
}

.slider-item11 {
  background: url(../img/d_food2.jpg);
}

.slider-item12 {
  background: url(../img/d_food3.jpg);
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 70vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  margin-top: 30px;
  margin-bottom: 100px;
  /*  */
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
}

.col {
  margin-bottom: 50px;
}

/*矢印の設定*/

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 80%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 15%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -180px 0 0 0; /*ドットの位置*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff; /*ドットボタンの色*/
}

/* .slick-dots .slick-active button { */
/* background: #333; ドットボタンの現在地表示の色 */
/* } */

/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}

/*画像の切り替えと動き*/
#page-top a {
  /*aタグの形状*/
  display: block;
  width: 100px;
  height: 100px;
  /* color: #333; */
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  /*背景画像の指定*/
  /* background: url('https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/8-1-8/img/pagetop_1.png') no-repeat center; */

  background: url(../img/wanko-rocket.png) no-repeat center;
  background-size: contain;
}

#page-top.floatAnime a {
  width: 100px;
  height: 130px;
  /*背景画像の指定*/
  /* background: url('https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/8-1-8/img/pagetop_2.png') no-repeat center; */

  background: url(../img/wanko-rocket-boost.png) no-repeat center;
  background-size: contain;
  /*アニメーションの指定*/
  animation: floatAnime 2s linear infinite;
  opacity: 0;
}

@keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}

/*Page Topと書かれたテキストの位置*/
#page-top span {
  position: absolute;
  bottom: -20px;
  right: 20px;
  color: #666;
}
small {
  color: #51422a;
}
.welcome02 {
  width: 700px;
  height: 370px;
  background-color: #ffff;
  opacity: 0.8;
  border-radius: 40px;
  margin: 100px auto;
  text-align: center;
  padding: 50px;
}
.welcome {
  background-image: url(../img/dog_circle.png);
  height: 900px;
  padding: 150px;
}
#news,
#about,
#menu,
#access,
#contact {
  width: 1080px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  background: none;
}
.h2logo {
  width: 450px;
  display: flex;
  text-align: center;
  margin: 0 auto;
  justify-content: space-evenly;
  padding-bottom: 20px;
}
.logo {
  display: flex;
  width: 430px;
  margin: 0 auto;
  text-align: center;
  vertical-align: bottom;
}
.aisatsu {
  width: 650px;
  text-align: center;
  margin: 0 auto;
  line-height: 40px;
}
.logo h2 {
  font-size: 32px;
}
.logo img {
  width: 195px;
}
.top-img img {
  width: 100vw;
}
.menu-haichi {
  display: flex;
}
.jyusho {
  width: 1080px;
  display: flex;
  margin: 0 auto;
}
table {
  margin-right: 50px;
  width: 480px;
  height: 250px;
}
h2 {
  margin: 10px;
}
.welcome02 .logo img {
  height: 40px;
  margin: 10px;
}
.copyright {
  text-align: center;
  margin-bottom: 0px;
}
#footer li {
  list-style: none;
}

/*  */
.wrapper {
  width: 100%;
}
.menu-in {
  display: flex;
  /* margin-top: 80px; */
}

.menu-text {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 100px;
}
.menu-text h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 15px;
}
.menu-text td {
  text-align: left;
  padding: 10px 0 10px 20px;
  width: 65vw;
}
.menu-text th {
  text-align: right;
  padding-right: 80px;
  width: 35vw;
}

.address {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: left;
}
.address table tr td {
  padding-left: 30px;
}
.date {
  text-align: left;
}
.btn01 {
  /* 松本クラス名変更0327 */
  width: 130px;
  border-radius: 5px;
  background-color: #e5bd7e;
  margin: 0 0 20px auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn01:hover {
  background-color: #ca9851;
}
.btn01 a:hover {
  color: #d9d9d9;
}
.btn01 a {
  text-decoration: none;
  color: #51422a;
}
.title {
  font-weight: bold;
}
#footer li a {
  text-decoration: none;
  /* font-weight: bold; */
  color: #51422a;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer li a:hover {
  color: #e08a00;
}
#footer .sns a:hover {
  transform: scale(1.2);
}
/* -------------------
　　レスポンシブデザイン1200
---------------------- */

@media (min-width: 1200px) {
  .delete {
    display: none;
  }
}

@media (max-width: 576px) {
  .gmap {
    display: none;
  }
}
@media (min-width: 576px) {
  .delete-sp,
  .gmap-sp {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  #news,
  #about,
  #menu,
  #access,
  #contact {
    width: 700px;
    margin: 0 auto;
  }
  .menu-text {
    margin-bottom: -80px;
    margin-top: 30px;
  }
  .row {
    margin-bottom: 50px;
  }
  .slick-prev,
  .slick-next {
    top: 60%;
  }
  .address {
    width: 800px;
    margin: 0 auto;
    display: block;
    justify-content: space-around;
    text-align: left;
    padding: 20px 0;
  }
  .welcome {
    background-image: url(../img/dog_circle700.png);
    /* height: 900px; */
    width: 700px;
    height: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
  }
  .welcome02 {
    width: 700px;
    height: 470px;
    background-color: #ffff;
    opacity: 0.8;
    border-radius: 40px;
    margin: 0 130px 0 0;
    text-align: center;
    padding: 50px;
  }
  .headerlogo {
    /* display: flex; */
    /* margin: 0 auto; */
    width: 100%;
    /* text-align: center; */
    /* justify-content: space-evenly; */
  }
  table {
    margin-bottom: 50px;
  }
  .slider-item {
    margin-top: 0px;
    height: 60vh;
  }
}

/* -------------------
　　レスポンシブデザイン576
	 ------------------- */

@media screen and (max-width: 576px) {
  #news,
  #about,
  #menu,
  #access,
  #contact {
    width: 400px;
    margin: 0 auto;
  }
  .aisatsu {
    width: auto;
  }

  .menu-text {
    margin-bottom: -80px;
    margin-top: 30px;
  }
  .row {
    margin-bottom: 50px;
  }
  .slick-prev,
  .slick-next {
    top: 60%;
  }
  .address {
    width: 100%;
    margin: 0;
    display: block;
    justify-content: space-around;
    text-align: left;
    padding: 20px 0;
  }
  .gmap {
    /* margin-right: 5px; */
  }
  .welcome {
    background-image: url(../img/dog_circle576.png);
    /* height: 900px; */
    width: 100%;
    height: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
  }
  .welcome02 {
    width: 100%;
    height: 470px;
    background-color: #ffff;
    opacity: 0.8;
    border-radius: 40px;
    margin: 0 130px 0 0;
    text-align: center;
    padding: 5px;
  }
  .headerlogo {
    /* display: flex; */
    /* margin: 0 auto; */
    width: 100%;
    /* text-align: center; */
    /* justify-content: space-evenly; */
  }
  table {
    margin-bottom: 50px;
    width: 380px;
  }
  .slider-item {
    margin-top: 0px;
    height: 60vh;
  }
  .logo {
    display: contents;
    width: 400px;
  }
  .h2logo {
    width: 350px;
  }
}
