/*
Theme Name: Demi Project
Theme URI: 
Description: カスタムWordPressテーマ - Demi Project
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
Text Domain: demi-project
Domain Path: /languages
*/

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

/* Base Styles */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1.4;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; /* iOSでの自動フォントサイズ調整を防ぐ */
  -webkit-font-smoothing: antialiased; /* フォントのスムージング */
  -moz-osx-font-smoothing: grayscale;
  font-display: swap; /* フォント読み込み最適化 */
}
/* p {
  font-size: 20px;
} */
h1,
h2,
h3 {
  font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
}

/* Container */
.container {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
}

/* Header */
.site-header {
  padding: 50px 70px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 755px;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Logo */
.site-logo {
  width: 120px;
  height: 140px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
/* ボタン */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #000000;
  padding: 15px 45px 15px 30px;
  text-decoration: none;
  border: 1px solid #000000;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 500;
  min-width: 200px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  margin-top: 1.5rem;
  font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
}

.button::after {
  content: ">";
  font-size: 22px;
  font-weight: 400;
  position: absolute;
  right: 15px;
  top: 12px;
  /* transform: translateY(-50%); */
  transition: transform 0.3s ease;
}

.button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Small Button Variant */
.button.small,
.button-small {
  padding: 12px 25px;
  font-size: 14px;
  min-width: 150px;
}

.button.small::after,
.button-small::after {
  font-size: 16px;
  margin-left: 10px;
}

/* Navigation */
.main-navigation {
  display: block;
  visibility: visible;
  align-self: flex-start;
}

.main-navigation ul,
.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  visibility: visible;
  opacity: 1;
  align-items: flex-start; /* メニュー項目を上揃え */
}

.main-navigation li {
  margin: 0;
  padding: 0;
  display: list-item;
  position: relative;
}

/* メニュー項目の間に縦棒を追加 */
.main-navigation li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.8rem; /* gap(2rem)の半分の位置に配置 */
  top: 0;
  line-height: 1.4; /* メニューテキストと同じline-heightに合わせる */
  color: #333;
  font-weight: 700;
  font-size: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}

body.page-about .main-navigation li::after {
  color: #ffffff;
}

.main-navigation a {
  text-decoration: none;
  color: #000000;
  font-size: 20px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.1px;
  transition: color 0.3s ease;
  padding: 0 1rem;
  border-bottom: 2px solid transparent;
  display: block;
  visibility: visible;
  line-height: 1.4;
}
body.page-about .main-navigation a {
  color: #ffffff;
}

.main-navigation a:hover {
  color: #009042;
  border-bottom-color: #009042;
}

/* デスクトップ版ではモバイル専用ロゴを非表示 */
.mobile-menu-logo {
  display: none !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 755px;
  background-color: #333; /* フォールバック背景色 */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: white;
  overflow: hidden; /* スライドショー用に追加 */
}

/* スライドショー用のスタイル */
.hero-section.slideshow-active {
  transition: none; /* JavaScript側で制御 */
}

.hero-section.slideshow-transitioning {
  transition: background-image 1s ease-in-out;
}

/* フロントページのデフォルト背景画像 */
.hero-section:not([style*="background-image"]) {
  background-image: url("images/tanbo_blue.jpg");
}

.hero-content {
  padding-bottom: 70px;
  padding-left: 70px;
  max-width: 600px; /* 最大幅を設定 */
  position: relative;
  z-index: 10; /* スライドショーアニメーションの前面に表示 */
}
body.page-company .hero-content,
body.page-recruit .hero-content {
  color: #000000;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 4.7px;
}

.hero-content .subtitle {
  font-family: Helvetica;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

/* Main Content */
.content-area {
  background-color: #fff;
  margin: 0 0 100px 0;
}

/* Section Styles */
.content-section {
  padding: 20px 70px 30px 70px;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 80px;
  align-items: start;
}
body.page-about .content-section,
body.page-company .content-section,
body.page-recruit .content-section {
  grid-template-columns: 1fr 1fr;
}

.content-section:last-child {
  border-bottom: none;
}

.section-header {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  color: #000000;
  margin-bottom: 1rem;
  padding-bottom: 0;
  display: inline-block;
  font-family: "Noto Serif JP", "RyuminPro Bold-83pv-RKSJ-H";
  font-weight: bold;
  font-size: 38px;
  line-height: 43px;
  letter-spacing: 2px;
}
.section-title-sub {
  font-size: 24px;
  line-height: 27px;
  letter-spacing: 0.4px;
  margin-bottom: 0;
  font-weight: 400;
  margin-top: 32px;
  font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
}
.section-header-content-text {
  display: flex;
  flex-direction: row;
  margin-top: -8px;
}
body.page-company .section-title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
body.page-company .section-title a {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.4px;
  margin-bottom: 0;
  font-weight: 400;
  text-decoration: none;
  color: #000000;
}
.company-title {
  letter-spacing: -3px;
}
.online-shop-title {
  letter-spacing: -7px;
}

.content-text-title {
  font-size: 26px;
  font-weight: 400;
}
.content-text-address {
  max-width: -8px;
  margin-bottom: 24px;
}
.section-subtitle {
  color: #009042;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.content-text-title-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-image-instagram {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 20px 30px 0 30px;
}
/* スクロールアニメーション基本設定 */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 左からスライドイン */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

/* 右からスライドイン */
.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* スケールアニメーション */
.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.animate {
  opacity: 1;
  transform: scale(1);
}

/* 遅延アニメーション用 */
.scroll-animate.delay-100 {
  transition-delay: 0.1s;
}
.scroll-animate.delay-200 {
  transition-delay: 0.2s;
}
.scroll-animate.delay-300 {
  transition-delay: 0.3s;
}
.scroll-animate.delay-400 {
  transition-delay: 0.4s;
}
.scroll-animate.delay-500 {
  transition-delay: 0.5s;
}

.line-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 50px 70px 0 70px;
  opacity: 1; /* 初期状態で確実に表示 */
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  visibility: visible;
  width: 100%;
  min-height: 20px; /* 最小高さを確保 */
}
.line-none {
  display: none !important;
}

/* アニメーション対応版 */
.line-container.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
}

.line-container.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.line {
  width: 100%;
  height: 2px;
  background-color: #009042;
  position: relative;
  overflow: hidden;
  display: block;
  visibility: visible;
  opacity: 1;
}

/* 線のアニメーション効果 */
.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #009042, transparent);
  transition: left 1.5s ease-out;
}

/* アニメーション実行時のみ光沢効果を発動 */
.line-container.animate .line::before,
.line-container.scroll-animate.animate .line::before {
  left: 100%;
}

.content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.content-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #009042;
}

.content-text p {
  line-height: 1.8;
}

.content-image {
  margin-top: -33px;
  width: 920px;
  height: 470px;
}
.no-title-image {
  margin-top: -20px;
}

body.page-about .content-image,
body.page-company .content-image,
body.page-recruit .content-image {
  width: 650px;
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* News Section */
.news-list {
  list-style: none;
  grid-column: 2; /* 第2カラムに配置 */
}

.news-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-date {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: #333;
  min-width: 120px;
  text-align: center;
  border-radius: 4px;
}

.news-title {
  flex: 1;
  color: #000000;
  text-decoration: none;
}

.news-title:hover {
  color: #009042;
}
.section-header-logo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.logo-image {
  width: 120px;
  height: 80px;
  object-fit: contain;
}

/* History List */
.history-content {
  margin-top: -24px;
}
.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 900px;
}

.history-list li {
  padding: 1rem 2rem;
  border-bottom: 1px solid #231815;
  line-height: 1.6;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 80px;
  font-size: 26px;
}

/* .history-list li:last-child {
  border-bottom: none;
} */

.history-list li div {
  font-size: 16px;
  width: 80px;
}

.section-header-content p {
  font-size: 16px;
}

/* 店舗一覧 */
.section-title-shops {
  padding-left: 70px;
  padding-top: 20px;
}

.shop-list-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.shop-list-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  gap: 20px;
}
.shop-list-img-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.shop-list-img-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.shop-list-title {
  font-size: 30px;
  font-weight: 400;
}

.shop-list-text {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 200px;
}

.shop-list-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.shop-list-info-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shop-list-info-text h4 {
  font-size: 28px;
  font-weight: 400;
}

.shop-list-info-text p {
  font-size: 16px;
  font-weight: 400;
}

.shop-list-info a {
  text-decoration: none;
}

.instagram-icon {
  width: 70px;
  height: 70px;
}

.content-text-recruit {
  font-size: 24px;
  font-weight: 400;
}

/* Content Text Headings */
.content-text h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  color: #009042;
  font-weight: bold;
}

.content-text h3:first-child {
  margin-top: 0;
}

.contact-button {
  background-color: #009042;
  color: #ffffff;
}
.contact-button:hover {
  color: #009042;
  border-color: #009042;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ハンバーガーメニューのアニメーション */
.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   レスポンシブ メディアクエリ
======================================== */

/* Footer */
.site-footer {
  border-top: 10px solid #009042;
  color: #000000;
  padding: 3rem 70px 1rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 50px;
  margin-bottom: 2rem;
}

/* Footer Logo Column */
.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-logo .site-logo {
  width: 90px;
  height: auto;
}

/* Footer Company Column */
.footer-company h3 {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.4px;
  margin-bottom: 1rem;
}

.footer-company p {
  font-family: "小塚ゴシック Pr6N", sans-serif;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.3px;
  margin-bottom: 0.5rem;
}

/* Footer Info Column */
.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-menu-first,
.footer-menu-second {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.footer-menu-first li,
.footer-menu-second li {
  margin: 0;
  padding: 0;
}

.footer-navigation a {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01px;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 0 0.5rem;
}

.menu-separator {
  color: #000000;
  margin: 0 1rem;
  padding: 0;
}

.footer-bottom p {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  line-height: 26.15px;
  letter-spacing: 0.2px;
  text-align: left;
  padding: 0 8px;
}

/* ========================================
   投稿表示用スタイル（デスクトップ）
======================================== */

/* 単一投稿ページ (single.php) */
.single-post-container {
  max-width: 1440px;
  margin-top: 100px;
}

.post-header {
  margin-bottom: 40px;
  text-align: center;
}

.post-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #333;
}

.post-meta time,
.post-meta .author,
.post-meta .categories {
  display: flex;
  align-items: center;
}

.post-meta a {
  color: #009042;
  text-decoration: none;
}

.post-meta a:hover {
  color: #009042;
  font-weight: bold;
}

.post-thumbnail {
  margin-bottom: 40px;
  text-align: center;
}

.post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}

.post-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
  padding: 0 70px;
  margin: 0 auto;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 40px 0 20px;
  color: #333;
}

.post-content h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #009042;
  padding-bottom: 10px;
}

.post-content h3 {
  font-size: 1.5rem;
}

.post-content h4 {
  font-size: 1.3rem;
}

.post-content p {
  margin-bottom: 0.9rem;
}

.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
}

.post-tags {
  font-size: 0.9rem;
}

.post-tags a {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  padding: 4px 12px;
  margin: 2px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: #007cba;
  color: white;
}

/* 投稿ナビゲーション */
.post-navigation {
  margin: 60px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 0;
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.nav-previous,
.nav-next {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-previous a,
.nav-next a {
  text-decoration: none;
  color: #333;
  display: block;
}

.nav-subtitle {
  display: block;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 8px;
}

.nav-title {
  font-weight: bold;
  font-size: 1rem;
}

.nav-next {
  text-align: right;
}

/* 関連記事 */
.related-posts {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.related-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.related-post {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-post:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.related-post a {
  text-decoration: none;
  color: #333;
  display: block;
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 15px;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.related-post time {
  padding: 0 15px 15px;
  font-size: 0.85rem;
  color: #333;
}

/* アーカイブページ (archive.php, index.php) */
.archive-header {
  margin-top: 80px;
  margin-bottom: 60px;
  text-align: center;
}

.archive-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
}

.archive-description {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}

.posts-container {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 70px;
}

.post-card {
  display: flex;
  gap: 30px;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
}

.post-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.post-card .post-thumbnail {
  flex-shrink: 0;
  width: 200px;
  margin-bottom: 0;
}

.post-card .post-thumbnail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.post-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card .post-header {
  margin-bottom: 15px;
  text-align: left;
}

.post-card .post-meta {
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.post-date {
  font-weight: bold;
  color: #009042;
}

.post-categories {
  display: flex;
  gap: 8px;
}

.post-categories a {
  background: #f0f0f0;
  color: #333;
  padding: 4px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.post-categories a:hover {
  background: #009042;
  color: white;
}

.post-card .post-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: left;
}

.post-card .post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card .post-title a:hover {
  color: #009042;
}

.post-excerpt {
  flex: 1;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-card .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding-top: 0;
  text-align: left;
}

.read-more {
  background: #009042;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #009042;
  transform: translateY(-1px);
}

/* ページネーション */
.pagination {
  text-align: center;
  margin: 60px 0;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  grid-template-columns: none;
}

.pagination a,
.pagination .current {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #009042;
  color: white;
  border-color: #009042;
}

.pagination .current {
  background: #009042;
  color: white;
  border-color: #009042;
}

/* エラーページ */
.no-posts {
  text-align: center;
  padding: 80px 20px;
}

.no-posts-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.no-posts-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
}

/* ========================================
   404エラーページスタイル（デスクトップ）
======================================== */

.error-404-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 200px auto 100px auto;
}

.error-404-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* エラーナンバー */
.error-number {
  margin-bottom: 20px;
}

.error-404 {
  font-size: 8rem;
  font-weight: bold;
  color: #009042;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
  line-height: 1;
  letter-spacing: -0.05em;
}

/* エラーメッセージ */
.error-message {
  max-width: 600px;
  margin: 0 auto;
}

.error-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.error-description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}


/* ========================================
   レスポンシブ メディアクエリ（整理済み）
   
   ブレークポイント構成:
   - デスクトップ: 1024px超（デフォルト）
   - タブレット: 1024px以下
   - 中間サイズ: 601px-768px
   - モバイル: 600px以下
   - 小型モバイル: 480px以下
   - 超小型: 320px以下
   
   特殊用途:
   - reduced-motion: アニメーション無効
   - hover: none: タッチデバイス向け
   - retina: 高解像度ディスプレイ
   - print: 印刷用
   - landscape: 横向き表示
======================================== */

/* 特殊用途・機能固有のメディアクエリ */
/* モーション設定を無効にするユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .scroll-slide-left,
  .scroll-slide-right,
  .scroll-scale,
  .line-container,
  .line::before {
    transition: none;
    animation: none;
  }

  .scroll-animate,
  .scroll-slide-left,
  .scroll-slide-right,
  .scroll-scale,
  .line-container {
    opacity: 1;
    transform: none;
  }
}

/* タッチデバイス向け（モバイル・タブレット）のスタイル */
@media (hover: none) and (pointer: coarse) {
  /* タッチデバイス向けのボタンサイズ調整 */
  .button {
    min-height: 48px; /* iOS推奨の最小タッチターゲットサイズ */
    padding: 14px 30px 14px 20px;
    font-size: 1rem;
    min-width: 180px;
    text-align: center;
  }

  .button::after {
    transform: translateY(-18%);
    font-size: 20px;
  }

  .button.small,
  .button-small {
    min-height: 44px;
    padding: 12px 24px 12px 16px;
    font-size: 0.9rem;
  }

  /* タッチデバイス向けのホバー効果無効化 */
  .button:hover {
    transform: none;
  }

  .button:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .main-navigation a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* モバイルでのアニメーション最適化 */
  .scroll-animate,
  .scroll-slide-left,
  .scroll-slide-right,
  .scroll-scale {
    transition-duration: 0.5s;
  }

  .line-container {
    transition-duration: 0.6s;
  }

  .line::before {
    transition-duration: 1s;
  }
}

/* 高解像度ディスプレイ向け */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .content-image img,
  .shop-list-img-img,
  .shop-list-img-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* プリント用スタイル */
@media print {
  .site-header,
  .menu-toggle,
  .main-navigation,
  .button {
    display: none;
  }

  .hero-section {
    height: auto;
    background: none;
    color: #000;
  }

  .content-section {
    padding: 1rem 0;
    gap: 1rem;
  }

  .site-footer {
    border-top: 2px solid #000;
    margin-top: 2rem;
  }
}

/* ========================================
   ブレークポイント別レスポンシブスタイル
======================================== */

/* デスクトップ（1024px超）- デフォルトスタイルのため記述不要 */

/* 1400px以下 - ロゴの下にメニュー配置 */
@media (max-width: 1400px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .site-branding {
    text-align: center;
  }

  .main-navigation {
    width: 100%;
    text-align: center;
  }

  .main-navigation ul,
  .nav-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .main-navigation a {
    font-size: 14px;
    padding: 0 0.8rem;
  }

  /* 縦棒の位置調整 */
  .main-navigation li:not(:last-child)::after {
    right: -0.5rem;
    font-size: 14px;
  }

  /* モバイル版ロゴを非表示 */
  .mobile-menu-logo {
    display: none !important;
  }
  
  .footer-content{
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }
  .footer-company-info {
    align-items: center;
    margin-top: 0;
  }
}

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .site-header {
    padding: 30px 20px;
  }

  .hero-content {
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 3px;
  }

  .content-section {
    padding: 20px 20px 30px 20px;
    gap: 40px;
  }

  .content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  body.page-about .content-image,
  body.page-company .content-image,
  body.page-recruit .content-image {
    width: 100%;
    max-width: 500px;
  }

  .history-list {
    width: 100%;
    max-width: 700px;
  }

  .history-list li {
    gap: 40px;
    font-size: 22px;
  }

  .section-title {
    font-size: 32px;
    line-height: 38px;
  }

  .site-footer {
    padding: 2rem 20px 1rem;
  }

  .footer-content {
    gap: 30px;
  }

  .line-container {
    padding: 30px 20px 0 20px;
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .section-title-shops {
    padding-left: 20px;
  }

  .shop-list-img-img {
    width: 250px;
    height: 250px;
  }

  .shop-list-img-logo {
    width: 120px;
    height: 120px;
  }
}

/* タブレット横向き・中間サイズ（768px以下） */
@media (max-width: 768px) {
  /* 投稿表示用スタイル */
  .single-post-container {
    margin-top: 60px;
    padding: 0 20px;
  }

  .post-header {
    margin-bottom: 30px;
    text-align: left;
  }

  .post-title {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
  }

  .post-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0.9rem;
  }

  .post-thumbnail {
    margin-bottom: 20px;
  }

  .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .post-content {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 !important;
  }

  .post-content h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    padding-bottom: 8px;
  }

  .post-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
  }

  .post-content h4 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
  }

  .post-content p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .post-content ul,
  .post-content ol {
    margin: 15px 0;
    padding-left: 20px;
  }

  .post-content li {
    margin-bottom: 6px;
    line-height: 1.6;
  }

  .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 15px 0;
  }

  .post-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #009042;
    background-color: #f9f9f9;
    font-style: italic;
    border-radius: 0 6px 6px 0;
  }

  /* 404エラーページ用 */
  .error-404-section {
    padding: 40px 15px;
    margin: 80px auto 80px auto;
  }

  .error-404-content {
    gap: 40px;
  }

  .error-404 {
    font-size: 5rem;
  }

  .error-title {
    font-size: 1.8rem;
  }

  .error-description {
    font-size: 1rem;
  }

  /* その他共通要素 */
  .nav-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* 横向きスマートフォン・小型タブレット（768px以下で横向き） */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .content-section {
    padding: 15px 15px 20px 15px;
  }
}

/* 中間サイズでのメニュー調整（601px-768px） */
@media (min-width: 601px) and (max-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul,
  .nav-menu {
    display: flex;
    position: static;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    z-index: auto;
  }

  .nav-menu li {
    margin: 0 0.5rem;
  }

  .nav-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
    border: none;
  }

  /* 中間サイズでもモバイル版ロゴを非表示 */
  .mobile-menu-logo {
    display: none !important;
  }
}

/* モバイル（600px以下） */
@media (max-width: 600px) {
  /* ヘッダーレイアウトを1400px以下の設定より優先 */
  .header-content {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .site-branding {
    text-align: left !important;
  }

  .main-navigation {
    width: auto !important;
    text-align: right !important;
    align-self: center;
  }
  .main-navigation ul,
  .nav-menu {
    justify-content: flex-start;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
  }

  .menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-14px);
  }

  .main-navigation ul,
  .nav-menu {
    display: none;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .main-navigation.toggled ul,
  .main-navigation.toggled .nav-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  /* モバイルでは縦棒を非表示 */
  .main-navigation li::after {
    display: none;
  }

  /* モバイル版メニューのロゴスタイル */
  .mobile-menu-logo {
    display: block !important;
    padding: 20px 0 10px 0;
    margin: 20px 0;
  }

  .mobile-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-logo-img {
    max-width: 80px;
    height: auto;
  }

  .nav-menu li {
    text-align: center;
  }

  .nav-menu a {
    display: block;
    color: #333 !important;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    min-width: 200px;
  }

  .nav-menu a:hover {
    color: #009042;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    position: fixed;
    padding: 15px;
    height: auto;
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-logo {
    width: 80px;
    height: 90px;
  }

  body {
    padding-top: 120px;
  }

  .hero-section {
    height: 500px;
    margin-top: 0;
  }

  .hero-content {
    padding: 0 20px 40px 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 2px;
  }

  .hero-content .subtitle {
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .content-section {
    padding: 30px 20px;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.page-about .content-section,
  body.page-company .content-section,
  body.page-recruit .content-section {
    grid-template-columns: 1fr;
  }

  .section-header {
    width: 100%;
  }

  .section-title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  body.page-company .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-title-sub {
    font-size: 16px;
    line-height: 20px;
  }
  .section-header-content-text {
    flex-direction: column;
    margin-top: -16px;
    margin-bottom: 16px;
    gap: 4px;
  }
  .content-text {
    width: 100%;
  }

  .content-text-title {
    font-size: 22px;
  }

  .posts-container {
    padding: 0 20px;
    gap: 30px;
    margin-bottom: 40px;
  }

  .content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: flex-start;
  }

  body.page-about .content {
    align-items: normal;
    text-align: left;
  }

  .content-image {
    width: 100%;
    height: 200px;
    margin-top: 0;
    padding-bottom: 20px;
  }

  .section-header-content p {
    font-size: 11px;
  }

  /* トップページの画像を横長に */
  body.home .content-image {
    width: 100%;
    height: 100%;
  }

  body.page-about .content-image,
  body.page-company .content-image,
  body.page-recruit .content-image {
    width: 100%;
    height: 250px;
  }

  .content-image img {
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
  }

  /* トップページの画像をより横長に */
  body.home .content-image img {
    aspect-ratio: 16/9;
    height: auto;
    min-height: 140px;
  }

  .news-list {
    grid-column: 1;
  }

  .news-item {
    align-items: flex-start;
    gap: 0.5rem;
  }

  .news-date {
    margin-right: 0;
    min-width: auto;
    text-align: left;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }

  .history-list {
    width: 100%;
  }

  .history-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 18px;
    padding: 1.5rem 0;
  }

  .history-list li div {
    font-size: 14px;
    width: auto;
    font-weight: bold;
    color: #009042;
  }

  .line-container {
    padding: 20px 15px 0 15px;
    display: flex;
    opacity: 1; /* モバイルでは確実に表示 */
    visibility: visible;
    transform: translateY(0);
  }

  .line-none{
    display: flex !important;
  }

  .section-title-shops {
    padding-left: 15px;
    text-align: center;
  }

  .shop-list-content {
    gap: 30px;
    padding: 0 15px;
  }

  .shop-list-img {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .shop-list-img-img {
    width: 100%;
    max-width: 280px;
    height: 200px;
    margin: 0 auto;
  }

  .shop-list-img-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .shop-list-text {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .shop-list-title h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .shop-list-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .shop-list-info {
    gap: 15px;
    align-items: center;
  }

  .shop-list-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .shop-list-info-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .instagram-icon {
    width: 50px;
    height: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo .site-logo {
    width: 60px;
    height: 70px;
  }

  .footer-company-info {
    margin-top: 20px;
  }

  .footer-menu-first,
  .footer-menu-second {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .footer-navigation {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .footer-menu-first,
  .footer-menu-second {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-navigation a {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .menu-separator {
    display: none;
  }

  .menu-separator {
    margin: 0 0.5rem;
  }

  .site-footer {
    padding: 2rem 15px 1rem;
  }

  /* Mobile Button Styles */
  .button {
    min-width: 160px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .button.small,
  .button-small {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .content-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    text-align: center;
  }

  .content-text p {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .column-reverse {
    flex-direction: column-reverse;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-company-info {
    align-items: center;
  }

  .footer-content {
    margin-bottom: 0;
  }
}

/* 小型スマートフォン（480px以下） */
@media (max-width: 480px) {
  .site-header {
    padding: 12px;
  }

  /* 404エラーページ用（小型モバイル） */
  .error-404 {
    font-size: 4rem;
  }

  .error-title {
    font-size: 1.5rem;
  }

  /* 投稿表示の小型モバイル最適化 */
  .single-post-container {
    padding: 0 15px;
    margin-top: 50px;
  }

  .post-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .post-meta {
    font-size: 0.85rem;
    gap: 6px;
  }

  .post-content {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .post-content h2 {
    font-size: 1.25rem;
    margin: 25px 0 12px;
  }

  .post-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
  }

  .post-content h4 {
    font-size: 1rem;
    margin: 18px 0 8px;
  }

  .post-content ul,
  .post-content ol {
    padding-left: 15px;
  }

  .post-content blockquote {
    padding: 12px 15px;
    margin: 15px 0;
  }

  .nav-previous,
  .nav-next {
    padding: 12px;
  }

  .nav-subtitle {
    font-size: 0.8rem;
  }

  .nav-title {
    font-size: 0.9rem;
  }

  .related-posts h3 {
    font-size: 1.2rem;
  }

  .related-post img {
    height: 160px;
  }

  .related-post h4 {
    font-size: 0.9rem;
    margin: 12px 12px 8px;
  }

  .related-post time {
    font-size: 0.8rem;
    margin: 0 12px 12px;
  }

  .site-logo {
    width: 70px;
    height: 80px;
  }

  body {
    padding-top: 100px;
  }

  .hero-section {
    height: 400px;
  }

  .hero-content {
    padding: 0 15px 30px 15px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1.5px;
  }

  .hero-content .subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .content-section {
    padding: 15px 10px 20px 10px;
    gap: 20px;
  }

  .section-title {
    font-size: 22px;
    line-height: 28px;
  }

  .content-text-title {
    font-size: 18px !important;
  }

  .content-image {
    height: 200px;
  }

  .history-list li {
    font-size: 16px;
    padding: 1.2rem 0;
  }

  .history-list li div {
    font-size: 12px;
  }

  .line-container {
    padding: 15px 10px 0 10px;
    display: flex;
    opacity: 1; /* 小型デバイスでも確実に表示 */
    visibility: visible;
    transform: translateY(0);
  }

  .section-title-shops {
    padding-left: 10px;
  }

  .shop-list-content {
    padding: 0 10px;
    gap: 25px;
  }

  .shop-list-img-img {
    max-width: 240px;
    height: 180px;
  }

  .shop-list-img-logo {
    width: 80px;
    height: 80px;
  }

  .shop-list-title {
    font-size: 20px;
  }

  .shop-list-info-text h4 {
    font-size: 18px;
  }

  .shop-list-info-text p {
    font-size: 13px;
  }

  .instagram-icon {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding: 1.5rem 10px 1rem;
  }

  .footer-navigation a {
    font-size: 0.8rem;
    padding: 0.3rem;
  }

  .button {
    min-width: 160px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .button.small,
  .button-small {
    min-width: 100px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .content-text h3 {
    font-size: 1.1rem;
    margin: 1.2rem 0 0.8rem 0;
  }

  .content-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-button {
    margin-top: 1.5rem;
  }

  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* 超小型デバイス（320px以下） */
@media (max-width: 320px) {
  .site-header {
    padding: 10px;
  }

  .site-logo {
    width: 60px;
    height: 70px;
  }

  .hero-content h1 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1px;
  }

  .hero-content .subtitle {
    font-size: 11px;
  }

  .section-title {
    font-size: 20px;
    line-height: 26px;
  }

  .content-section {
    padding: 12px 8px 15px 8px;
  }

  .button {
    min-width: 120px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .button.small,
  .button-small {
    min-width: 90px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .shop-list-img-img {
    max-width: 200px;
    height: 150px;
  }

  .shop-list-img-logo {
    width: 60px;
    height: 60px;
  }

  .instagram-icon {
    width: 30px;
    height: 30px;
  }

  .site-footer {
    padding: 1rem 8px 0.5rem;
  }
}

