@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Kiwi Maru", "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}
body.no-scroll {
  overflow: hidden;
}

main {
  padding-top: 80px;
}
@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* ヘッダーのスタイル */
header {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s;
}

.header__top-banner {
  width: 100%;
  background-color: #3a3a3a;
  color: #f5f5f5;
  text-align: center;
  padding: 5px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.header__top-banner-text {
  margin: 0;
  line-height: 1.4;
  text-align: left;
}
.header__top-banner-text--strong {
  font-size: 14px;
  font-weight: 700;
  padding-right: 20px;
}

.header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  box-sizing: border-box;
  transition: padding 0.3s, background-color 0.3s;
}
.header__main.is-scrolled {
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__main.is-scrolled .header__logo img {
  height: 60px;
}
@media (max-width: 768px) {
  .header__main.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .header__main {
    padding: 15px 30px;
  }
}
@media (max-width: 768px) {
  .header__main {
    flex-direction: row;
    padding: 10px 20px;
    z-index: 2000; /* article-headerの上に表示させる */
  }
}
.header__main h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.header__main .header__logo {
  display: block;
  text-decoration: none;
}
.header__main .header__logo img {
  height: 80px;
  display: block;
  transition: height 0.3s;
}
@media (max-width: 768px) {
  .header__main .header__logo img {
    height: 50px;
  }
  .is-scrolled .header__main .header__logo img {
    height: 50px;
  }
}
.header__main .header__hamburger {
  display: none;
  z-index: 3010;
}
@media (max-width: 768px) {
  .header__main .header__hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .header__main .header__hamburger.is-active {
    position: fixed;
    top: 60px;
    right: 20px; /* ヘッダーの右paddingに合わせる */
  }
  .header__main .header__hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: all 0.5s;
  }
  .header__main .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__main .header__hamburger span:nth-child(2) {
    top: 10px;
  }
  .header__main .header__hamburger span:nth-child(3) {
    top: 20px;
  }
  .header__main .header__hamburger.is-active span {
    background-color: #a0522d;
  }
  .header__main .header__hamburger.is-active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .header__main .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__main .header__hamburger.is-active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .header__main .header__nav {
    position: fixed;
    top: var(--top-banner-height, 27px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--top-banner-height, 27px)); /* dvhを使用して動的なビューポート高に対応 */
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.6s ease-in-out, opacity 0.6s, visibility 0.6s;
  }
  .header__main .header__nav.is-active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
.header__main .header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
@media (max-width: 768px) {
  .header__main .header__nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
.header__main .header__nav-list .is-current a {
  color: #a0522d;
  font-weight: 700;
}
.header__main .header__nav-list .nav-ja {
  font-size: 0.75em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header__main .header__nav-list .nav-ja {
    font-size: 0.6em;
    line-height: 1.2;
  }
}
.header__main .header__nav a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333333;
  font-weight: 400;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .header__main .header__nav a {
    font-size: 20px;
    line-height: 1em;
  }
}
.header__main .header__nav a:hover {
  color: #b06457;
}
.header__main .header__reservation {
  position: relative;
}
@media (max-width: 768px) {
  .header__main .header__reservation {
    display: none;
  }
}
.header__main .header__reservation-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 270px;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.header__main .header__reservation-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__main .header__reservation-link {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  transition: opacity 0.3s;
}
.header__main .header__reservation-link:first-of-type {
  background: linear-gradient(45deg, #795548, #a0522d);
}
.header__main .header__reservation-link:last-of-type {
  background: linear-gradient(45deg, #556b2f, #6b8e23);
}
.header__main .header__reservation-link:hover {
  opacity: 0.85;
}

/* 各セクションのスタイル */
.feature {
  display: flex;
  min-height: 100dvh; /* dvhを使用して動的なビューポート高に対応 */
  align-items: stretch;
  position: sticky;
  top: 80px;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .feature {
    flex-direction: column-reverse;
    position: relative; /* sticky解除 */
    top: auto;
    min-height: auto;
  }
}
.feature__image {
  flex: 0 0 50%;
  width: 50%;
  overflow: hidden; /* 画像がはみ出さないように */
  line-height: 0; /* 画像下の余白を削除 */
  position: relative;
}
@media (max-width: 768px) {
  .feature__image {
    width: 100%;
    height: 300px; /* スマホ表示時の高さを設定 */
    flex: auto; /* flex設定をリセット */
  }
}
.feature__image .slider {
  width: 100%;
  height: 100%;
}
.feature__image .slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.feature__image .slider__item.is-active {
  opacity: 1;
}
.feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.feature__image .slider__pagination {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .feature__image .slider__pagination {
    left: 20px;
    gap: 8px;
  }
}
.feature__image .slider__pagination-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 0; /* 四角形にする */
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}
.feature__image .slider__pagination-dot.is-active {
  background-color: #a0522d;
}
.feature__text {
  flex: 0 0 50%;
  width: 50%;
  flex-direction: column;
  display: flex;
  align-items: center;
  padding: 200px 50px;
  box-sizing: border-box;
  background-image: url("../img/common/bg-text.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .feature__text {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .feature__text {
    padding: 40px 20px;
    width: 100%;
    flex: auto; /* flex設定をリセット */
  }
}
.feature__content {
  max-width: 500px;
  text-align: left;
}
.feature__content ul {
  list-style: none;
  padding: 0;
}
.feature__content li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}
.feature__content .menu-previews {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 30px;
}
.feature__content .menu-previews__item {
  width: 100px;
  height: 100px;
}
@media (max-width: 768px) {
  .feature__content .menu-previews__item {
    width: 80px;
    height: 80px;
  }
}
.feature__content .menu-previews img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.feature__content .access-summary {
  margin-bottom: 30px;
}
.feature__content .access-summary img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .feature__content .access-summary {
    display: none;
  }
}
.feature h2,
.feature h3 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333333;
}
@media (max-width: 768px) {
  .feature h2,
  .feature h3 {
    font-size: 32px;
  }
}
.feature p,
.feature li,
.feature dd {
  font-size: 16px;
  color: #333333;
}
.feature--reversed {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .feature--reversed {
    flex-direction: column-reverse;
  }
}

/* フッターのスタイル */
footer {
  position: relative;
  text-align: center;
  padding: 60px 50px 20px;
  font-size: 14px;
  border-top: 1px solid #4a4a4a;
  background-color: #3a3a3a;
  color: #f5f5f5;
}
@media (max-width: 992px) {
  footer {
    padding: 50px 30px 20px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
    text-align: center;
  }
}
footer .footer__main {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-bottom: 30px;
  }
}
footer .footer__column--calendar {
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 300px;
}
@media (max-width: 768px) {
  footer .footer__column--calendar {
    width: 100%;
    max-width: none;
    height: 250px;
  }
}
footer .footer__column--calendar iframe {
  width: 100%;
  height: 100%;
  border: none;
}
footer .footer__column {
  flex: 1;
}
footer .footer__column--info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .footer__column--info {
    align-items: center;
  }
}
footer .footer__logo {
  display: inline-block;
  margin-bottom: 10px;
}
footer .footer__logo img {
  height: 100px;
}
footer .footer__social a {
  display: inline-block;
  color: #faf9f6;
  transition: color 0.3s;
}
footer .footer__social a:hover {
  color: #ffffff;
}
footer .footer__social a svg {
  width: 28px;
  height: 28px;
}
footer .footer__title {
  font-size: 18px;
  color: #faf9f6;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}
footer .footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 35px;
}
@media (max-width: 768px) {
  footer .footer__nav-list {
    justify-content: center;
    gap: 10px 25px;
  }
}
footer .footer__nav-list a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s;
}
footer .footer__nav-list a:hover {
  color: #faf9f6;
}
footer .footer__nav-list .nav-ja {
  font-size: 0.75em;
  font-weight: 400;
}
footer .footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  footer .footer__column--contact {
    display: none;
  }
}
footer .footer__link {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s;
}
footer .footer__link:first-of-type {
  background: linear-gradient(45deg, #795548, #a0522d);
}
footer .footer__link:last-of-type {
  background: linear-gradient(45deg, #556b2f, #6b8e23);
}
footer .footer__link:hover {
  opacity: 0.85;
}
footer .footer__bottom {
  border-top: 1px solid #4a4a4a;
  padding-top: 20px;
}
footer .footer__copyright {
  margin: 0;
  color: #888888;
  font-size: 12px;
}

/* Sticky Reservation Bar for Mobile */
.reservation-bar {
  display: none;
}
@media (max-width: 768px) {
  .reservation-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
}
.reservation-bar__link {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s;
}
.reservation-bar__link svg {
  flex-shrink: 0;
  stroke: #f5f5f5;
}
.reservation-bar__link:first-child {
  background: linear-gradient(45deg, #795548, #a0522d);
}
.reservation-bar__link:last-child {
  background: linear-gradient(45deg, #556b2f, #6b8e23);
}
.reservation-bar__link:hover {
  opacity: 0.85;
}

/* Newsセクション上部の波形 */
#news {
  position: relative;
  padding-top: 120px; /* 波形の分のスペースを確保 */
}
#news::before {
  content: "";
  position: absolute;
  top: -1px; /* 上のセクションとの境界をなくす */
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3e%3cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,176C960,192,1056,192,1152,176C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media (max-width: 768px) {
  #news {
    padding-top: 80px; /* モバイルでは少し詰める */
  }
}

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.category-filter__button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s;
}
.category-filter__button:hover {
  background-color: #faf9f6;
}
.category-filter__button.is-active {
  background-color: #a0522d;
  color: #fff;
  border-color: #a0522d;
  font-weight: 700;
}
.category-filter__button--notice.is-active {
  background-color: #2196f3;
  border-color: #2196f3;
}
.category-filter__button--menu.is-active {
  background-color: #4caf50;
  border-color: #4caf50;
}
.category-filter__button--event.is-active {
  background-color: #ff9800;
  border-color: #ff9800;
}
.category-filter__button--live.is-active {
  background-color: #9c27b0;
  border-color: #9c27b0;
}
.category-filter__button--business-day.is-active {
  background-color: #9e9e9e;
  border-color: #9e9e9e;
}
.category-filter__button--workshop.is-active {
  background-color: #e91e63;
  border-color: #e91e63;
}
.category-filter__button--seasonal.is-active {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.category-filter__button--meetup.is-active {
  background-color: #795548;
  border-color: #795548;
}
.category-filter__button--special.is-active {
  background-color: #3f51b5;
  border-color: #3f51b5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news-card__category {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  background-color: #a0522d;
  color: #ffffff;
  border-radius: 4px;
}
.news-card__category--notice {
  background-color: #2196f3;
}
.news-card__category--menu {
  background-color: #4caf50;
}
.news-card__category--event {
  background-color: #ff9800;
}
.news-card__category--live {
  background-color: #9c27b0;
}
.news-card__category--business-day {
  background-color: #9e9e9e;
}
.news-card__category--workshop {
  background-color: #e91e63;
}
.news-card__category--seasonal {
  background-color: #00bcd4;
}
.news-card__category--meetup {
  background-color: #795548;
}
.news-card__category--special {
  background-color: #3f51b5;
}
.news-card__category--notice {
  background-color: #2196f3;
}
.news-card__category--menu {
  background-color: #4caf50;
}
.news-card__category--event {
  background-color: #ff9800;
}
.news-card__category--live {
  background-color: #9c27b0;
}
.news-card__category--business-day {
  background-color: #9e9e9e;
}
.news-card__category--workshop {
  background-color: #e91e63;
}
.news-card__category--seasonal {
  background-color: #00bcd4;
}
.news-card__category--meetup {
  background-color: #795548;
}
.news-card__category--special {
  background-color: #3f51b5;
}

.news-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

.news-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card.is-hidden {
  display: none;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.news-card:hover .news-card__image {
  transform: scale(1.05);
}
.news-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card__figure {
  margin: 0;
  line-height: 0;
  display: block;
}
.news-card__image {
  width: 100%;
  height: auto; /* WordPressが出力するheight属性を上書き */
  aspect-ratio: 16/9; /* 横長の比率 */
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-out;
}
.news-card__content {
  padding: 10px 15px; /* 上下のパディングを少し減らす */
}
.news-card__date {
  font-size: 13px;
  color: #888888;
}

/* No Results Message */
.no-results-message {
  text-align: center;
  padding: 60px 20px;
  color: #888888;
  font-size: 16px;
}
.no-results-message.is-hidden {
  display: none;
}

/* ボタンのスタイル */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #a0522d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.button:hover {
  background-color: #b06457;
}
.button--small {
  padding: 8px 20px;
  margin-top: 0;
}
.button--instagram {
  background: linear-gradient(45deg, #795548, #a0522d);
}
.button--instagram:hover {
  background: linear-gradient(45deg, #795548, #a0522d);
  opacity: 0.85;
}
.button--phone {
  background: linear-gradient(45deg, #556b2f, #6b8e23);
}
.button--phone:hover {
  background: linear-gradient(45deg, #556b2f, #6b8e23);
  opacity: 0.85;
}

/* Menu, Shop ページのヘッダースタイル */
.page-header {
  padding: 10px 50px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  color: #333333;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.page-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .page-header {
    padding: 20px 30px 30px;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 20px 20px 30px;
  }
}
.page-header h2 {
  font-size: 60px;
  color: #a0522d;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .page-header h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .page-header h2 {
    font-size: 40px;
  }
}
.page-header--special, .page-header--about, .page-header--menu, .page-header--news, .page-header--event, .page-header--access, .page-header--contact, .page-header--shop {
  padding: 10px 50px;
  background-size: cover;
  background-position: center;
  color: #f5f5f5;
}
.page-header--special::before, .page-header--about::before, .page-header--menu::before, .page-header--news::before, .page-header--event::before, .page-header--access::before, .page-header--contact::before, .page-header--shop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.page-header--special h2,
.page-header--special p, .page-header--about h2,
.page-header--about p, .page-header--menu h2,
.page-header--menu p, .page-header--news h2,
.page-header--news p, .page-header--event h2,
.page-header--event p, .page-header--access h2,
.page-header--access p, .page-header--contact h2,
.page-header--contact p, .page-header--shop h2,
.page-header--shop p {
  position: relative;
  color: #f5f5f5;
}
.page-header--special {
  background-image: url("/assets/img/special/special-title.jpg");
}
.page-header--about {
  background-image: url("/assets/img/about/about-title.jpg");
}
.page-header--menu {
  background-image: url("/assets/img/menu/menu-title.jpg");
}
.page-header--news {
  background-image: url("/assets/img/news/news-title.jpg");
}
.page-header--event {
  background-image: url("/assets/img/event/event-title.jpg");
}
.page-header--access {
  background-image: url("/assets/img/access/access-title.jpg");
}
.page-header--contact {
  background-image: url("/assets/img/contact/contact-title.jpg");
}

/* 店舗概要ページのスタイル */
.feature--shop-details .feature__content dt {
  font-weight: bold;
  margin-top: 15px;
  color: #333333;
}

/* アクセスマップのスタイル */
.map {
  padding: 50px 0 0;
  text-align: center;
  position: relative;
  z-index: 3;
  background-color: #f8f8f8;
  align-items: stretch;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.map.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .map {
    padding-top: 40px;
  }
}
.map__title {
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #333333;
}
.map__container {
  width: 100%;
  margin: 0;
}
.map__container iframe {
  width: 100%;
  min-height: 600px;
  display: block;
}
@media (max-width: 768px) {
  .map__container iframe {
    min-height: 400px;
  }
}

/* テキストコンテンツ用セクション */
.text-content-section {
  padding: 60px 50px;
  background-color: #ffffff;
  color: #333333;
  position: relative;
  z-index: 2;
  min-height: 50vh;
}
.text-content-section .text-content-container {
  max-width: 800px;
  margin: 0 auto;
}
.text-content-section .section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  color: #333333;
}
.text-content-section .section-footer {
  text-align: center;
  margin-top: 40px;
}

/*Googleカレンダー*/
.g-calendar {
  width: 100%; /* 幅を親要素に合わせる */
  position: relative;
  padding-bottom: 75%; /* 16:9のアスペクト比を保つ例 */
  height: 0;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .g-calendar {
    padding-bottom: 160%;
  }
}

.g-calendar iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Pagination */
.pagination {
  margin-top: 60px;
}
.pagination__list,
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  gap: 10px;
}
.pagination__link,
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.pagination__link:hover,
.pagination .page-numbers:hover {
  background-color: #faf9f6;
  border-color: #d0d0d0;
}
.pagination .is-current .pagination__link,
.pagination .page-numbers.current {
  background-color: #a0522d;
  color: #ffffff;
  border-color: #a0522d;
  font-weight: 700;
  pointer-events: none;
}
.pagination .dots {
  border: none;
  background-color: transparent;
}

/* Call to Action Section */
.cta-section {
  position: relative;
  z-index: 2;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 40px 20px;
  background-image: url("../img/index/index-3.jpg");
  background-size: cover;
  background-position: center;
}
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.cta-section__content {
  color: #f5f5f5;
  text-align: center;
  z-index: 1;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.cta-section__title {
  font-size: 32px;
}
.cta-section__text {
  margin-bottom: 20px;
}

/* Contact Page */
.contact-notice {
  background-color: #faf9f6;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #a0522d;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
}
.contact-notice__title {
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
}
.contact-notice__text-bk {
  margin-top: 0;
  margin-bottom: 15px;
}
.contact-notice__text-red {
  margin: 40px 0px;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #c0392b;
  text-align: center;
}
.contact-notice p {
  margin-bottom: 20px;
}
.contact-notice__links {
  display: flex;
  justify-content: space-evenly;
  gap: 15px;
}
@media (max-width: 768px) {
  .contact-notice__links {
    flex-direction: column;
  }
}
.contact-notice__links .button {
  margin-top: 0;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
}

.contact-form__confirm-area {
  display: none;
}
.contact-form.is-confirm .contact-form__input-area {
  display: none;
}
.contact-form.is-confirm .contact-form__confirm-area {
  display: block;
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #a0522d;
}
.contact-form .form-textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form .form-footer {
  text-align: center;
}
.contact-form .form-footer--confirm {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact-form .form-footer--confirm {
    flex-direction: column;
    gap: 15px;
  }
}
.contact-form .form-required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 400;
  background-color: #c0392b;
  color: #fff;
  border-radius: 4px;
  line-height: 1;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.confirm-table th,
.confirm-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}
.confirm-table th {
  width: 30%;
  background-color: #faf9f6;
  font-weight: 700;
}
@media (max-width: 768px) {
  .confirm-table th {
    width: 100%;
    display: block;
  }
}
.confirm-table td {
  width: 70%;
  white-space: pre-wrap; /* 改行を保持 */
  word-break: break-all; /* 長い文字列を折り返す */
}

/* Special Page Intro */
.special-intro {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #faf9f6;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .special-intro {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}
.special-intro__logo {
  flex-shrink: 0;
}
.special-intro__logo img {
  max-width: 250px;
  height: auto;
  display: block;
}

/* Special Page */
.special-list {
  display: grid;
  gap: 40px;
}

.special-card {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #f5f5f5;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-sizing: border-box;
}
.special-card:hover .special-card__image {
  transform: scale(1.05);
}
.special-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transition: transform 0.4s ease-out;
}
.special-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 20%, transparent 80%);
  z-index: -1;
}
.special-card__content {
  width: 100%;
}
.special-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
  color: #f5f5f5;
}
.special-card__excerpt {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Article Page */
.article {
  background-color: #ffffff;
}

.article-header {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  .article-header {
    margin-bottom: 0;
    flex-direction: column;
  }
}
.article-header__thumbnail {
  width: 100%;
  height: 400px;
  line-height: 0;
}
.article-header__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-header__content {
  max-width: 800px;
  margin: -80px auto 0;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .article-header__content {
    margin: 0 auto;
    padding: 30px 30px 0;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
  }
}

.article--stacked .article-header {
  margin-bottom: 0;
  flex-direction: column;
}
.article--stacked .article-header__content {
  margin: 0 auto;
  padding: 40px 40px 0;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.article-meta__date {
  font-size: 14px;
  color: #888888;
}
.article-meta__category {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  background-color: #a0522d;
  color: #ffffff;
  border-radius: 4px;
}
.article-meta__category--notice {
  background-color: #2196f3;
}
.article-meta__category--menu {
  background-color: #4caf50;
}
.article-meta__category--event {
  background-color: #ff9800;
}
.article-meta__category--live {
  background-color: #9c27b0;
}
.article-meta__category--business-day {
  background-color: #9e9e9e;
}
.article-meta__category--workshop {
  background-color: #e91e63;
}
.article-meta__category--seasonal {
  background-color: #00bcd4;
}
.article-meta__category--meetup {
  background-color: #795548;
}
.article-meta__category--special {
  background-color: #3f51b5;
}

.article-title {
  font-size: 32px;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 24px;
  }
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
@media (max-width: 768px) {
  .article-body {
    padding-top: 40px;
  }
}
.article-body h3 {
  font-size: 24px;
  margin: 40px 0 20px;
}
.article-body h4 {
  font-size: 20px;
  margin: 30px 0 15px;
}
.article-body p {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.article-body h2 {
  font-size: 28px;
  margin: 60px 0 30px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}
@media (max-width: 768px) {
  .article-body h2 {
    font-size: 24px;
  }
}
.article-body h3 {
  font-size: 22px;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 5px solid #a0522d;
}
@media (max-width: 768px) {
  .article-body h3 {
    font-size: 20px;
  }
}
.article-body h4 {
  font-size: 18px;
  margin: 30px 0 15px;
  font-weight: 700;
}
.article-body ul,
.article-body ol {
  padding-left: 0;
  margin: 20px 0;
  list-style-type: none;
}
.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.article-body ul li::before,
.article-body ol li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #a0522d;
  font-weight: 700;
}

.article-toc {
  background-color: #faf9f6;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin: 40px auto;
  max-width: 700px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .article-toc {
    margin: 30px 20px;
    padding: 15px;
  }
}
.article-toc__title {
  font-size: 20px;
  font-weight: 700;
  color: #a0522d;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}
.article-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-toc__item {
  margin-bottom: 8px;
  line-height: 1.6;
}
.article-toc__item a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.article-toc__item a:hover {
  color: #a0522d;
  text-decoration: underline;
}
.article-toc__item--h3 {
  padding-left: 20px;
  font-size: 0.95em;
}
.article-toc__item--h3::before {
  content: "・";
  color: #888888;
  margin-right: 5px;
}

.article--stacked .article-body {
  padding-top: 40px;
}

.article-image {
  margin: 40px 0;
  text-align: center;
}
.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.article-image figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #888888;
}

.article-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .article-pagination {
    grid-template-columns: 1fr;
  }
}
.article-pagination__link {
  padding: 30px;
  text-decoration: none;
  color: #333333;
  border-left: 1px solid #eee;
  transition: background-color 0.3s;
}
.article-pagination__link:hover {
  background-color: #faf9f6;
}
@media (max-width: 768px) {
  .article-pagination__link {
    border-left: none;
    border-top: 1px solid #eee;
  }
  .article-pagination__link:first-child {
    border-top: none;
  }
}
.article-pagination__link--prev {
  border-left: none;
  text-align: left;
}
.article-pagination__link--next {
  text-align: right;
}
.article-pagination__label {
  display: block;
  font-size: 12px;
  color: #888888;
  margin-bottom: 5px;
}
.article-pagination__title {
  font-weight: 700;
}

.article-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .article-pagination {
    grid-template-columns: 1fr;
  }
}
.article-pagination__link {
  display: flex;
  align-items: center;
  padding: 30px;
  text-decoration: none;
  color: #333333;
  border-left: 1px solid #eee;
  transition: background-color 0.3s;
  position: relative;
}
.article-pagination__link:hover {
  background-color: #faf9f6;
}
.article-pagination__link:hover .article-pagination__arrow {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .article-pagination__link {
    border-left: none;
    border-top: 1px solid #eee;
  }
  .article-pagination__link:first-child {
    border-top: none;
  }
}
.article-pagination__link--prev {
  border-left: none;
  text-align: left;
  justify-content: flex-start;
}
.article-pagination__link--prev:hover .article-pagination__arrow {
  transform: translateX(-5px);
}
.article-pagination__link--next {
  text-align: right;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.article-pagination__content {
  flex-grow: 1;
}
.article-pagination__label {
  display: block;
  font-size: 12px;
  color: #888888;
  margin-bottom: 5px;
}
.article-pagination__title {
  font-weight: 700;
}
.article-pagination__arrow {
  font-size: 24px;
  line-height: 1;
  color: #a0522d;
  transition: transform 0.3s ease-out;
  margin: 0 15px;
}/*# sourceMappingURL=style.css.map */