@charset "utf-8";

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

/*=========================================
#hamburger
=========================================*/
.hamburger {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 150;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.hamburger:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #6f3b1a;
  transition: transform .3s;
}

.hamburger.is-active span {
  background-color: #6f3b1a;
}

.hamburger span:nth-child(1) {
  top: 30%;
}

.hamburger span:nth-child(2) {
  top: 60%;
}

.hamburger span:nth-child(3) {
  top: 90%;
}

/*=========================================
#drawer
=========================================*/
.drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 100vh;
  background-color: rgba(92, 42, 26, 0.6);
  transition: opacity .3s, visibility .3s;
}

.drawer__item:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.drawer.is-active {
  visibility: visible;
  opacity: 1;
}

.drawer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.drawer__list {
  display: flex;
  flex-direction: column;

  gap: 50px;
}

.drawer__link {
  color: #ffffff;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}


/* ここまで */

body {
  background-color: #ffecb1;
}

.top {
  display: flex;
  unicode-bidi: isolate;
  position: relative;
}

.top a {
  margin: 0 auto;
}

nav ul {
  margin-right: 0;
}

nav ul li {
  list-style: none;
  margin: 5px auto;
}

/* ヘッダーのスタイル */
header {
  width: 15%;
  position: fixed;
  /* 固定位置 */
  top: 0;
  /* ページの上部に配置 */
  left: 0;
  text-align: center;
  /* テキスト中央寄せ */
  z-index: 1000;
  /* 他の要素よりも上に表示 */
}

@media screen and (max-width: 480px) {
  header {
    position: fixed;
  }
}

/* li {
  display: list-item;
  text-align: center;
  unicode-bidi: isolate;
} */

/* .swiper-slide img {
  margin: 0 auto;
  display: flex;
  width: 80%;
} */
.swiper {
  width: 100%;
  --swiper-theme-color: #5c1c1c;

}

.swiper-slide {
  display: flex;
  justify-content: flex-end;
  /* 画像を右寄せ */
  align-items: center;
  /* 垂直方向の中央寄せ */

}

.swiper-slide img {
  max-width: 80%;
  /* 必要に応じて画像サイズを調整 */
  margin-right: 20px;
  /* 右寄せ時の余白を追加 */
}

/* .main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
} */

h2 {
  padding: 30px;
}

.concept {
  text-align: center;
  display: flex;
  margin: 5% 5%;
}

.concept-img {
  /* min-width: 50%; */
  width: max-content;
  margin: 10% auto;
  background-image: url(../images/kakidashi/beppu-01.png);
  background-repeat: no-repeat;
  /* background-size:contain;   */
}

.tomato {
  width: 20%;
  margin: 0 auto;
  background-image: url(../images/kakidashi/tomato-01.png);
  background-repeat: no-repeat;
  background-size:contain; 
}

.menu {
  text-align: center;
  margin: 10% auto;
}


.shop {
  text-align: center;
  margin: 10% auto;
}

.event {
  text-align: center;
  margin: 10% auto;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.shop-info {
  display: flex;
  justify-content: space-between;
  margin: 0 5%;
}


.inner {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
  padding: 20px;

}


.sub_ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

/* ここからがニュース記事のCSS */

.news_list {
  margin: 0 5%;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}

.news_list_item a {
  position: relative;
  display: flex;
  padding-right: 30px;
}

.news_list_date {
  font-size: 15px;
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item {
  background: #F6C6A2;
  border-radius: 14px;
  width: 6em;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
}

.arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 0;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}


@media screen and (max-width: 1024px) {
  .news_list_item a {
    display: block;
  }
}

@media screen and (max-width: 769px) {
  .news_list_item a {
    font-size: 14px;
  }


}

@media screen and (max-width: 480px) {
  .arrow {
    display: none;
  }

  .news_list_item a {
    padding-right: 0;
  }
}

footer {
  text-align: center;
  margin: 5% auto;
}
footer a:hover{
  opacity: 0.5;
  transition: 0.3s;
}

.button-13 a {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #772b08;
  font-weight: 400;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center;
  padding: 4px 16px 4px 0;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1000;
}


.button-13 a::before {
  content: "";
  display: block;
  position: absolute;
  width: 180px;
  height: 1px;
  background: #772b08;
  bottom: 0;
  transition: all 0.3s;
}

.button-13 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #772b08;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

