@charset "utf-8";
/* img画像のフルード化 */
img{
    border: 0;
    max-width: 100%;
    height: auto;
}

/*
=========================================
  Base Layout　共通部分
=========================================
*/

/*container*/
.container {
    max-width: 940px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.heading{
    text-align: center;
    margin: 30px auto 20px;
    padding: 5px;
    font-size: 20px;
    border: 2px solid #c77777;
    width: 120px;
    /* Google font -Cormorant Garamond Bold700-*/
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: normal;
    color: #c77777;
    background-color: #ffffff;
}

  
/*
=========================================
  Modules（Block）
=========================================
*/
.h-menu-content {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* ===================================================== */

/*===== ヘッダー======= */
/* ハンバーガーメニュー======各ページ共通============== */
/*三本線実装部分のcss①
----------------------*/
.menu-btn {
    position: fixed;
    top: 0px;  
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c77777;
    z-index: 3;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}

/*三本線を「×」にするcss②
----------------------*/
#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }

  #menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }


/* チェックボックスを隠すcss③ media andの外に記載済み
----------------------*/
  
/*ここからメニューの装飾css④
-------------------------------*/
.h-menu-content {
    width: 75%;
    height: 100%;
    /* position: fixed; */
    padding: 70px 20px 0;
    top: 0;
    right: 0;
    z-index: 2;
    background-color: #c77777;
}
.h-menu-content li {
    border-bottom: solid 2px #ffffff;
    list-style: none;
}
.h-menu-content li a {
    display: block;
    width: 100%;
    font-size: 20px;
    /* Google font -Cormorant Garamond Bold700-*/
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: normal;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 5px;
    position: relative;
}
.h-menu-content li a:hover{
  background: #c72828;
}


/*メニュー部分タップするとメニューが開く⑤
-------------------------------*/
.h-menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 2;
    background-color: #c77777;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .h-menu-content {
    left: 25%;
}

/* ハンバーガーメニュー=ここまで=================== */


/* ====スライドショー==== */
.slider-view{
  position: relative;
  height: 100vh;
  /* object-fit: cover; */
}

.myslider{
  height: 100%;
}

.myslider img{
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

/* ====スライドショー上の文字==== */
.slider-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    max-width: 640px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* ===スライドショー上のロゴ=== */
.slider-title .logo{
  width: 80%;
  margin: 0 auto;
}

/* ===スライドショー上・フッターのロゴ共通=== */
  .logo:hover{
      filter: opacity(60%);
  }
  /* ================================== */

.slider-msg {
    line-height: 1.7;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    /* #c77777 */
    box-shadow: 0 0 10px rgba(199, 119, 119, 0.6);
}
  
/* ====section=====共通？ */
.section{
    padding-top: 20px;
}

.section:nth-child(odd){
    background-color: #fcf4f4;
}

.section:last-child{
    padding-bottom: 20px;
}

/* =====NEWS======= */
/* moreボタンの基準ボックス */
.news-more {
 position: relative;
 display: block;
 height: 44px;
}
.news .more{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px;
    font-size: 20px;
    /* Google font -Cormorant Garamond Bold700-*/
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 1px 1px 1px #c77777;
    text-align: center;
    border: 2px solid #c77777;
    background-color: #ff9999;
}

.news .more::after{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 7px;
    border: transparent 7px solid;
    border-left-color: #fff;
    vertical-align: middle;
}

.news .more:hover{
    background-color: #ffb1b1;
}

/* ===共通？===== */
.grid-col{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
/*2カラムの列幅*/
.grid-col .col {
  width: 48.9361%;
}

/* ====NEWSページ===== */
.news-col .date{
  margin-top: 5px;
  border-bottom: 1px dotted #ff9999;
}

.news-col .news-title{
  margin-top: 50px;
}

/* NEWSページのmoreボタンの基準ボックス */
.news-grid-col{
  position: relative;
}

/* ====NEWS 個別ページ===== */
.s-news-section img{
  display: block;
  margin: 0 auto 20px;
}

.s-news-section p{
  margin: 20px;
}

    /* NEWS一覧へ ボタン */
  .s-news-section .news-list{
    width: 80%;
    margin: 0 auto;
    border: 2px solid #c77777;
    text-align: center;
  }


    .s-news-section a{
      display: block;
      padding: 10px;
      font-size: 35px;
      /* Google font -Cormorant Garamond Bold700-*/
      font-family: "Cormorant Garamond", serif;
      font-weight: 700;
      font-style: normal;
      text-decoration: none;
      color: #ffffff;
      text-shadow: 2px 2px 2px #c77777;
      background-color: #ff9999;
    }

    .s-news-section a:hover{
      background-color: #ffb1b1;
  }


/* =====MENU======= */
    /* ===メニューボタン=== */
    .menu li{
        width: 80%;
        margin: 0 auto 5px;
        border: 2px solid #c77777;
        text-align: center;
    }

    .menu a{
        display: block;
        padding: 10px;
        font-size: 35px;
        /* Google font -Cormorant Garamond Bold700-*/
        font-family: "Cormorant Garamond", serif;
        font-weight: 700;
        font-style: normal;
        text-decoration: none;
        color: #ffffff;
        text-shadow: 2px 2px 2px #c77777;
        background-color: #ff9999;
    }

    .menu a:hover{
        background-color: #ffb1b1;
    }

/* ====MENU ページ===== */
  /* ===MENU 見出し=== */
  .s-menu-h{
    margin-bottom: 0;
  }

  /*=== SEASONAL MENU見出し ===*/
  .season-h{
    width: 240px;
  }

  #season,
  #tea,
  #food{
    padding-top: 5px;
  }

.menu-grid-col{
  text-align: center;
  margin-bottom: 20px;
}

.menu-col .menu-title{
  margin: 5px auto;
  /* font-weight: normal; */
  border-bottom: 2px dotted #ff9999;
  display: inline-block;
}


/* =====ACCESS======= */
.access-list{
    display: flex;
    flex-wrap: wrap;
}

.access-list dt{
    width: 30%;
    padding: 5px 0;
    border-bottom: 1px dotted #ff9999;
}

.access-list dd{
    width: 70%;
    padding: 5px 0; 
    border-bottom: 1px dotted #ff9999;
}

    /* ===== Goofle map======== */
    .map {
        position: relative;
        padding-top: 50%; 
    }
    
    .map iframe {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

/* =====CONTACTページ======= */
.entryTable{
  width: 100%;
  margin-bottom: 30px;
  border: 2px solid #c77777;
}

.entryTable caption{
  margin-bottom: 10px;
}

.entryTable th,
.entryTable td{
  padding: 10px;
  border: 1px solid #c77777;
}

.entryTable th{
  width: 5em;
  background-color: #ff9999;
  text-align: left;
  vertical-align: middle;
}

.entryTable td{
  background-color: #fff;
}

.entryTable td select,
.entryTable input[type="text"],
.entryTable input[type="tel"],
.entryTable input[type="email"],
.entryTable textarea{
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1em;
}

.entryTable td select:focus,
.entryTable input[type="text"]:focus,
.entryTable input[type="tel"]:focus,
.entryTable input[type="email"]:focus,
.entryTable textarea:focus{
  background-color: #ffb1b1;
  outline: none;
  border-left: 5px solid #c72828;
}

/* カーソル形状 */
input,
textarea,
select{
  cursor: pointer;
}

/* ボタン */
.entryBtns{
  text-align: center;
}

.entryBtns input{
  width: 200px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1em;
  color: #000000;
  background-color: #ff9999;
  border: 2px solid #c77777;
}

.entryBtns input[type="reset"]{
  background-color: #ffffff;
}

.entryBtns input:hover{
  opacity: 0.7;
}

/* =====PRIVACY POLICYページ======= */
  /*=== PRIVACY POLICY見出し ===*/
  .privacypolicy-h{
    width: 240px;
  }

.privacy-scroll{
  width: 90%;
  height: 550px;
  margin: 0 auto 20px;
  border: 1px solid #c77777;
  overflow: auto;
}

.privacy-s{
  line-height:1.7;
  margin: 10px;
}

.privacy-h{
  font-weight: bolder;
  border-bottom: 2px dotted #ff9999;
  display: inline-block;
  margin-bottom: 5px;
}

.privacy-s ol{
  padding-left: 30px;
}

/* ===お問い合わせフォームへボタン=== */
.contact-btn{
  padding: 5px;
  font-size: 20px;
  /* Google font -Cormorant Garamond Bold700-*/
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  color: #ffffff;
  text-shadow: 1px 1px 1px #c77777;
  text-align: center;
  border: 2px solid #c77777;
  background-color: #ff9999;
}

.contact-btn::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border: transparent 7px solid;
  border-left-color: #fff;
  vertical-align: middle;
}

.contact-btn:hover{
  background-color: #ffb1b1;
}

.privacy-end{
  text-align: right;
}



/*===== フッター=======ページ共通================================ */
.footer{
  background-color: #c77777;
    padding-top: 20px;
  }
  
  .sitemap{
    margin: auto auto 20px 35px;
  }
  
  .sitemap a{
    color: #ffffff;
    text-decoration: none;
  }
  
  .sitemap a:hover{
    color: rgba(255,255,255,0.6);
  }
  
  .footer-menu{
    color: #ffffff;
  }
  
  /* ===アコーディオンメニュー=== */
.dropdown{
  display:none;
}

  .footer-menu label,
  .dropdown li{
    display:block;
    text-indent: 5%;
  }
  .footer-menu label:hover{
    color: rgba(255,255,255,0.6);
  }
  .dropdown li::before,
  .footer-menu label::before{
    content:"";
    display:block;
    position:absolute;
    right:5%;
  }
  input[type="checkbox"]{
    display:none;
  }
  .footer-menu label[for="footer-menu"]{
    display:block;
  }
  .footer-menu label[for="footer-menu"]::before{
    transform:rotate(225deg);
  }
  #footer-menu:checked + .dropdown{
    display:block;
  }
  
/* =========================== */

.sns-follow {
  text-align: center;
  color: #ffffff;
  opacity: 80%;
  font-size: 20px;
  /* Google font -Cormorant Garamond Bold700-*/
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
}

/*====SNS====*/
.sns {
  margin-bottom: 15px;
    text-align: center;
  }
  
  .sns li {
    display: inline-block;
  }
  
  .sns a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
  }
  
  .sns a:hover{
    color: rgba(255,255,255,0.6);
  }
  
  
  /* ===SNSアイコン===== */
      .fb::before{
        content: "\f09a";
        font-family: "Font Awesome 6 Brands";
        font-weight: 400; /* レギュラー → 400 */
        font-size: 50px;
      }
      
      .tw::before{
        content: "\e61b";
        font-family: "Font Awesome 6 Brands";
        font-weight: 400; /* レギュラー → 400 */
        font-size: 50px;
      }

      .insta::before{
        content: "\f16d";
        font-family: "Font Awesome 6 Brands";
        font-weight: 400; /* レギュラー → 400 */
        font-size: 50px;
      }

      /* ===フッターのロゴ=== */
    .footer .logo{
      width: 60%;
      margin: 0 auto;
    }

      
      /*===pagetop===*/
      .pagetop{
        width: 45px;
        height: 45px;
        position: fixed;
        right: 10px;
        bottom: 70px;
      }
      .pagetop a {
        display: block;
        width: 45px;
        height: 45px;
        padding-top: 10px;
        box-sizing: border-box;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
        text-decoration: none;
        text-align: center;
        font-size: 12px;
        color: #c72828;
      }
      .pagetop a:hover {
        background: rgba(255,255,255,0.8);
        color: #c72828;
      }
      .pagetop a::before {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        margin: auto;
        border-top: 1px solid #c72828;
        border-right: 1px solid #c72828;
        transform: rotate(-45deg);
      }
      
      /* コピーライト */
      .copyright{
        color: #ffffff;
        text-align: center;
      }
      /*===== フッター==終わり==================================== */
      
/* ===========768px以上のデバイス用 PC用===========*/
/*grid*/
@media screen and (min-width: 768px) {
  /* グローバルナビ ===========*/
  /* ハンバーガーメニューの三本線 */
  .menu-btn {
    position: relative;
    /* display: none; */
    z-index: 2;
  }
  
  .h-menu-content {
    width: 100%;
    height: 60px;
    padding: 0;
    top: 0;
    /* position: relative; */
    z-index: 3;
    background-color: #c77777;
    transition: none;/*アニメーションなし設定*/
  }
  
  .h-menu-content li a {
    box-sizing: border-box;
    padding: 15px;
    position: relative;
  }
  #menu-btn-check:checked ~ .h-menu-content {
    left: 0%;
  }
  .gnav {
    background-color: #c77777;
  }
  
  .gnav ul {
    display: flex;
  }
  
  .gnav li {
    width: 25%;
    border: none;
  }
  
  .gnav a {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    /* Google font -Cormorant Garamond Bold700-*/
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .gnav a:hover {
    background: #c72828;
  }

  /* ===スライドショー=== */
  .slider-view{
    height: auto;
    /* max-height: 50vh; */
    max-height: 100vh;
  }
  
  /* ===スライドショー上のロゴ=== */
  .slider-title .logo{
    width: 70%;
  }


  .myslider img{
    object-fit: cover;
    /* width: 100%; */
    /* height: 100%; */
    max-height: 80vh;
  }
  
  
  /*3カラム指定*/
  .grid-col .col {
    width: 31.9148%;
  }
  /* ===MENU====== */
  .menu li{
    width: 350px;
  }



  /* ===NEWSページ====== */
  .news-grid-col{
    margin-bottom: 20px;
  }
  .news-col{
    margin-left: 20px;
    font-size: 1.5rem;
    flex-grow: 1;
  }
  
  
  /* ===NEWS個別ページ====== */
      /* NEWS一覧へ ボタン */
      .s-news-section .news-list{
        width: 350px;
      }
    

  /* ===MENUページ====== */
  .menu-grid-col{
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }
  /*2カラムの列幅*/
  .menu-grid-col .col {
    width: 40%;
  }

  .menu-col{
    margin-left: 20px;
    font-size: 1.5rem;
    flex-grow: 1;
  }

  .menu-grid-col .menu-title{
    margin: 5px auto;
    display: block;
  }
  
  .menu-col .menu-dd{
    margin-top: 50px;
  }

  /* =====CONTACTページ======= */
  .entryTable th,
  .entryTable td{
    padding: 10px 20px;
  }

  .entryTable th{
    width: 10em;
  }

  .entryBtns input{
    margin: 0 10px;
  }

  /* =====PRIVACY POLICYページ======= */
  .privacy-scroll{
    width: 90%;
    height: auto;
    border: none;
    overflow: visible;
  }
  


/* ===フッターのロゴ=== */
.footer .logo{
  width: 390px;
}


}   

/* ===========768px以上のデバイス用 PC ここまで===========*/

/*チェックボックスを隠すcss③ media andの外に書く
----------------------*/
#menu-btn-check {
  display: none;
}


/* スクロール フェードイン
---------------------------------*/

/* 初期状態は透明にしておく */
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: 0.5s;
}

/* 上がる */
.fade-in-up {
  transform: translate(0, 10px);
}

/* 下がる */
.fade-in-down {
  transform: translate(0, -10px);
}

/* 左へ */
.fade-in-left {
  transform: translate(10px, 0);
}

/* 右へ */
.fade-in-right {
  transform: translate(-10px, 0);
}

/* スクロールして画面内に入った時 */
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* デュレイ（アニメーションの開始を遅らせる） */
.delay01 {
  transition-delay: 0.1s;
}

.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}

/* スクロール フェードイン 終わり
---------------------------------*/
