/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0.0
*/
/* ==============================
   PC用ヘッダー
   ============================== */
.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  height: 80px;
  padding: 0 60px;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.pc-header.scrolled {
  background: rgba(18,18,18,0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  height: 55px;
}

.header-left { display: flex; align-items: center; gap: 10px; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { display: inline-block; height: 70px; transition: height 0.4s ease; }
.pc-header.scrolled .logo-img { height: 50px; }
.company-name {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #F5F5F5;
  transition: font-size 0.4s ease;
}
.pc-header.scrolled .company-name {
  font-size: 22px;
}


.pc-header.scrolled .company-name { font-size: 20px; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; }
.main-nav li { position: relative; }
.main-nav a, .nav-parent {
  text-decoration: none;
  color: #F5F5F5;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
  cursor: pointer;
}
.main-nav a:hover, .nav-parent:hover { color: #DAA520; }

/* ===== PC右端 CONTACT アイコン ===== */
.header-right {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 769px) {
  .header-right .contact-icon {
    font-size: 30px;
    color: #fff; /* PCは通常白 */
    transition: color 0.3s ease;
  }
  .header-right .contact-icon:hover {
    color: #DAA520; /* PCはホバーで金 */
  }
}

/* ===== サブメニュー（PC） ===== */
.submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 120%; left: 0;
  background: #2b2b2b;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  width: auto;
  min-width: max-content;
}
.has-submenu:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  top: 100%;
}

/* サブメニュー余白リセット */
.main-nav .has-submenu > .submenu {
  margin: 0 !important;
  padding: 0 !important;
}
.main-nav .has-submenu > .submenu > li {
  margin: 0 !important;
  padding: 0 !important;
}
.main-nav .has-submenu > .submenu > li > a {
  padding: 4px 24px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  height: auto !important;
  display: block !important;
}

.submenu a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  border-bottom: 1px solid #666;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}
.submenu a:last-child { border-bottom: none; }
.submenu a::before {
  content: "▶"; opacity: 0; position: absolute;
  left: 12px; transform: translateX(-12px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #DAA520;
}
.submenu a:hover {
  background: #444; color: #DAA520;
  transform: translateX(0); opacity: 1;
}
.submenu a:hover::before { opacity: 1; transform: translateX(0); }

/* ==============================
   モバイル用ヘッダー
   ============================== */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  background: #121212;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
}

/* ===== モバイル封筒アイコン（白固定） ===== */
@media (max-width: 768px) {
  .contact-icon a {
    font-size: 20px;
    color: #fff; /* 白固定 */
    text-decoration: none;
  }
  .contact-icon a:hover {
    color: #fff; /* ホバーも白 */
  }
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile-header .logo-img { height: 32px; }
.mobile-header .company-name {
  font-size: 18px;
  font-weight: bold;
  color: #F5F5F5;
}

/* ===== モバイルハンバーガー（白） ===== */
.hamburger {
  display: block;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1101;
}
.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff; /* 白に変更 */
  border-radius: 2px;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: rgba(18,18,18,0.95);
  padding: 60px 0 20px 0;
  transition: right 0.3s ease;
  z-index: 1001;
}
.mobile-nav.active { right: 0; }

.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid #333; }
.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}
.mobile-nav a:hover {
  background: #444;
  color: #DAA520;
}

/* ===== サブメニュー（モバイル・スライド） ===== */
.mobile-nav .submenu {
  max-height: 0;
  overflow: hidden;
  background: #2b2b2b;
  transition: max-height 0.3s ease;
  opacity: 1 !important;
  transform: none !important;
  position: relative !important;
  pointer-events: auto !important;
}
.mobile-nav .has-submenu.open > .submenu {
  max-height: 500px;
}
.mobile-nav .submenu a {
  padding: 12px 30px;
  font-size: 14px;
  border-bottom: 1px solid #444;
}
.mobile-nav .submenu a:hover {
  background: #444;
  color: #DAA520;
}

.mobile-nav .has-submenu > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: color 0.3s ease;
}
.mobile-nav .has-submenu > a i {
  font-size: 14px;
  color: #DAA520;
  transition: transform 0.3s ease;
}
.mobile-nav .has-submenu.open > a i {
  transform: rotate(90deg);
}
.mobile-nav .has-submenu > a:hover {
  color: #DAA520;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==============================
   PC/モバイル切り替え
   ============================== */
@media (max-width: 768px) {
  .pc-header { display: none !important; }
  .mobile-header { display: flex !important; }
}

@media (min-width: 769px) {
  .mobile-header,
  .mobile-nav,
  .overlay { display: none !important; }
  .pc-header { display: flex !important; }
}


.submenu { display: block !important; }

/* 全体セクション */
.services-section {
  background: #000;
  width: 100%;
  margin: 0;
  padding: 80px 0;
  text-align: center;
}

/* タイトル */
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 56px;
  color: #fff;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  padding: 0 40px;
  text-shadow: 0 0 12px rgba(255,255,255,.7),
               0 0 24px rgba(255,255,255,.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .6s ease;
}
.section-title::before { right: 100%; margin-right: 20px; }
.section-title::after { left: 100%; margin-left: 20px; }
.section-title.show { opacity: 1; transform: translateY(0); }
.section-title.show::before,
.section-title.show::after { width: 60px; }

/* レイアウト（PC用） */
.services {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}
.c1 { grid-column: 1 / span 4; }
.c2 { grid-column: 5 / span 4; }
.c3 { grid-column: 9 / span 4; }
.c4 { grid-column: 3 / span 4; }
.c5 { grid-column: 7 / span 4; }

/* カード */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  min-height: 270px;
  height: auto;
  box-shadow: 0 12px 28px rgba(0,0,0,.7),
              0 0 20px rgba(255,255,255,.3);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all .6s ease;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 32px rgba(0,0,0,.9),
              0 0 30px rgba(255,255,255,.5);
}

/* アイコン */
.service-card .icon {
  font-size: 48px;
  transition: transform .25s ease;
  color: #000; /* 常時黒固定 */
}
.service-card:hover .icon {
  animation: shake .25s;
  color: #000; /* ホバー時も黒固定 */
}
@keyframes shake {
  0%{transform:translateX(0)}
  25%{transform:translateX(-3px)}
  50%{transform:translateX(3px)}
  75%{transform:translateX(-2px)}
  100%{transform:translateX(0)}
}

/* サービス名 */
.service-card h3 {
  margin-top: 20px;
  font-size: 20px;
  transition: transform .4s ease, letter-spacing .4s ease;
}
.service-card:hover h3 {
  transform: translateY(-3px);
  letter-spacing: 4px;
}

/* NEXT テキスト */
.service-card .more {
  margin-top: auto;
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover .more {
  opacity: 1;
}

/* スマホ: 1列縦並びに強制 */
@media (max-width: 768px) {
  .services {
    max-width: 90%;
    margin: 0 auto;
    grid-template-columns: 1fr; /* ← 1列に固定 */
    gap: 24px;
    padding: 0;
  }
  .c1, .c2, .c3, .c4, .c5 {
    grid-column: 1 / -1; /* ← 各カードを全幅に */
  }
  .service-card {
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 24px 16px;
  }
  .service-card h3 { font-size: 18px; }
  .service-card .more {
    opacity: 1;       /* スマホは常時表示 */
    position: static;
    margin-top: 12px;
    font-size: 16px;
  }
  .section-title { font-size: 32px; padding: 0 10px; }
}

/* ==============================
   NEWS セクション（フロントページ用）
   ============================== */
.top-news {
  background: #666;
  padding: 80px 20px;
  text-align: center;
}

/* ===== セクションタイトル ===== */
.news-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 56px;
  color: #fff;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  padding: 0 40px;
  text-shadow: 0 0 12px rgba(255,255,255,.7),
               0 0 24px rgba(255,255,255,.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.news-title::before,
.news-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .6s;
}
.news-title::before { right: 100%; margin-right: 20px; }
.news-title::after  { left: 100%; margin-left: 20px; }
.news-title.show { opacity: 1; transform: translateY(0); }
.news-title.show::before,
.news-title.show::after { width: 60px; }

/* ===== NEWSカード3件 ===== */
.news-grid {
  max-width: 960px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 20px;
}
.news-card {
  width: 300px;
  background: #eeeeee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s, background-color .3s;
  margin: 0 auto;
}
.news-card:hover {
  background: #fffdf8;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-text {
  padding-top: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* タイトルと概要 */
.news-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.6em * 2);
}

/* 区切り線 */
.news-divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 8px 0 12px;
}

/* ===== VIEW ALL ボタン ===== */
.top-news-more {
  margin-top: 40px;
}
.top-news-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid #DAA520;
  background: #fff;
  color: #DAA520;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s ease;
}
.top-news-more a:hover {
  background: #DAA520;
  color: #fff;
  transform: translateY(-2px);
}
.top-news-more a:hover i { transform: translateX(4px); }

/* ===== レスポンシブ ===== */
@media (max-width:768px) {
  .news-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .news-card { width: 100%; }
  .news-thumb img { height: 200px; }
  .news-heading, .news-excerpt { font-size: .9rem; }
  .news-title { font-size: 40px; }
}

/* ===== フッター全体 ===== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== 共通タイトル ===== */
.footer-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: none; /* 日本語タイトル用 */
  color: #fff;
}

/* ===== リスト ===== */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: #fff;           /* 白固定 */
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-list a:hover {
  color: #fff;
  opacity: 0.7;
}

/* ===== 左カラム ===== */
.footer-left {
  flex: 1 1 250px;
  text-align: left;
}

/* ===== 右カラム ===== */
.footer-right {
  flex: 1 1 250px;
  text-align: right;
}

/* ===== 区切り線 ===== */
.footer-left hr,
.footer-right hr,
.footer-center hr {
  border: none;
  border-top: 1px solid #444;
  margin: 16px 0;
}

/* ===== 中央カラム ===== */
.footer-center {
  flex: 2 1 400px; /* 中央を広めにして真ん中確保 */
  display: flex;
  flex-direction: column;
  align-items: center;   /* 横中央 */
  justify-content: center;
  text-align: center;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 16px;
}

.copy {
  font-size: 13px;
  color: #fff;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; /* 左寄せベース */
  }

  /* 左カラム・右カラムは左寄せ */
  .footer-left,
  .footer-right {
    text-align: left;
    width: 100%;
  }

  /* 中央カラムを一番下に */
  .footer-center {
    order: 3; /* 一番最後に表示 */
    width: 100%;
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }

  /* ロゴ下余白 */
  .footer-logo {
    margin-bottom: 16px;
  }

  /* コピーライトも中央 */
  .footer-center .copy {
    text-align: center;
  }

  /* 区切り線を100%に */
  .footer-left hr,
  .footer-right hr,
  .footer-center hr {
    margin: 16px 0;
    width: 100%;
  }
}

html, body {
  overscroll-behavior: none;   /* オーバースクロール禁止 */
  background: #000;            /* 背景色を固定 */
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* ==============================
   NEWS専用 セクションタイトル演出
   ============================== */
.news-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 40px;
  color: #fff;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.news-section-title::before,
.news-section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .6s ease;
}
.news-section-title::before { right: 100%; margin-right: 20px; }
.news-section-title::after  { left: 100%; margin-left: 20px; }
.news-section-title.show {
  opacity: 1;
  transform: translateY(0);
}
.news-section-title.show::before,
.news-section-title.show::after {
  width: 60px;
}

/* ==============================
   ピックアップ
   ============================== */
.news-pickup .pickup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.news-pickup .pickup-card {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.3s;
}
.news-pickup .pickup-card:hover {
  background: #e0e0e0;
}
.news-pickup .pickup-card h3 {
  font-size: 16px;
  margin-top: 10px;
  color: #333;
}

/* ==============================
   NEWS一覧リスト
   ============================== */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list li a {
  display: block;
  padding: 15px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: background 0.3s;
}
.news-list li a:hover {
  background: #f2f2f2;
}
.news-list .title-part1,
.news-list .title-part2 {
  font-size: 16px;
  line-height: 1.6;
}
.news-list .date {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}

/* ==============================
   NEWS セクション（フロントページ用）
   ============================== */
.top-news {
  background: #666;
  padding: 80px 20px;
  text-align: center;
}

/* ===== セクションタイトル ===== */
.news-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 56px;
  color: #fff;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  padding: 0 40px;
  text-shadow: 0 0 12px rgba(255,255,255,.7),
               0 0 24px rgba(255,255,255,.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.news-title::before,
.news-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .6s;
}
.news-title::before { right: 100%; margin-right: 20px; }
.news-title::after  { left: 100%; margin-left: 20px; }
.news-title.show { opacity: 1; transform: translateY(0); }
.news-title.show::before,
.news-title.show::after { width: 60px; }

/* ===== NEWSカード3件 ===== */
.news-grid {
  max-width: 960px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 20px;
}
.news-card {
  width: 300px;
  background: #eeeeee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s, background-color .3s;
  margin: 0 auto;
}
.news-card:hover {
  background: #fffdf8;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-text {
  padding-top: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* タイトルと概要 */
.news-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.6em * 2);
}

/* 区切り線 */
.news-divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 8px 0 12px;
}

/* ===== VIEW ALL ボタン ===== */
.top-news-more {
  margin-top: 40px;
}
.top-news-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid #DAA520;
  background: #fff;
  color: #DAA520;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s ease;
}
.top-news-more a:hover {
  background: #DAA520;
  color: #fff;
  transform: translateY(-2px);
}
.top-news-more a:hover i { transform: translateX(4px); }

/* ===== レスポンシブ ===== */
@media (max-width:768px) {
  .news-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .news-card { width: 100%; }
  .news-thumb img { height: 200px; }
  .news-heading, .news-excerpt { font-size: .9rem; }
  .news-title { font-size: 40px; }
}

/* ==============================
   NEWS専用 セクションタイトル
   ============================== */
.news-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 56px;
  color: #fff;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  padding: 0 40px;
  text-shadow: 0 0 10px rgba(0,0,0,.9),
               0 0 18px rgba(0,0,0,.7);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.news-section-title::before,
.news-section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .6s;
}
.news-section-title::before { right: 100%; margin-right: 20px; }
.news-section-title::after  { left: 100%; margin-left: 20px; }
.news-section-title.show {
  opacity: 1;
  transform: translateY(0);
}
.news-section-title.show::before,
.news-section-title.show::after {
  width: 60px;
}

/* ==============================
   ピックアップエリア
   ============================== */
.news-pickup {
  background: #666;
  padding: 80px 20px;
  text-align: center;
}
.news-pickup .news-grid {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding: 0 20px;
}
.news-card {
  background: #eeeeee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s, background-color .3s;
}
.news-card:hover {
  background: #fffdf8;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.news-card:hover .news-thumb img {
  transform: scale(1.05);
}
.news-text {
  padding-top: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.6em * 2);
}
.news-divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 8px 0 12px;
}

/* ==============================
   アーカイブ一覧リスト
   ============================== */
.news-list-wrap {
  background: #eeeeee;
  padding: 80px 20px;
  text-align: center;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 960px;
}
.news-list li a {
  display: block;
  padding: 15px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: background 0.3s;
}
.news-list li a:hover {
  background: #f2f2f2;
}
.news-list .title-part1,
.news-list .title-part2 {
  font-size: 16px;
  line-height: 1.6;
}
.news-list .date {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
  text-align: left;
}

/* ==============================
   レスポンシブ
   ============================== */
@media (max-width: 1024px) {
  .news-pickup .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .news-pickup .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card { width: 100%; }
  .news-thumb img { height: 200px; }
  .news-heading, .news-excerpt { font-size: .9rem; }
  .news-section-title { font-size: 40px; }
}

.news-list .title-part1,
.news-list .title-part2,
.news-list .date {
  text-align: left;
}

