@charset "utf-8";
/* CSS Document */

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: #F7F4EF;
  position: relative;
}

@media screen and (min-width:768px){
  body {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

/*------------------
ナビメニュー
------------------*/

.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  z-index: 999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.logo {
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  height: 60px;
  z-index: 11;
}
.logo img {
  width: auto;
  height: 100%;
}

@media screen and (min-width:768px){
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
  }
  .header__inner {
    display: flex;

    align-items: center;
    padding: 0;
    margin: 0 auto;
  }
  .logo {
    font-size: 1.25em;
    font-weight: bold;
    height: 60px;
  }
}


/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #F7F4EF;
  border: 1px solid #916044;
  cursor: pointer;
  z-index: 9999; /* メニューを開いている時もクリックできるよう設定 */
  padding: 10px;
}

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

}



/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 2px;
  background-color: #916044;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 1rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 1rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}


/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
.drawer__nav__inner {
  position: relative;
  width: 95%;
  height: 100%;
  background-color: #F7F4EF;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transition: transform 0.5s ease;
  z-index: 10001;
}
.drawer__nav.active .drawer__nav__inner {
  transition: opacity 0.5s ease;
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}
.drawer__nav__inner img {
  width: 100%;
}

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

}




/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}




/*------------------
コンテンツ
------------------*/


/*コンテンツ共通*/

.sp {
  display: block;
}
.pc {
  display: none;
}
.section {
  padding: 60px 20px;
}
.inner_section {
  width: 100%;
  padding: 0;
}

.wrapper {
  width: 100%;
  padding: 0;
}
.contents_wrap {
  padding: 50px 0 40px 0;
}
.page_title {
  padding: 0 20px;
  margin-bottom: 40px;
}

h1.page_h1 {
  font-size: 32px;
  color: #916044;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  background-image: url(../images/bg_h1line.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 20px;
  text-align: center;
  margin: 0 auto 30px auto;
}

h2 {
  font-size: 24px;
  color: #916044;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  padding-bottom: 10px;
} 
@media screen and (min-width:768px){
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
  .section {
    padding: 80px 20px;
  }

  .inner_section {
    max-width: 1100px;
    margin: 0 auto;
  }
  .wrapper {
    padding: 0;
  }
  .contents_wrap {
    padding: 60px 0 50px 0;
    min-height: 400px;
  }
  .page_title {
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 40px auto;
  }
  
  h1.page_h1 {
    font-size: 36px;
    padding-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
  }
  h2 {
    font-size: 28px;
    padding-bottom: 10px;
  } 
}



/* メインビジュアルのスライドショー */

.mv {
  position: relative;
}
.slider {
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
  aspect-ratio: 7 / 8;
  z-index: 1;
  display: block;
}
.frame {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
}
.frame img {
  width: 100%;
}
.slick-img img {
  width: 100%;
}

@media screen and (min-width:768px){
  .slider {
    aspect-ratio: 120 / 52;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}


/* Aboutへ */

.about {

}
.about img {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width:768px){
  .about p {
    text-align: center;
  }
}


/* News お知らせ */

.news {

}
.news_inner {
  background-color: #FFFFFF;
  border-radius: 50px;
  position: relative;
  padding: 50px 30px 70px;
}
.news_inner::before {
  content: "";
  width: 200px;
  height: 76px;
  background-image: url(../images/news_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -30px;
}
.h2_news {
  background-image: url(../images/bg_newstitle_sp.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  text-align: center;
  padding: 0;
}
.news_list {
  list-style-type: none;
  margin-bottom: 10px;
}
.news_list li {
  border-bottom: 2px dotted #DBBFA5;
  padding: 20px 0;
}
.news_date {
  display: block;
  margin-bottom: 5px;
}
.news_title {
  display: block;
}
.btn_newsall {
  font-size: 24px;
  color: #916044;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  display: block;
  text-decoration: none;
  float: right;
}

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

  }
  .news_inner {
    position: relative;
    padding: 30px 60px 80px;
  }
  .news_inner::before {
    width: 280px;
    height: 110px;
    left: 30px;
    top: -30px;
  }
  .h2_news {
    background-image: url(../images/bg_newstitle_pc.png);
    background-position: bottom center;
    padding: 0;
    margin-bottom: 30px;
  }
  .news_list {

  }
  .news_list li {
    display: flex;
    padding: 20px 0;
  }
  .news_date {
    width: 20%;
    margin-bottom: 0;
  }
  .news_title {
    width: 80%;
  }
}


/* コンテンツ紹介 */

.continfo_wrap {
  
}
.continfo_wrap img {
  width: 100%;
  z-index: 100;
  position: relative;
}
.continfo_wrap h2 {
  border-bottom: 2px dotted #638C00;
  position: relative;
  margin-bottom: 20px;
}
.continfo_wrap h2::after {
  content: "";
  width: 83px;
  height: 64px;
  background-size: cover;
  right: 0;
  bottom: -5px;
  position: absolute;
}
.facility .continfo_wrap h2::after {
  background-image: url(../images/ico_shop.png);
}
.cafemenu .continfo_wrap h2::after {
  background-image: url(../images/ico_cafemenu.png);
}
.goods .continfo_wrap h2::after {
  background-image: url(../images/ico_goods.png);
}
.album .continfo_wrap h2::after {
  background-image: url(../images/ico_album.png);
}

.continfo_wrap p {
  margin-bottom: 20px;
}
.btn_tocont {
  font-size: 18px;
  color: #916044;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  display: block;
  text-decoration: none;
  border: 2px dotted #8DC21F;
  background-color: #FFFFFF;
  text-align: center;
  padding: 10px;
}
.facility {
  
}

@media screen and (min-width:768px){
  .continfo_wrap {
    display: flex;
  }
  .cafemenu .continfo_wrap,
  .album .continfo_wrap {
    flex-direction: row-reverse;
  }
  .continfo_wrap img {
    display: block;
    width: 55%;
    max-width: 582px;
  }
  .facility .continfo_txt,
  .goods .continfo_txt{
    padding-left: 20px;
  }
  .cafemenu .continfo_txt,
  .album .continfo_txt{
    padding-right: 20px;
  }
  .continfo_wrap h2 {
    
  }
  .continfo_wrap p {
    padding: 0 10px;
  }
  .btn_tocont {
    font-size: 20px;
    padding: 10px 20px;
    margin: 0 10px;
  }
}



/* 区切り線 */
.blue_line {
  height: 48px;
  display: block;
  background-image: url(../images/line_blue.png);
  background-repeat: no-repeat;
  background-position: left center;
  clear: both;
  border: none;
  padding: 50px 0;
}

/* instagram */
.instagram {
  
}
.instagram h2 {
  text-align: center;  
}


/* バナー */
.apri {
  padding: 20px;
}
.topbnr img {
  width: 100%;
}



/* 店舗情報 */

.shopinfo {
  padding: 60px 0;
}
.shopinfo .inner_section {
  width: auto;
  padding: 0 20px;
}
.shopinfo_wrap {
  margin-bottom: 50px;
}
.shopinfo_img {
  width: 100%;
}
.shopinfo_img img {
  width: 100%;
  height: auto;
}
.shopinfo_txt {
  
}
.shopinfo_txt h2 {
  border-bottom: 2px dotted #638C00;
  position: relative;
  margin-bottom: 20px;
}
.shopinfo_txt h2::after {
  content: "";
  width: 83px;
  height: 64px;
  background-image: url(../images/ico_shopinfo.png);
  background-size: cover;
  right: 0;
  bottom: -5px;
  position: absolute;
}
.shopinfo_detail {
  width: 100%;
  margin-bottom: 40px;
}
.shopinfo_detail th,.shopinfo_detail td {
  border-bottom: 1px solid #A79079;
  color: #494B4D;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;

}
.shopinfo_detail th {
  white-space: nowrap;
  padding: 10px 40px 10px 0;
  text-align: left;
}
.shopinfo_detail td {
  padding: 10px 20px 10px 0;
}

.compimg_wrap {
  
}
.map {
  width: 100%;
  height: 60vw;
}
.map iframe {
  width: 100%;
  height: 60vw;
}


@media screen and (min-width:768px){
  .shopinfo {
    padding: 60px 0;
  }
  .shopinfo .inner_section {
    width: auto;
    padding: 0 20px;
  }
  .shopinfo_wrap {
    display: flex;
  }
  .shopinfo_img {
    width: 50%;
  }
  .shopinfo_txt {
    width: 50%;
    padding-left: 20px;
  }
  .shopinfo_detail {

  }
  .shopinfo_detail th,.shopinfo_detail td {
    border-bottom: 1px solid #A79079;
    color: #494B4D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

  }
  .shopinfo_detail th {
    white-space: nowrap;
    padding: 12px 40px 12px 0;
    text-align: left;
  }
  .shopinfo_detail td {
    padding: 12px 20px 12px 0;
  }

  .compimg_wrap {

  }
  .map {
    width: 100%;
    height: 400px;
  }
  .map iframe {
    width: 100%;
    height: 400px;
  }
}



/* footer */

.footer {
  background-image: url("../images/bg_footer_leaf.png"),url(../images/bg_footer_dogs.png);
  background-position: center top,center top;
  background-repeat: no-repeat,no-repeat;
  background-size: 100% auto, 100% auto;
}

.footer_inner {
  position: relative;
  min-height: 120px;
}
.footer_inner img {
  display: block;
  width: 80px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.footer_copy {
  color: #FFFFFF;
  padding: 0;
  text-align: center;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (min-width:768px){
  
  .footer {
    background-image: url("../images/bg_footer_leaf.png"),url(../images/bg_footer_dogs.png);
    background-position: center top,center top;
    background-repeat: repeat-x,no-repeat;
    background-size: 840px auto, 840px auto;
  }
  .footer_copy {
    
  }
  .footer_inner {

  }
  .footer_inner img {
    display: block;
    width: 100px;
    position: absolute;
    left: 10px;
    bottom: 10px;
  }
}


/* お誕生日のわんちゃん */

.birthday_wrap {
  margin: 0 auto 50px;
}

.birthday_head {
  display: block;
  margin: 0 auto -30px auto;
}








@media screen and (min-width:768px){
  /*タブレット以上　画面幅を768pxまでに設定*/
}

