/*
Theme Name: Shimura
Theme URI: https://shimura-konosu.com/
Author: ASTER
Description: 株式会社シムラ（埼玉県鴻巣市）専用テーマ。電話コンバージョンを主軸に、サービス・施工事例を構造化データ付きで発信するSEO設計。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: shimura
*/

/* ==========================================================================
   1. ベース（現行サイトのデザイントークンを継承）
   ========================================================================== */
:root {
      --primary: #3BA4D9;
      --primary-light: #5BB8E6;
      --primary-dark: #2A7FAD;
      --accent: #00BCD4;
      --accent-light: #4DD0E1;
      --gray: #808080;
      --gray-dark: #5A5A5A;
      --warm-bg: #F7FAFE;
      --warm-bg2: #EDF4FA;
      --text: #404040;
      --text-light: #777777;
      --white: #FFFFFF;
      --shadow: 0 4px 20px rgba(0,0,0,0.07);
      --shadow-hover: 0 8px 30px rgba(0,0,0,0.11);
      --radius: 16px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text);
      line-height: 1.8;
      background: var(--warm-bg);
    }

    /* ===== HEADER ===== */
    header {
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-svg {
      height: 42px;
      width: auto;
    }

    nav { display: flex; gap: 8px; align-items: center; }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.3s;
    }

    nav a:hover { background: var(--warm-bg); color: var(--primary); }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--primary);
      color: var(--white) !important;
      padding: 10px 20px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      font-size: 15px !important;
    }

    .nav-phone:hover { background: var(--primary-dark) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===== HERO ===== */
    .hero {
      margin-top: 72px;
      background: linear-gradient(135deg, #e3f2fd 0%, #f0f9ff 50%, #e1f5fe 100%);
      padding: 100px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 140%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(59, 164, 217, 0.06) 0%, transparent 70%);
      animation: float 8s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

    .hero-badge {
      display: inline-block;
      background: var(--white);
      color: var(--primary);
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
      box-shadow: var(--shadow);
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 900;
      line-height: 1.4;
      margin-bottom: 20px;
      color: var(--primary-dark);
    }

    .hero h1 .highlight {
      color: var(--accent);
      position: relative;
    }

    .hero p {
      font-size: 18px;
      color: var(--text-light);
      margin-bottom: 36px;
      line-height: 1.9;
    }

    .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(59, 164, 217, 0.3);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 164, 217, 0.4);
    }

    .btn-outline {
      background: var(--white);
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ===== FEATURES BAR ===== */
    .features-bar {
      background: var(--white);
      padding: 40px 24px;
      box-shadow: var(--shadow);
    }

    .features-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: center;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 4px;
    }

    .feature-icon.green { background: #e3f2fd; }
    .feature-icon.orange { background: #e0f7fa; }
    .feature-icon.blue { background: #f3e5f5; }

    .feature-item h3 { font-size: 16px; font-weight: 700; color: var(--text); }
    .feature-item p { font-size: 13px; color: var(--text-light); }

    /* ===== SECTIONS ===== */
    section { padding: 80px 24px; }

    .section-inner { max-width: 1100px; margin: 0 auto; }

    .section-title {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-title .en {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary-light);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 8px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 900;
      color: var(--primary-dark);
      margin-bottom: 12px;
    }

    .section-title p {
      font-size: 15px;
      color: var(--text-light);
    }

    /* ===== SERVICES ===== */
    .services { background: var(--warm-bg); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: var(--shadow);
      transition: all 0.3s;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .service-emoji {
      font-size: 40px;
      margin-bottom: 16px;
      display: block;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--primary-dark);
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===== ABOUT ===== */
    .about { background: var(--white); }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image {
      background: linear-gradient(135deg, #e3f2fd, #bbdefb);
      border-radius: var(--radius);
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .about-image-inner {
      position: relative;
      z-index: 1;
    }

    .about-image .big-text {
      font-size: 72px;
      font-weight: 900;
      color: var(--primary);
      opacity: 0.15;
      line-height: 1;
    }

    .about-image .overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 22px;
      font-weight: 700;
      color: var(--primary-dark);
      white-space: nowrap;
    }

    .about-text h3 {
      font-size: 26px;
      font-weight: 900;
      color: var(--primary-dark);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .about-text p {
      font-size: 15px;
      color: var(--text-light);
      margin-bottom: 16px;
      line-height: 2;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .stat-box {
      background: var(--warm-bg);
      padding: 20px;
      border-radius: 12px;
      text-align: center;
    }

    .stat-box .number {
      font-size: 28px;
      font-weight: 900;
      color: var(--primary);
    }

    .stat-box .label {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 4px;
    }

    /* ===== REPRESENTATIVE ===== */
    .representative { background: var(--warm-bg2); }

    .rep-content {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: center;
    }

    .rep-photo {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

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

    .rep-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #FF6F00, #FF8F00);
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .rep-text h3 {
      font-size: 26px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .rep-text h3 .name-highlight {
      color: var(--primary-dark);
    }

    .rep-text p {
      font-size: 15px;
      color: var(--text-light);
      margin-bottom: 16px;
      line-height: 2;
    }

    .hanabi-card {
      background: linear-gradient(135deg, #1a237e, #303f9f);
      border-radius: 12px;
      padding: 24px;
      margin-top: 24px;
      color: white;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .hanabi-card-icon {
      font-size: 48px;
      flex-shrink: 0;
    }

    .hanabi-card-text h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .hanabi-card-text p {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 0;
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .rep-content { grid-template-columns: 1fr; gap: 32px; }
      .rep-photo { max-width: 400px; margin: 0 auto; }
    }

    /* ===== FLOW ===== */
    .flow { background: var(--white); }

    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .flow-step {
      text-align: center;
      position: relative;
    }

    .flow-step::after {
      content: '→';
      position: absolute;
      right: -16px;
      top: 36px;
      font-size: 24px;
      color: var(--primary-light);
      font-weight: 700;
    }

    .flow-step:last-child::after { display: none; }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 900;
      margin: 0 auto 16px;
    }

    .flow-step h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }

    .flow-step p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===== COMPANY INFO ===== */
    .company { background: var(--white); }

    .company-table {
      max-width: 800px;
      margin: 0 auto;
      background: var(--warm-bg);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .company-row {
      display: grid;
      grid-template-columns: 160px 1fr;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .company-row:last-child { border-bottom: none; }

    .company-row dt {
      padding: 20px 24px;
      font-weight: 700;
      font-size: 14px;
      background: rgba(59, 164, 217, 0.06);
      display: flex;
      align-items: center;
      color: var(--primary-dark);
    }

    .company-row dd {
      padding: 20px 24px;
      font-size: 14px;
      display: flex;
      align-items: center;
    }

    /* ===== CTA ===== */
    .cta {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      padding: 80px 24px;
      text-align: center;
      color: var(--white);
    }

    .cta h2 {
      font-size: 30px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .cta p {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 36px;
    }

    .cta-phone {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--white);
      color: var(--primary-dark);
      padding: 20px 40px;
      border-radius: 50px;
      font-size: 28px;
      font-weight: 900;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: all 0.3s;
    }

    .cta-phone:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    }

    .cta-phone-label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-light);
      margin-top: -2px;
    }

    .cta-hours {
      margin-top: 16px;
      font-size: 14px;
      opacity: 0.8;
    }

    /* ===== MAP ===== */
    .map {
      background: var(--warm-bg);
      padding: 80px 24px;
    }

    .map iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    /* ===== FOOTER ===== */
    footer {
      background: #263238;
      color: rgba(255,255,255,0.7);
      padding: 40px 24px;
      text-align: center;
      font-size: 13px;
    }

    footer .footer-logo {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    footer p { margin-bottom: 4px; }

    footer .copyright {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 12px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      nav { display: none; }
      .hamburger { display: flex; }

      .hero h1 { font-size: 28px; }
      .hero p { font-size: 15px; }

      .features-inner { grid-template-columns: 1fr; gap: 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .about-content { grid-template-columns: 1fr; gap: 32px; }
      .flow-steps { grid-template-columns: repeat(2, 1fr); }
      .flow-step::after { display: none; }
      .company-row { grid-template-columns: 120px 1fr; }
      .cta-phone { font-size: 22px; padding: 16px 28px; }
    }

    @media (max-width: 600px) {
      .hero { padding: 60px 16px 50px; }
      .hero h1 { font-size: 24px; }
      .features-inner { grid-template-columns: 1fr; }
      .flow-steps { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr; }
      section { padding: 56px 16px; }
      .company-row { grid-template-columns: 1fr; }
      .company-row dt { padding: 12px 20px 4px; background: transparent; }
      .company-row dd { padding: 4px 20px 12px; }
    }


/* ==========================================================================
   2. WordPress 化にともなう追加スタイル
   ========================================================================== */

/* --- 汎用レイアウト --- */
.inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.page-header {
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-bg2) 100%);
  padding: 44px 0 56px;
  text-align: center;
}
.page-header h1 { font-size: 34px; font-weight: 900; color: var(--text); letter-spacing: .02em; }
.page-header .en { display:block; font-size: 13px; letter-spacing:.18em; color: var(--primary); font-weight:700; margin-bottom: 10px; }
.page-header p { margin-top: 14px; color: var(--text-light); font-size: 15px; }
.content-area { padding: 64px 0 96px; }

/* --- パンくず --- */
/* ヘッダーが固定配置のため、パンくずの上に逃げを取る */
.breadcrumb { background: var(--warm-bg); font-size: 12.5px; padding: 92px 0 12px; color: var(--text-light); }
@media (max-width: 900px) { .breadcrumb { padding-top: 80px; } }
.breadcrumb ol { list-style:none; display:flex; flex-wrap: wrap; gap: 6px; max-width:1140px; margin:0 auto; padding: 0 24px; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--gray); }
.breadcrumb a { color: var(--primary-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* --- 記事本文 --- */
.entry-content { font-size: 16px; line-height: 2; color: var(--text); }
.entry-content > * + * { margin-top: 1.4em; }
.entry-content h2 {
  font-size: 24px; font-weight: 800; margin-top: 2.2em; padding: 0 0 12px 0;
  border-bottom: 3px solid var(--primary); color: var(--text);
}
.entry-content h3 { font-size: 19px; font-weight: 700; margin-top: 1.8em; color: var(--primary-dark); }
.entry-content ul, .entry-content ol { padding-left: 1.5em; }
.entry-content li + li { margin-top: .4em; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.entry-content a { color: var(--primary-dark); }
.entry-content blockquote {
  border-left: 4px solid var(--primary-light); background: var(--warm-bg);
  padding: 16px 20px; border-radius: 0 8px 8px 0; color: var(--gray-dark);
}
.entry-content table { width:100%; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid #e3e9f0; padding: 10px 14px; text-align:left; }
.entry-content th { background: var(--warm-bg); }

/* --- カードグリッド（サービス／事例／お知らせ） --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card a.card-link { text-decoration: none; color: inherit; display:flex; flex-direction:column; height:100%; }
.card-thumb { aspect-ratio: 4 / 3; background: var(--warm-bg2); overflow: hidden; }
.card-thumb img { width:100%; height:100%; object-fit: cover; display:block; }
.card-thumb.is-empty {
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-bg2) 100%);
}
.card-thumb.is-empty svg { width: 46%; height:auto; opacity:.9; }
.logo-svg { display:block; }
footer .footer-logo svg { margin: 0 auto; }
.card-body { padding: 20px 22px 24px; flex: 1; display:flex; flex-direction:column; }
.card-body h3 { font-size: 17px; font-weight: 700; line-height: 1.55; color: var(--text); }
.card-body p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-top: 10px; }
.card-meta { margin-top: auto; padding-top: 14px; display:flex; flex-wrap: wrap; gap: 6px; align-items:center; }
.tag {
  display:inline-block; font-size: 11.5px; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; background: var(--warm-bg2); color: var(--primary-dark);
}
.tag.area { background: #E9F7F9; color: #12808F; }
.card-date { font-size: 12px; color: var(--gray); }

/* --- 絞り込み --- */
.filters { display:flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; justify-content:center; }
.filters a {
  font-size: 13px; font-weight: 700; text-decoration: none; padding: 8px 16px;
  border-radius: 999px; border: 1.5px solid #dbe6ef; color: var(--gray-dark); background: var(--white);
  transition: all .2s ease;
}
.filters a:hover, .filters a.is-active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* --- お知らせリスト --- */
.news-list { border-top: 1px solid #e6edf4; }
.news-list a {
  display:flex; gap: 20px; padding: 20px 4px; border-bottom: 1px solid #e6edf4;
  text-decoration:none; color: var(--text); align-items: baseline; transition: background .2s;
}
.news-list a:hover { background: var(--warm-bg); }
.news-list time { font-size: 13px; color: var(--gray); flex-shrink: 0; font-weight: 600; }
.news-list span.t { font-size: 15px; font-weight: 600; line-height:1.6; }

/* --- 事例詳細のスペック表 --- */
.works-spec { background: var(--warm-bg); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px; }
.works-spec dl { display:grid; grid-template-columns: 120px 1fr; gap: 12px 20px; font-size: 14.5px; }
.works-spec dt { font-weight: 700; color: var(--primary-dark); }
.works-spec dd { color: var(--gray-dark); }

/* --- ページネーション --- */
.pagination { display:flex; justify-content:center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination .page-numbers {
  min-width: 42px; height: 42px; display:inline-flex; align-items:center; justify-content:center;
  border-radius: 10px; background: var(--white); border: 1.5px solid #dbe6ef;
  text-decoration:none; color: var(--gray-dark); font-weight: 700; font-size: 14px;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* --- 追従電話バー（スマホ・電話CVが主役） --- */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
    background: rgba(255,255,255,.6); box-shadow: 0 -4px 18px rgba(0,0,0,.12);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sticky-cta a {
    display:flex; flex-direction: column; align-items:center; justify-content:center;
    padding: 11px 4px; text-decoration:none; font-weight: 800; font-size: 15px; line-height:1.3;
  }
  .sticky-cta .tel { background: var(--primary); color: #fff; }
  .sticky-cta .form { background: var(--accent); color: #fff; }
  .sticky-cta small { font-size: 10.5px; font-weight: 600; opacity: .92; margin-bottom: 2px; }
  body { padding-bottom: 64px; }
}

/* --- モバイルメニュー --- */
.nav-toggle { display:none; }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav.site-nav {
    position: fixed; inset: 0 0 auto 0; top: 64px; background: var(--white);
    flex-direction: column; padding: 18px 24px 28px; gap: 2px;
    box-shadow: var(--shadow); display: none; max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-toggle:checked ~ nav.site-nav { display: flex; }
  nav.site-nav a { padding: 14px 4px; border-bottom: 1px solid #eef3f8; width:100%; }
}

/* --- 404 --- */
.notfound { text-align:center; padding: 80px 0; }
.notfound .code { font-size: 72px; font-weight: 900; color: var(--primary-light); line-height:1; }

/* --- スクリーンリーダー --- */
.screen-reader-text {
  position: absolute !important; width:1px; height:1px; overflow:hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}


/* --- 代表写真・カスタムロゴ --- */
.rep-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.rep-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.custom-logo, .logo img { max-height: 44px; width: auto; display: block; }
@media (max-width: 900px) { .custom-logo, .logo img { max-height: 34px; } }
