:root {
  --primary: #b8967a;
  --secondary: #1a3c34;
  --bg-light: #f7f4f1;
  --surface: #e8dfd1;
  --text-main: #33241f;
}

body {
  font-family: 'Noto Serif JP', serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.8;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
}

/* Alpine.js cloak */
[x-cloak] {
  display: none !important;
}

/* Subhero Base Style */
.subhero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.subhero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Typography Overrides */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.font-sans {
  font-family: 'Noto Sans JP', sans-serif;
}

/* Layout Helpers */
.section-padding {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}
/* --- Extracted Styles --- */

/* From ./parts/shops-content.html */

.shops-content {
  background-color: var(--bg-light);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}
.tab-trigger {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.tab-trigger.active::after {
  width: 100%;
}
.shop-image-container {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.shop-image-container img {
  transition: transform 0.6s ease;
}
.shop-image-container:hover img {
  transform: scale(1.05);
}
.info-grid dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.info-grid dd {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 150, 122, 0.2);
  padding-bottom: 0.5rem;
}
/* ヘッダーの高さに合わせた調整 */
.shops-tab-nav {
  top: 64px;
}
.all-shops-map-container {
  width: 100%;
  height: 500px;
  filter: grayscale(0.2);
  transition: filter 0.5s ease;
}
.all-shops-map-container:hover {
  filter: grayscale(0);
}
.shops-content-wrapper {
  margin-top: clamp(3rem, 6vw, 6rem);
}

/* メニューセクション用の追加スタイル */
.menu-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.menu-card-img img {
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.1);
}

/* From ./parts/index-contact.html */

.index-contact {
  background-color: var(--surface);
  position: relative;
  overflow: hidden;
}

.index-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.05;
  pointer-events: none;
}

.contact-card {
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(51, 36, 31, 0.05);
}

.contact-title {
  color: var(--text-main);
  font-family: var(--font-main);
}

.contact-button {
  background-color: var(--secondary);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  color: #ffffff;
}

/* From ./parts/privacy-content.html */

.privacy-section {
  background-color: var(--bg-light);
}
.privacy-body {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.privacy-body h2 {
  font-size: 1.25rem;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}
.privacy-body p,
.privacy-body li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.privacy-body ul {
  margin-bottom: 1.5rem;
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* From ./parts/news-content.html */

.news-container {
  max-width: 1000px;
  margin: 0 auto;
}
.news-category-badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: inline-block;
}
.news-list-item {
  border-bottom: 1px solid rgba(184, 150, 122, 0.2);
  transition: all 0.4s ease;
}
.news-list-item:hover {
  background-color: rgba(232, 223, 209, 0.3);
}
.news-detail-content {
  line-height: 2;
}
.news-detail-content h2 {
  font-size: 1.5rem;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin: 2.5rem 0 1.5rem;
}
.news-detail-content p {
  margin-bottom: 1.5rem;
}
.news-detail-content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-main);
  transition: transform 0.3s ease;
}
.btn-back:hover {
  transform: translateX(-5px);
}

/* From ./parts/index-contact.html */

.index-contact {
  background-color: var(--surface);
  position: relative;
  overflow: hidden;
}

.index-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.05;
  pointer-events: none;
}

.contact-card {
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(51, 36, 31, 0.05);
}

.contact-title {
  color: var(--text-main);
  font-family: var(--font-main);
}

.contact-button {
  background-color: var(--secondary);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  color: #ffffff;
}

/* From ./parts/index-hero.html */

.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slider .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.hero-slider .swiper-slide-active .slide-img {
  transform: scale(1);
}

.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 1.5rem;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* From ./parts/index-shops.html */

.index-shops {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.index-shops .section-title {
  font-family: 'Playfair Display', serif;
}

.shop-card {
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(184, 150, 122, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-8px);
}

.shop-card .image-wrapper {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.shop-card img {
  transition: transform 0.6s ease;
}

.shop-card:hover img {
  transform: scale(1.05);
}

.shop-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border: 1px solid var(--primary);
  color: var(--primary);
}

/* From ./parts/index-news.html */

.index-news-section {
  background-color: var(--bg-light);
  position: relative;
}
.index-news-section .news-container {
  max-width: 1100px;
  margin: 0 auto;
}
.news-card {
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease;
}
.news-card:hover {
  transform: translateY(-8px);
}
.news-card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.news-card-image {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-card:hover .news-card-image {
  transform: scale(1.1);
}
.index-news-category {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 2px 12px;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: inline-block;
  background-color: #fff;
}

/* From ./parts/index-profile.html */

.index-profile {
  background-color: var(--surface);
  position: relative;
  overflow: hidden;
}

.index-profile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/ashen-paper.png');
  opacity: 0.4;
  pointer-events: none;
}

.index-profile .profile-container {
  position: relative;
  z-index: 1;
}

.index-profile .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.index-profile .image-mask {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.index-profile .image-mask.aos-animate {
  clip-path: inset(0 0 0 0);
}

.index-profile .accent-line {
  width: 1px;
  height: 60px;
  background-color: var(--primary);
  margin: 0 auto 2rem;
}

/* From ./parts/index-recruit.html */

.index-recruit {
  position: relative;
  overflow: hidden;
  background-color: var(--surface);
}
.index-recruit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.index-recruit__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 36, 31, 0.9) 0%, rgba(51, 36, 31, 0.4) 100%);
  z-index: 1;
}
.index-recruit__content {
  position: relative;
  z-index: 2;
}
.index-recruit__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.index-recruit__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background-color: var(--primary);
  color: white;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}
.index-recruit__btn:hover {
  background-color: var(--white);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* From ./parts/index-contact.html */

.index-contact {
  background-color: var(--surface);
  position: relative;
  overflow: hidden;
}

.index-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.05;
  pointer-events: none;
}

.contact-card {
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(51, 36, 31, 0.05);
}

.contact-title {
  color: var(--text-main);
  font-family: var(--font-main);
}

.contact-button {
  background-color: var(--secondary);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  color: #ffffff;
}

/* From ./parts/about-content.html */

.about-content-section {
  --tab-active: #b8967a;
  --tab-inactive: #6b5a55;
}

.about-content-section .tab-trigger {
  position: relative;
  transition: color 0.3s ease;
}

.about-content-section .tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--tab-active);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-content-section .tab-trigger.active {
  color: var(--tab-active);
}

.about-content-section .tab-trigger.active::after {
  transform: scaleX(1);
}

.history-line {
  position: relative;
}

.history-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #d1c7bd;
}

.history-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.history-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--tab-active);
}

.form-input {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #d1c7bd;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--tab-active);
}
