:root {
  --primary-color: #3b82f6;
  --secondary-color: #6b7280;
  --background-color: #f9fafb;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --red-500: #ef4444;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --green-500: #22c55e;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-800);
  line-height: 1.5;
  background-color: var(--gray-50);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

.logo img {
  height: 2rem;
}

.search-box {
  flex: 1;
  max-width: 32rem;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .search-box {
    display: block;
  }
}

.search-box input {
  width: 100%;
  padding: 0.5rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  background-color: var(--gray-100);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray-600);
  font-size: 0.75rem;
}

.header-icon svg {
  margin-bottom: 0.25rem;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background-color: var(--red-500);
  color: var(--white);
  font-size: 0.75rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-button {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  /* background-color: var(--orange-500);
  color: var(--white); */
   background-color: #7ac47f; /* 明るい薄オレンジ */
  color: #333; /* 文字は濃いグレーにして見やすく */
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.contact-button:hover {
  /* background-color: var(--orange-600); */
     background-color: #7ac47f; /* 明るい薄オレンジ */

}

.phone-number {
  font-weight: 500;
}

.phone-hours {
  font-size: 0.75rem;
}

@media (min-width: 1024px) {
  .contact-button {
    display: flex;
  }
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Navigation Styles */
.main-nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.nav-list {
  display: flex;
  gap: 2rem;
  padding: 0.75rem 0;
  overflow-x: auto;
  white-space: nowrap;
  list-style: none;
}

.nav-list li a {
  color: var(--gray-600);
  transition: color 0.2s;
  font-size: 0.875rem;
}

.nav-list li a:hover {
  color: var(--gray-900);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav ul li a:hover {
  background-color: var(--gray-50);
  color: var(--gray-900);
}

/* Main Content Layout */
.main-content {
  padding: 1.5rem 0;
}

.content-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .content-layout {
    flex-direction: row;
  }
}

/* Sidebar Styles */
.sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .sidebar {
    width: 16rem;
    flex-shrink: 0;
  }
}

.sidebar-container {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.sidebar-section {
  border-bottom: 1px solid var(--gray-200);
}

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

.sidebar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  padding: 0.75rem 1rem;
  background-color: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  margin: 0 1rem;
  text-align: left;
  border-radius: 0.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0 1rem 0.75rem 1rem;
}

.sidebar-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.sidebar-menu li:last-child a {
  border-bottom: none;
}

.sidebar-menu li a:hover {
  background-color: var(--gray-50);
  color: var(--blue-600);
  padding-left: 1rem;
}

.arrow {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.sidebar-menu li a:hover .arrow {
  color: var(--blue-600);
}

/* Content Area */
.content-area {
  flex: 1;
}

/* Hero Slider - Compact Design */
.hero-slider {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slides-container {
  position: relative;
  height: 125px; /* Half of original mobile size */
  width: 100%;
}

/* Responsive heights for different screen sizes - All reduced by half */
@media (min-width: 480px) {
  .slides-container {
    height: 150px; /* Half of 300px */
  }
}

@media (min-width: 768px) {
  .slides-container {
    height: 200px; /* Half of 400px */
  }
}

@media (min-width: 1024px) {
  .slides-container {
    height: 225px; /* Half of 450px */
  }
}

@media (min-width: 1280px) {
  .slides-container {
    height: 250px; /* Half of 500px */
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 1;
  width: 90%;
  max-width: 800px;
  padding: 0.5rem;
}

.slide-content h2 {
  font-size: 1rem; /* Reduced font size for compact design */
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

@media (min-width: 480px) {
  .slide-content h2 {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .slide-content h2 {
    font-size: 1.25rem;
  }
  .slide-content {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  .slide-content h2 {
    font-size: 1.5rem;
  }
  .slide-content {
    width: 70%;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  width: 1.5rem; /* Smaller arrows for compact design */
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.2s ease;

  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .slider-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-arrow.prev {
  left: 0.5rem;
}

.slider-arrow.next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .slider-arrow.prev {
    left: 0.75rem;
  }
  .slider-arrow.next {
    right: 0.75rem;
  }
}

.slider-dots {
  position: absolute;
  bottom: 0.5rem; /* Closer to bottom for compact design */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem; /* Smaller gap */
  z-index: 2;
}

@media (min-width: 768px) {
  .slider-dots {
    bottom: 0.75rem;
    gap: 0.5rem;
  }
}

.dot {
  width: 0.375rem; /* Smaller dots */
  height: 0.375rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

/* Service Features */
.service-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
}

.feature-icon {
  color: var(--blue-500);
}

/* Services Section */
.services-section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-header {
  background: linear-gradient(to right, var(--blue-500), var(--blue-700));
  color: var(--white);
  padding: 0.5rem 1rem;
}

.service-header h3 {
  font-size: 1rem;
  font-weight: 500;
}

.service-content {
  display: flex;
  padding: 1rem;
}

.service-image {
  width: 40%;
  flex-shrink: 0;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-info {
  padding-left: 1rem;
  flex: 1;
}

.service-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  background-color: var(--blue-50);
  color: var(--blue-600);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.more-link {
  font-size: 0.875rem;
  color: var(--blue-600);
  font-weight: 500;
  display: inline-block;
  transition: color 0.2s;
}

.more-link:hover {
  color: var(--blue-700);
}

/* Company Info Section */
.company-info-section {
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 3rem;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .company-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.company-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company-link-item {
  display: block;
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.company-link-item:hover {
  background-color: var(--gray-50);
}

.company-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-link {
  color: var(--blue-600);
}

.privacy-link:hover {
  text-decoration: underline;
}

.line-button {
  height: 2.25rem;
  width: auto;
}

/* Blog Section */
.blog-section {
  margin-bottom: 3rem;
}

.blog-intro {
  margin-bottom: 2rem;
}

.blog-intro h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-post {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-image {
  display: block;
  height: 12rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .content-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-actions .contact-button {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-list {
    gap: 1rem;
  }
}

.hero-slider .slides-container {
  position: relative;
  overflow: hidden;
}
.hero-slider .slide {
  display: none;
}
.hero-slider .slide.active {
  display: block;
}
.hero-slider img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-slider .slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}
.hero-slider .slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
}
.hero-slider .slider-dots .dot.active {
  background: #333;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}




/* ===== 人気サービスサムネイル：常時3列配置 ===== */
.thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.thumbnail:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.thumbnail figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-800);
}

.thumbnail figcaption h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.thumbnail figcaption p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* スマホ時は2列 */
@media (max-width: 768px) {
  .thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}







/* ===========================
   映像企画・制作ページ用スタイル
   =========================== */

/* パンくず */
.breadcrumb-nav {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb-item a {
  color: var(--blue-600);
  text-decoration: none;
}

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

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin: 0 0.25rem;
  color: var(--gray-400);
}

/* ページ見出し */
.page-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1rem;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.page-lead {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* 企画から始める映像制作サービス */
.video-planning-intro {
  margin-bottom: 2.5rem;
}

.video-planning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .video-planning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-planning-item {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.video-planning-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.video-planning-item p {
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* 実績グリッド */
.video-works-section {
  margin-bottom: 3rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* カード */
.video-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* 動画部分 */
.video-thumb {
  width: 100%;
  background-color: var(--black);
}

.video-thumb video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
}

/* テキスト部分 */
.video-body {
  padding: 0.75rem 1rem 1rem;
}

.video-client {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.video-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.video-meta {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}




/* ===== パンくず ===== video-planningの*/
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.breadcrumb a {
  color: var(--blue-600);
  text-decoration: none;
}

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



.disabled-link {
  pointer-events: none;
  cursor: default;
  opacity: 0.7;
}



/* ===== index.php h1 ===== video-planningの*/



.page-header {
  margin: 0 0 16px;
}

.page-title {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 700;
}

.page-lead {
  margin: 0 0 16px;
  font-size: 14px;
  color: #555;
}




/* ===== フッター全体 ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 32px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== １カラム（スマホ〜タブレット） ===== */
.footer-top {
  display: flex;
  flex-direction: column;    /* ★スマホは縦並び */
  gap: 24px;
}

.footer-column {
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-column:first-child {
  border-top: none;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 2px 0;
}

/* SNS */
.footer-social {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social .social-link {
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

/* ===== ここから PC（横幅768px以上で3カラム） ===== */
@media (min-width: 768px) {

  .footer-top {
    flex-direction: row;      /* ★PCでは横並びに変更 */
    justify-content: space-between;
    gap: 32px;
  }

  .footer-column {
    border-top: none;         /* PCでは線を消す */
    flex: 1;                  /* 3カラムに均等割り当て */
    max-width: 33%;
  }

  .footer-column:not(:last-child) {
    margin-right: 16px;
  }
}

/* ===== コピーライト ===== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 24px;
  padding-top: 12px;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
   opacity: 0.8;
}





/* ===== お知らせセクション ===== */
.news-section {
  margin-bottom: 2.5rem;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gray-200);
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}

.news-date {
  color: var(--gray-500);
  min-width: 8rem;  /* 日付部分の幅をそろえる */
}

.news-link {
  color: var(--blue-600);
}

.news-link:hover {
  text-decoration: underline;
}

.news-more {
  margin-top: 0.5rem;
  text-align: right;
}

.news-more a {
  font-size: 0.85rem;
  color: var(--blue-600);
}

.news-list {
  font-size: 0.9rem;
  line-height: 1.6;
}

.news-more {
  text-align: right;
  margin-top: 4px;
}


/* ========= お知らせ詳細ページ用 ========= */

/* パンくずを少し小さく＆下に余白 */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

/* 記事全体：横幅を細くして中央にカード表示 */
.news-article {
  max-width: 760px;             /* 読みやすい行幅に制限 */
  margin: 0 auto 3rem;          /* 中央寄せ＋下に余白 */
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* スマホは少し余白を小さく */
@media (max-width: 768px) {
  .news-article {
    margin: 0 0 2rem;
    padding: 1.25rem 1.25rem;
  }
}

/* 見出しまわり */
.news-article .page-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.news-article .page-title {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.news-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* 本文 */
.news-body p {
  margin-bottom: 1rem;
  line-height: 1.9;      /* 行間をゆったり */
  font-size: 0.95rem;
}

/* 小見出し（■ 新料金の適用開始日 のところ用） */
.news-body h2 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.75rem;
  border-left: 4px solid var(--blue-500);
  padding-left: 0.5rem;
}

/* 戻るリンク */
.news-back {
  margin-top: 2rem;
  text-align: right;
}

.news-back a {
  font-size: 0.9rem;
  color: var(--blue-600);
}

.news-back a:hover {
  text-decoration: underline;
}
