@charset "utf-8";

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "UD デジタル 教科書体 NP-R",YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
  }

  img {
    display: block;
  }

  a {
    text-decoration: none;
  }

  li {
    list-style-type: none;
  }

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

  /* スマホだけ表示のもを消す */
  .sp{
    display: none;
  }
  p{
  color: #483131;
  }

   #header {
    background-color:#e8e6e6 ;
    padding: 30px 30px 0px 30px;
    /* 背景色を反映させるため親要素にoverflow: hidden;つける */
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    
  }
   h1{
    width: 35%;
    float: left;
    margin: 0;
    padding: 0;
   }

  #gnav {
    float: right;
    width: 45%;
  }
  /* #gnav img{
    text-align: right;
  } */
  #gnav ul {
    display: flex;
    justify-content: space-between;
  }

  /* 縦線はliタグにして全部を均等配置 */
  .line{
    border-right: 1px solid #483131;
  }

  main {
    clear: both;
    margin-top: 11vh;
  }
  #top{
    width: 100%;
  }

  #gasuke img{
  width: 15%;
  margin: auto;
 }
  #about{
  margin: 2vh 0;
 }
 
 #about-l{
  width: 60%;
  height: 400px;
  background-image: url(../../images/flagpc/top/about.jpg);
  background-position: center center;
  /* 縦横比を保ったまま要素全体に収まる */
  background-size: cover;
  float: left;
}
#about-r{
  float: right;
  /* 右のエリア */
  width: 35%;
}
#about-r img{
  width: 50%;
}

#copy1{
  font-size: 24px;
  margin-top: 5vh;
  margin-bottom: 5vh;
  font-size: 2.3vw;
}
#ver1{
  font-size: 16px;
  font-size: 1.7vw;
}
#button1{
  margin-top: 3vh;
}

#button1 a {
    display: flex;
    position: relative;
    justify-content: space-around;
    max-width: 200px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #e72916;
    border-radius: 50px;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #9b9999;
}
#button1 a:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}
#button1 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
#animal{
  clear: both;
  display: flex;
  justify-content: center;
  text-align: center;
}
#animal-l{
  width: 30%;
}
#animal-l img{
  width: 50%;
  margin-top: 8vh ;
  margin-left: auto;
  margin-right: auto;
}
#animal-c{
  width: 40%;
}
#animal-c img{
  width: 70%;
  margin: 8vh auto 0 ;
}
#copy2{
  font-size: 24px;
  margin-top: 5vh;
  margin-bottom: 3vh;
  font-size: 2.3vw;
}
#ver2{
  font-size: 16px;
  font-size: 1.7vw;
  
}
#animal-r{
  width: 30%;
}
#animal-r img{
  width: 70%;
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
}
#button2{
  margin: 0 auto 3vh;
}

#button2 a {
    display: flex;
    position: relative;
    /* ボタンの位置 */
    margin: 0 auto;
    justify-content: space-around;
    max-width: 200px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #e72916;
    border-radius: 50px;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #9b9999;
}
#button2 a:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}
#button2 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

#access{
  margin-top: 10vh;
}

#access-top{
  display: flex;
  justify-content: center;
} 
#access-l{
  text-align: right;
  font-size: 18px;
}
#address{
  margin-bottom: 6vh;
}

#access-l img{
  margin: 0 0 5vh auto;
  /* width: 40%; */
}
#access-r{
  width: 55%;
  height: 420px;
  margin: 0 0 0 5% ;
  background-image: url(../../images/flagpc/top/access.jpg);
  background-position: center center;
  /* 縦横比を保ったまま要素全体に収まる */
  background-size: cover;
}

#access-bottom{
  margin: 6vh auto 10vh;
  width: 60%;
}
#access-bottom iframe{
  width: 100%;
  height: 550px;
}

footer{
  background-color: #e8e6e6;
    /* 背景色を反映させるため親要素にoverflow: hidden;つける */
    /* overflow: hidden; */
  display: flex;
  position: relative;
  padding: 30px;
}
#fnav{
  width: 35%;
}

#fnav ul{
  display: flex;
  font-size: 1.4vw;
  /* ナビ内を均等配置 */
  justify-content: space-between;
}
#fnav ul a{
  color:#483131;
}
#footer-c{
  width: 30%;
}
#footer-r{
  /* 全体の〇％を画像の幅にする */
  width: 10%;
  /* 右下に配置　*/
  position: absolute;
  right: 20px;
  bottom: 20px;
}
#footer-r img{
  width: 100%;
}
#copyright{
  /* 左下に配置 */
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.5rem;
  color: #483131;
}

/* お店のこと */
#about-main{
  background-color: #e8e6e6;
  margin-top: 11vh;
}
#a-top-back{
  /* 画像を置く範囲 */
  width: 80%;
  margin: auto 13vh;
  background-image: url(../../images/flagpc/about/hata.png);
  background-position: center center;
  /* 縦横比を保ったまま大きさを変える */
  background-size: 77%;
   /* 画像の繰り返しを止める */
  background-repeat: no-repeat; 
}
/*パンくずリスト */
#a-breadcrumb {
  padding: 5vh 0;         
  font-size: 14px;
  color: #483131;
  text-align: right;       
  line-height: 1;          
}

/* パンくずのスラッシュ（/）用のspan */
#a-breadcrumb span {
  margin: 0 4px;         
}
#a-breadcrumb a {
  text-decoration: none;
  color: #483131;
}

#a-breadcrumb a:hover {
  color: #e72916; 
}

#a-breadcrumb span {
  color: #483131; 
}
#a-top{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 10vh 0;
}
#a-top h2{
  width: 50%;
  font-size: 2.5vw;
  color: #483131;
  line-height: 1.8;
}
#a-top-r{
  width: 50%;
}
#a-top-r img{
  width: 80%;
}
#a-01{
  clear: both;
  display: flex;
  margin-top: 5vh;
}


#a-01-l{
  width: 55%;
  height: 400px;
  background-image: url(../../images/flagpc/about/omise.jpg);
  background-position: center center;
  /* 縦横比を保ったまま要素全体に収まる */
  background-size: cover;
  margin-left: 1vw;

}
#a-01-r{
  margin-left: 7vw;
}
#a-ver1{
  margin-top: 6vh;
  font-size: 2vw;
}

#a-02{
  clear: both;
  display: flex;
  margin-top: 5vh;
  width: 100%;
  position: relative;
}
#a-02-l{
  margin-left: 13vw;

}

#a-ver2-1{
  margin-top: 6vh;
  font-size: 2vw;
}

#a-ver2-2 {
  border: 2px solid #483131; 
  padding: 20px;             
  margin-top: 30px;         
  width: 87%;                
  box-sizing: border-box;   
}

#a-ver2-2 p {
  margin: 5px 0;             
  font-size: 15px;           
  color: #483131;            
  line-height: 1.6;          
}
#a-02-r{
  position: absolute;
  right: 0;     
}

#a-02-r img {
  width: 100%; 
  height: auto;
}


#a-03{
  clear: both;
  display: flex;
  margin-top: 5vh;
  padding-bottom: 5vh;
}

#a-03-l{
  width: 55%;
  height: 400px;
  background-image: url(../../images/flagpc/about/omise2.jpg);
  background-position: center center;
  /* 縦横比を保ったまま要素全体に収まる */
  background-size: cover;
  margin-left: 1vw;

}
#a-03-r{
  margin-left: 7vw;
}
#a-03-r img{
  width: 70%;
}
#a-ver3{
  margin-top: 6vh;
  font-size: 2vw;
}
#a-footer{
  clear: both;
  background-color: #fff;
}


/* どうぶつスタッフ */
#animal-main{
  background-color: #fff;
  margin-top: 11vh;
}


/*パンくずリスト */
#ani-breadcrumb {
  width: 90%;
  padding: 4vh 0 0 0;         
  font-size: 14px;
  color: #483131;
  text-align: right;       
  line-height: 1; 
  margin-bottom: 0;     
}

/* パンくずのスラッシュ（/）用のspan */
#ani-breadcrumb span {
  margin: 0 4px;  
  line-height: 1;       
}
#ani-breadcrumb a {
  text-decoration: none;
  color: #483131;
  line-height: 1;
}

#ani-breadcrumb a:hover {
  color: #e72916; 
}

#ani-breadcrumb span {
  color: #483131; 
}
#ani-top-back{
  margin: 0;
  line-height: 0;
}
#ani-top-back img{
  margin: 0 auto;
  display: block;
  width: 100%;
}

 #ani-header {
    background-color:#fff ;
    padding: 30px 30px 0px 30px;
    /* 背景色を反映させるため親要素にoverflow: hidden;つける */
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    
  }

}

