@charset "utf-8";

/*-----------------------------------
      全体に関わる設定
----------------------------------*/
html *,
::before,
::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  color: #000000;
  font-family:  "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: #000000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
    padding: 0;
}

.pc {
  display: none;
}

/*-------------------------- ヘッダー ------ */
.header-container {
  padding: 15px 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
}

/* ヘッダーロゴ */
.header-logo {
  font-size: 0;
  line-height: 0;
}
.header-logo img {
  width: 144px;
}

/* ハンバーガーボタン */
.open-btn {
  position: relative;
  z-index: 9999;
  margin-top: 14px;
  cursor: pointer;
  width: 40px;
  height: 20px;
}

.open-btn span {
  display: block;
  transition: transform 0.3s ease, top 0.5s ease;
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: #42210b;
  width: 100%;
}

.open-btn span:nth-child(1) {
  top: 0;
}
.open-btn span:nth-child(2) {
  top:10px;
}
.open-btn span:nth-child(3) {
  top:20px;
}

.open-btn.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open-btn.active span:nth-child(2) {
  width: 0;
}
.open-btn.active span:nth-child(3){
  top: 15px;
  transform: rotate(-45deg);
}

/* ナビゲーションメニュー */
.header-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #f4f3e9;
  transition: all 0.6s;
}

.header-nav.panelactive {
  right: 0;
}

.nav-list {
  position: absolute;
  z-index: 999;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.header-nav li a {
  display: block;
  color: #42210b;
  padding: 10px 5px;
  margin: 5px;
  font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.header-nav li a:hover {
  color: #df9d34;
  text-decoration: underline;
}

/* snsアイコン */
.follow {
  margin-top: 20px;
}

.sns-icon {
  display: flex;
  justify-content: center;
}

.sns-icon div {
  margin: 0 5px;
}

.sns-icon div a {
  display: block;
  width: 32px;
  height: 32px;
  background: #8c6239;
  border-radius: 50%;
  line-height: 32px;
  color: #ffffff;
  text-align: center;
}

.sns-icon div a:hover {
  opacity: 0.5;
}

.sns-icon i {
  vertical-align: middle;
}

.fa-instagram {
  font-size: 1.8rem;
}
.fa-twitter {
  font-size: 1.6rem;
}

.follow p {
  font-size: 2.4rem;
  font-family: 'Pacifico', cursive;
  text-align: center;
  color: #42210b;
}


/* ニュース */
.header-news {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.news-logo {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  background: #df9d34;
  border-radius: 50%;
  line-height: 40px;
  font-size: 1.2rem;
  font-family: 'Pacifico',cursive;
  text-align: center;
  color: #ffffff;
}

.header-news p {
  font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
  font-size: 1.2rem;
  text-decoration: underline;
}

.header-news a:hover {
  opacity: 0.5;
}


/*----------------------------- フッター  -------*/
.footer-container {
  margin-top: 35px;
}

/* ナビゲーションメニュー */
.footer-nav li a {
  display: block;
  height: 55px;
  padding: 0 29px;
  font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
  font-size: 1.7rem;
  background: #f4f3e9;
  line-height: 55px;
}

.footer-nav li a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f054";
  padding-right: 15px;
  color: #8c6239;
}

.footer-nav li a:hover {
  background: #df9d34;
  color: #ffffff;
}

.footer-nav {
  border-bottom: 1px dashed #d8d8d8;
}
.footer-nav li {
  border-top: 1px dashed #d8d8d8;
}

/* footer-info 店舗情報部分 */
.footer-info {
  padding: 20px 30px;
}

.address {
  height: 45px;
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

.tel {
  display: block;
  margin-top: 15px;
  max-width: 265px;
  height: 46px;
  border:  1px solid #000000;
  font-family: 'Yu Mincho Demibold', 'YuMincho-Demibold', serif;
  font-size: 2.8rem;
  line-height: 46px;
  text-align: center;
}

.openinghours {
  margin-top: 15px;
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-info .sns-icon div {
  margin: 20px 2.5px 0;
}

.copyright {
  margin-top: 20px;
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

/*------------------------------ メイン -------*/
main {
  display: block;  /*IE*/
}

/*--- ヒーロー画像 ---*/
.hero-container {
  width: 100%;
  height: 500px;
  background: url(../images/kv.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}

.hero-container p {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 9px;
  line-height: 2;
  writing-mode: vertical-rl;
   -ms-writing-mode: tb-rl; /*IE*/
}

/*--- メインコンテナー ---*/
.main-container {
  padding: 0 20px;
}

.heading {
  margin: 35px 0 15px;
}

h2 {
  font-family: 'Pacifico', cursive;
  font-size: 3.8rem;
  color: #42210b;
}

/* メニュー */
.menu-blk {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}

.menu-item {
  border-radius: 20px;
  background: #f4f3e9;
}

.menu-photo img {
  border-radius: 20px 20px 0 0;
}

.menu-item h3 {
  margin-top: 15px;
  padding: 0 15px;
  font-family: 'Yu Mincho Demibold', 'YuMincho-Demibold', serif;
  font-size: 1.8rem;
}

.menu-text {
  margin: 15px 0 20px 0;
  padding: 0 15px;
  width: 100%;
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
}

/* スライダー pcのみ */
.slider {
  display: none !important;
}

/* イベント */
.event-blk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 15px;
}

.event-item {
  border: 2px solid #d8d8d8;
}

.event-item h3 {
  padding: 0 5px;
  margin-top: 15px;
  font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}

.event-item span {
  background: #8c6239;
  padding: 0 8px;
  margin-right: 5px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 1rem;
}
.event-item span.full {
  background: #1d9bf0;
}

.event-item a:hover {
  opacity: 0.5;
}

.event-btn {
  position: relative;
  margin: 30px auto 0;
  width: 215px;
  height: 38px;
  background: #8c6239;
  border-radius: 100px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
}

.event-btn a {
  display: block;
  font-family: 'Yu Mincho Demibold', 'YuMincho-Demibold', serif;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 38px;
  text-align: center;
  transition: all 0.5s;
}

.event-btn a:hover {
  background: #ffffff;
  border: 1px solid #8c6239;
  color: #8c6239;
  border-radius: 100px;
}

.btn a::after {
  font-family: 'Font awesome 5 Free';
  font-weight: 900;
  content: "\f054";
  position: absolute;
  right: 7px;
}

/* About us */
.about-text h3 {
  margin: 20px 0 14px 0;
  font-family: 'Yu Mincho Demibold', 'YuMincho-Demibold', serif;
  font-size: 2rem;
}

.about-text p {
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
}

/* staff スタッフ紹介部分 */
.staff-blk {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.staff-item {
  width: 45%;
  margin-top: 30px;
  border-bottom: 2px solid #d8d8d8;
}

.staff-item:first-child {
  margin: 0 25%;
}

.staff-photo img {
  border-radius: 50%;
}

.name-yomi {
  font-family: 'Yu Mincho Regular', 'YuMincho-Regular', serif;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
}

.name-yomi::before {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  margin: -30px auto 10px;
  border-radius: 50%;
  background: #d79837;
  color: #ffffff;
  font-size: 1rem;
  line-height: 42px;
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  content: "店長";
}

.staff-item:nth-child(2) .name-yomi::before {
  content: "調理師";
}

.staff-item:nth-child(3) .name-yomi::before {
  content: "バリスタ";
}

.staff-name {
  margin-top: 5px;
  font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
}

.staff-text {
  margin-top: 15px;
  font-family: 'Yu Gothic Medium', 'YuGothic-Medium', sans-serif;
  font-size: 1rem;
  line-height: 2;
  text-align: justify;
}


/*--------------------------------------------------------------
パソコン
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }

  /*-------------------------- ヘッダー ------ */
  header {
    position: fixed; /*ヘッダーを固定*/
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    box-shadow: 0 6px 3px -3px rgba(0,0,0,0.1);
  }

  .header-container {
    margin: 0 auto;
    max-width: 1082px;
    padding: 0 10px 20px;
    height: 198px;
  }

  .header-inner {
    display: block; /* flexの解除 */
  }

  /* 問い合わせボタン */
  .inquiry-btn {
    text-align: right;
  }

  .inquiry-btn li {
    display: inline-block;
    text-align: center;
    width: 115px;
    height: 38px;
    line-height: 38px;
    font-family: 'Yu Mincho Regular', 'YuMincho-Regular', serif;
    font-size: 1.2rem;
    position: relative;
  }

  .inquiry-btn li::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    background: #af5033;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease-in-out;
  }
  .inquiry-btn li:nth-child(2)::after {
    background: #976541;
  }

  .inquiry-btn li:hover::after {
    height: 100%;
  }

  .inquiry-btn li:hover a {
    color: #ffffff;
  }

  /* ヘッダーロゴ */
  .header-logo {
    width: 220px;
    float: left;
  }

  .header-logo img{
    width: 100%;
  }

/* ナビゲーションメニュー */
  .header-nav {
    height: auto;
    position: static; /* positionの解除 */
    background: none;
  }

  .nav-list {
    position: static; /* positionとtoransformの解除 */
    transform: none;
  }

  .nav-list ul {
    display: flex;
    justify-content: flex-end;
  }

  .nav-list li a {
    padding: 10px 3px;
    margin: 30px 0 30px 10px;
    background: none;
    position: relative;
    font-size: 1.6rem;
   }

  .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background:#df9d34;
    visibility: hidden;
    opacity: 0;
  }

   .header-nav li a:hover {
     color: #000000;
     text-decoration: none;
   }

  .nav-list li a:hover::after {
    visibility: visible;
    opacity: 1;
    transition: all 0.8s;
   }

  /* ニュース */
  .header-news {
    justify-content: flex-end;
    margin: 0;
  }


  /*----------------------------- フッター  -------*/
  footer {
    background: #f4f3e9;
  }

  .footer-container {
    max-width: 1148px;
    margin: 94px auto 0;
    padding: 0 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  /* ナビゲーションメニュー */
  .footer-nav {
    display: flex;
    margin-top: 50px;
  }

  .nav-blk {
    width: 200px;
  }

  .footer-nav li {
    border: none;
  }

  .footer-nav li a {
    padding: 0;
    margin: 5px;
    font-size: 1.6rem;
    height: auto;
    line-height: 2.5;
  }

  .footer-nav li a:hover {
    background: none;
    color: #df9d34;
  }

  .footer-nav li a::before {
    padding-right: 3px;
    visibility: hidden;
  }

  .footer-nav li a:hover::before {
    visibility: visible;
  }

  /* footer-info 店舗情報部分 */
  .footer-info {
    padding: 0;
    margin-right: 50px;
  }

  .footer-logo {
    width: 230px;
    margin-top: 50px;
  }

  .address {
    margin-top: 30px;
    line-height: normal;
    height: auto;
  }

  .tel {
    max-width: 340px;
    height: auto;
    margin-top: 13px;
    padding: 13px 0;
    border: none;
    text-align: left;
    line-height: 1;
    border-top: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
    pointer-events: none;
  }

  .openinghours {
    margin-top: 13px;
  }

  .footer-info .sns-icon {
    justify-content: flex-start;
  }

  .footer-info .sns-icon div {
    margin: 15px 10px 0 0;
  }

  .copyright {
    text-align: left;
    margin: 53px 0 54px;
  }
  /*------------------------------ メイン -------*/
  main {
    margin-top: 198px;
  }

  /*--- ヒーロー画像 ---*/
  .hero-container {
    height: 940px;
  }

  .hero-container p {
    top: 70px;
    font-size: 4rem;
    letter-spacing: 17px;
    line-height: 2;
  }

  /*--- メインコンテナー ---*/
  .main-container {
    max-width: 1024px;
    padding: 0 10px;
    margin: 0 auto;
  }

  .heading {
    display: flex;
    align-items: center;
    margin: 70px 0 40px;
  }

  .heading p {
    margin: 0 20px;
    font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
    font-size: 1.4rem;
    color: #42210b;
  }

  /* メニュー */
  .menu-blk {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }

  .menu-item h3 {
    margin-top: 25px;
    padding: 0 30px;
  }

  .menu-text {
    margin: 20px 0 25px;
    padding: 0 30px;
  }

  /* スライダー */
  .slider {
    display: block !important;
    max-height: 360px;
    margin: 70px calc(50% - 50vw) 0;
    width: 100vw;
  }

  .slider img {
    object-fit: contain;
    max-height: 360px;
  }
  .slider .slick-slide {
    margin: 0 3px;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
  }

  /* イベント */
  .event .heading {
    margin: 0 0 40px 0;
  }

  .event-blk {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 40px;
  }

  .event-photo {
    position: relative;
  }

  .hover-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition:all 0.6s ease;
  }

  .hover-text p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform : translate(-50%, -50%);
  }

  .hover-text a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #fff;
    border-bottom: 2px solid #fff;
  }

  .event-photo:hover .hover-text {
    opacity: 1;
  }

  .event-item h3 {
    font-size: 1.4rem;
  }

  .event-item span {
    font-size: 1.2rem;
  }

  .event-btn {
    margin: 50px auto 0;
  }

  /* About us */
  .about-main {
    display: flex;
  }

  .about-photo {
    flex: 0 0 45%;
  }

 .about-photo img {
    height: 100%;
    object-fit: cover;
  }

  .about-text {
    flex: 1 1 auto;
    margin-left: 40px;
  }

  .about-text h3 {
    margin: 0 0 14px 0;
  }

  .about-text p {
    line-height: 2;
  }

  /* staff スタッフ紹介部分 */
  .staff-blk {
    margin-top: 50px;
  }

  .staff-item,
  .staff-item:first-child {
    width: 25%;
    margin: 0;
  }

  .name-yomi,
  .staff-name {
    font-size: 1.2rem;
  }

  /* 2カラムのレイアウト */
  .columns {
    display: flex;
    margin-top: 70px;
  }

  .columns-main {
    max-width: 630px;
    flex: 1 1 auto;
  }

  aside {
    flex: 0 0 30%;
    margin-left: 8%;
    max-width: 300px;
  }

  .shop-btn {
    position: relative;
    margin: 0;
    width: 100%;
    height: 40px;
    background: #8c6239;
    text-align: center;
    box-shadow: 0 3px 4px rgba(0,0,0,0.3);
  }

  .shop-btn a {
    display: block;
    font-family: 'Yu Gothic Bold', 'YuGothic-Bold', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 40px;
    transition: all 0.5s;
  }

  .btn a::after {
     font-size: 1.6rem;
   }

  .shop-btn a:hover {
    background: #fff;
    border: 1px solid #8c6239;
    color: #8c6239;
  }

  .sns-btn {
    margin-top: 30px;
    box-shadow: 0 3px 4px rgba(0,0,0,0.3);
    transition: 0.3s;
  }

  .sns-btn:hover {
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
  }


}
