/* works記事用スタイル（軽量・SEO重視・スライドショー前提） */
.works-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.7;
  color: #222;
}

.works-article h1 {
  font-size: 1.4rem;
  margin: 16px 0 24px;
  line-height: 1.4;
}

.works-article h2 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  padding-left: 10px;
  border-left: 4px solid #e91e63;
}

.works-hero {
  margin: 0 -16px 16px;
}

.works-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.works-intro {
  font-size: 1rem;
  margin: 16px 0 24px;
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0 24px;
}

.works-gallery-item {
  margin: 0;
}

.works-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.works-section {
  margin: 24px 0;
}

.works-section ul {
  padding-left: 1.2em;
}

.works-section li {
  margin: 6px 0;
}

.works-cta .cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.works-cta .cta-btn:hover {
  background: #c2185b;
}

.site-header {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.site-header .logo {
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
  text-decoration: none;
}

.breadcrumb {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #666;
  background: #fafafa;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 48px;
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #eee;
}

/* worksトップページ（works/index.html） */
.works-index {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.7;
  color: #222;
}
.works-index h1 {
  font-size: 1.5rem;
  margin: 16px 0 12px;
}
.works-index-lead {
  margin-bottom: 32px;
  color: #555;
}
.works-index-section {
  margin: 32px 0;
}
.works-index-section .section-heading {
  font-size: 1.15rem;
  margin: 0 0 16px;
  padding-left: 10px;
  border-left: 4px solid #c27a8e;
}
.works-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.works-index-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #f0e8e4;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.works-index-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.works-index-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
.works-index-card__body {
  padding: 10px 12px;
}
.works-index-card__body h3 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  line-height: 1.3;
}
.works-index-card__body p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}
@media (max-width: 900px) {
  .works-index-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .works-index-grid { grid-template-columns: repeat(2, 1fr); }
  .works-index-card__body h3 { font-size: 0.85rem; }
}

/* 店舗別お客様作品集トップ（works/{shopSlug}/index.html） */
.works-shop-index {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.7;
  color: #222;
}
.works-shop-index h1 {
  font-size: 1.4rem;
  margin: 16px 0 12px;
  line-height: 1.4;
}
.works-shop-index-lead {
  margin-bottom: 32px;
  color: #555;
}
.works-shop-index-section {
  margin: 32px 0;
}
.works-shop-index-section .section-heading {
  font-size: 1.15rem;
  margin: 0 0 16px;
  padding-left: 10px;
  border-left: 4px solid #e91e63;
}
.works-shop-index-section p {
  margin: 8px 0;
}
.works-shop-index-section ul {
  padding-left: 1.2em;
}
.works-shop-index-section li {
  margin: 6px 0;
}
.works-shop-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.works-shop-index-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #f0e8e4;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.works-shop-index-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.works-shop-index-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
.works-shop-index-card__body {
  padding: 8px 10px;
}
.works-shop-index-card__body time {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #c27a8e;
}
.works-shop-index-card__body p {
  font-size: 0.78rem;
  color: #777;
  margin: 2px 0 0;
}
.works-shop-index-cta .cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.works-shop-index-cta .cta-btn:hover { background: #c2185b; color:#fff; }
@media (max-width: 600px) {
  .works-shop-index-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 店舗別ブログトップ NOTE風レイアウト */
.shop-blog {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.7;
  color: #222;
}
.shop-blog-profile {
  padding: 24px 0 20px;
  border-bottom: 1px solid #f0e8e4;
  margin-bottom: 24px;
}
.shop-blog-profile__name {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #222;
}
.shop-blog-profile__bio {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 16px;
  line-height: 1.7;
}
.shop-blog-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.shop-blog-profile__link {
  font-size: 0.85rem;
  color: #c27a8e;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #c27a8e;
  border-radius: 4px;
}
.shop-blog-profile__link:hover {
  background: #fdf0f3;
}
.shop-blog-profile__cta {
  font-size: 0.9rem;
  background: #e91e63;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.shop-blog-profile__cta:hover { background: #c2185b; }
.shop-blog-feed__header h2 {
  font-size: 1rem;
  margin: 0 0 16px;
  color: #888;
  font-weight: 500;
}
.shop-blog-feed__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-blog-post {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #f0e8e4;
  background: #fff;
  transition: box-shadow 0.15s, transform 0.15s;
}
.shop-blog-post:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.shop-blog-post__thumb {
  flex-shrink: 0;
  width: 100px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
}
.shop-blog-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-blog-post__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-blog-post__body time {
  font-size: 0.8rem;
  color: #aaa;
}
.shop-blog-post__title {
  font-size: 1.05rem;
  margin: 4px 0 6px;
  line-height: 1.4;
  color: #333;
  font-weight: 600;
}
.shop-blog-post__excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .shop-blog-post__thumb { width: 80px; height: 110px; }
  .shop-blog-post__title { font-size: 0.95rem; }
  .shop-blog-profile__name { font-size: 1.2rem; }
}
