/*
Theme Name: PlusQit
Author: PlusQit
Version: 1.0
*/
/* 全体の基本設定 */
:root {
  /* カラーテーマ */
  --color-bg-page: #ffffff; /* ページ全体の背景 */
  --color-bg-hero: #eef3ff; /* ヒーローの背景 */
  --color-bg-section: #ffffff; /* セクションの白背景 */
  --color-bg-section-alt: #f3f4f6; /* グレー背景セクション */
  --color-text-main: #1f2933; /* 文字色（濃いグレー） */
  --color-accent: #0287f0; /* アクセントカラー（ボタンなど） */
  --color-accent-soft: #4abaf9; /* カードみたいな柔らかい背景 */
  --color-footer-bg: #111827; /* フッター背景 */
  --color-footer-text: #f9fafb; /* フッター文字色 */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
    "Yu Gothic", sans-serif;
  color: var(--color-text-main);
  line-height: 1.6;
  background: var(--color-bg-page);
  font-size: 16px;
  line-height: 1.7;
}

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

/* =========================
   Header 共通
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  /* すりガラス背景 */
  background: rgba(183, 198, 225, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 中身を左右に振り分けるコンテナ */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 40px;
  box-sizing: border-box;
}

/* ロゴ（PCサイズ） */
.logo img {
  display: block;
  height: 56px;     /* ← 好みで 52〜64px くらいに調整 */
  width: auto;

  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 1))
          drop-shadow(0 0 2px rgba(255, 255, 255, 1))
          drop-shadow(0 0 5px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* PCナビ */
.global-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.global-nav a:hover {
  opacity: 0.7;
}

/* ハンバーガーボタン（PCでは非表示） */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.menu-toggle-label {
  position: absolute;
  left: -9999px; /* 画面には出さない（スクリーンリーダー用） */
}

/* =========================
   Header（スマホ）
========================= */
@media (max-width: 768px) {

  .header-inner {
    padding: 8px 16px;
  }

  .logo img {
    height: 42px;  /* スマホでは少し小さめ */
  }

  /* ハンバーガー表示 */
  .menu-toggle {
    display: inline-flex;
  }

  /* スマホではナビをドロワーにする */
  .global-nav {
    position: absolute;
    top: 100%;         /* ヘッダーの真下に表示 */
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.97);
    padding: 12px 16px 16px;
    display: none;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .global-nav a {
    font-size: 15px;
  }

  /* JSで .is-open が付いたときだけ表示 */
  .global-nav.is-open {
    display: block;
  }
}



/* =========================
   Information（共通）
========================= */

/* 外枠（カード） */
.information-table-wrap {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 16px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;

  /* ★ 影を控えめに（緑に見える原因を除去） */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
}


/* テーブル本体 */
.information-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;           /* 幅を自動で均等にしてくれる */
  margin: 0 auto;          /* 全体を中央にする */
  text-align: center;      /* セルの中央寄せ（必要に応じて） */
}

/* 行の区切り線 */
.information-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.information-table tr:last-child {
  border-bottom: none;
}

/* セル共通 */
.information-table td {
  padding: 20px 16px;
  font-size: 14px;
  vertical-align: middle;
  white-space: normal;           /* ★ 折り返しOKにする（ここが重要） */
}

/* 日付 */
.info-date {
  width: 140px;
  color: #6b7280;
  font-weight: 500;
}

/* カテゴリ */
.info-category {
  width: 180px;
}

/* 丸いカテゴリラベル */
.info-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 0;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

/* カテゴリー別カラー */
.info-category-pill.category-info {
  background: #0287f0; /* お知らせ → ブルー */
}

.info-category-pill.category-news {
  background: #f59e0b; /* ニュース → オレンジ */
}

.info-category-pill.category-recruit {
  background: #10b981; /* 採用情報 → グリーン */
}

/* タイトル */
.info-title {
  white-space: normal;
}

.info-title a {
  color: #111827;
  text-decoration: none;
  word-break: break-word;        /* 長いときは単語の途中で改行してでも収める */
}

.info-title a:hover {
  text-decoration: underline;
}

/* =========================
   Information（スマホ対応）
========================= */
@media (max-width: 768px) {

  .information-table-wrap {
    max-width: 100%;
    margin: 24px 16px 0;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .information-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
}

/* かなり小さい端末なら縦並びにする（必要なければこのブロック削ってOK） */
@media (max-width: 480px) {

  .information-table tr {
    display: block;
  }

  .information-table td {
    display: block;
    padding: 6px 8px;
  }

  .info-date,
  .info-category,
  .info-title {
    width: 100%;
  }

  .info-category {
    margin: 4px 0;
  }
}


/* ------------------------
   HERO SECTION（トップ）
-------------------------*/

/* ===== ヒーロー全体 ===== */
.hero {
  width: 100%;
  min-height: 100vh; /* 1画面分の高さ */
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px; /* ヘッダーに重ならないよう余白 */

  /* 背景画像＋暗めグラデーションで文字を読ませる */
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)),
    url("images/AdobeStock_1656894739.jpeg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
}

/* コンテナ */
.hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 左寄せ */
}

/* ===== 左側のテキストブロック ===== */
.hero-panel {
  max-width: 1200px; /* テキストの横幅を制限 */
  padding: 0;
  margin: 0;

  /* 旧パネルの装飾をすべて無効化 */
  background: none;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  min-width: auto;
  min-height: auto;
  text-align: left;
}

/* キャッチコピー */
.hero-label {
  font-size: 48px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* タイトル */
.hero-title {
  font-size: 100px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

/* ===== SP向け ===== */
/* =========================
   Hero（スマホ対応）
========================= */
@media (max-width: 768px) {

  /* ヒーロー背景の高さを縮める */
  .hero {
    min-height: 75vh;
    padding: 40px 0;
  }

  /* 横幅いっぱい使えるようにする */
  .hero-inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
  }

  .hero-panel.hero-copy {
    max-width: 100%;
  }

  /* ラベルの文章（暮らしにもっと＋を。） */
  .hero-label {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3); /* 読みやすくする */
  }

  /* 見出し PlusQit */
  .hero-title {
    font-size: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3); /* 読みやすくする */
  }
}


/* セクション */
.section {
  padding: 80px clamp(24px, 5vw, 80px);
}

.section-wrapper {
  padding-left: 5vw;
  padding-right: 5vw;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  text-align: center;
}
.section-subtitle {
  font-size: 22px;
  color: #888;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-text {
  font-size: 22px;
  line-height: 1.8;
  max-width: 640px;
}

/* サービス */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-item {
  background: var(--color-accent-soft);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

/* フッター */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 16px 0;
  font-size: 12px;
  text-align: center;
}

/* ===== about セクション ===== */

/* 2カラムのベースレイアウト */
.about-layout {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1500px; /* コンテンツの最大幅 */
  margin: 0 auto; /* 画面中央に寄せる */
  padding: 0 3%; /* 左右に40pxの余白 */
}

/* 左カラム：テキスト */
.about-text {
  display: flex;
  flex-direction: column;
}

/* 代表メッセージボタン */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  margin-left: auto; /* 右寄せ */
  padding: 18px 40px;
  border-radius: 999px;
  border: 2px solid #111827;
  background: transparent;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.about-link-arrow {
  font-size: 18px;
  color: var(--color-accent);
  transition: transform 0.2s ease, color 0.2s ease;
}

.about-link:hover {
  background: #111827;
  color: #fff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.about-link:hover .about-link-arrow {
  color: #fff;
  transform: translateX(4px);
}

/* 右カラム：画像エリア */
.about-visual {
  flex: 1; /* 右は残り全部 */
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

/* 画像を動かす箱 */
.about-visual-inner {
  width: 100%;
  aspect-ratio: 4 / 3; /* 横4 : 縦3 の比率で自動で高さつくる */
  position: relative;
}

/* 中の画像たち：重ねておいてフェードだけ担当 */
.about-visual-inner img {
  position: absolute;
  inset: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* 表示中の画像：opacity だけ変える */
.about-visual-inner img.active {
  opacity: 1;
}

/* 斜めにふわっと動くアニメーション */
@keyframes diagonalFloat {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-18px, -18px, 0);
  }
}

.about-link-arrow {
  font-size: 20px;
  color: var(--color-accent);
  transition: transform 0.2s ease, color 0.2s ease;
}

/* ホバー時の動き */
.about-link:hover {
  background: #111827;
  color: #fff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.about-link:hover .about-link-arrow {
  color: #fff;
  transform: translateX(4px);
}



/* ===== Businesses セクション ===== */

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* カード全体 */
.business-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  overflow: hidden; /* 角丸に画像を沿わせる */
  display: flex;
  flex-direction: column;
}

/* 上の写真 */
.business-card-image img {
  display: block;
  width: 100%;
  height: 280px; /* 高さは好みで */
  object-fit: cover; /* 余白なしでトリミング */
}

/* 下側のテキストエリア */
.business-card-body {
  padding: 18px 22px 16px;
  display: flex; /* 縦方向レイアウト */
  flex-direction: column;
  flex: 1; /* カードの残り高さを使う */
}

/* タイトル */
.business-card-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #0f172a;
}

/* 本文 */
.business-card-text {
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

/* 下部のボタン行 */
.business-card-footer {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
}

/* 「～を見る」ボタン */
.business-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: #0287f0; /* サイトのアクセントカラー */
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 43, 117, 0.28);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.business-card-button:hover {
  background: #4abaf9; /* ← 少し濃い青に */
  transform: translateY(-2px); /* わずかに浮く感じ */
}



/* =========================
   Our Principlesセクション
   ========================= */

.concept-section {
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.concept-inner {
  display: flex;
  align-items: center; /* 左右の高さを中央揃えに */
  justify-content: space-between;
  gap: 44px; /* 左右の距離も少し広げる */
  max-width: 1380px; /* セクション全体をワイドに */
  margin: 0 auto;
}

/* 左ビジュアル（大きく） */
.concept-visual {
  position: relative;
  width: 620px;
  margin-top: 110px;
  transform: translateY(50px);
}

.concept-bg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.35);
  width: 100%;
  height: auto;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
/* 手前のメイン三角形 */
.concept-main {
  position: relative;
  width: 78%;
  z-index: 1;
  display: block;
  margin: 0 auto;
  margin-bottom: 56px;
}

.concept-visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  margin: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 135, 240, 0.1), transparent 60%);
  z-index: -1;
}

.concept-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右テキストカラム */
.concept-text {
  flex: 1;
  max-width: 540px;
}

.concept-kv {
  text-align: left;
  margin-top: -36px;
  margin-bottom: 40px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #0287f0;
}

.concept-title {
  text-align: left;
  margin-bottom: 32px;
  font-size: 64px;
  line-height: 1.3;
}

/* =========================
   カード & アニメーション
   ========================= */

.concept-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept-item {
  position: relative;
  padding: 32px 36px;
  border-radius: 16px;
  background: #f5f8fc;
  border-left: 4px solid transparent;

  /* 初期状態 */
  opacity: 0;
  transform: translateX(-16px);

  /* ここは1回だけ */
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease;

  overflow: hidden;
}


/* 表示状態（スクロールで is-visible が付く） */
.concept-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.concept-item::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0; /* 最初は見えない */
  background: var(--accent); /* ← 各カード固有の色 */
  transition: width 0.45s ease;
  z-index: 0;
}
.concept-item > * {
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}

/* 色リンク（上・左下・右下） */
.concept-item:nth-child(1) {
  --accent: #0287f0;
  border-left-color: #0287f0;
}
.concept-item:nth-child(2) {
  --accent: #4abaf9;
  border-left-color: #4abaf9;
}
.concept-item:nth-child(3) {
  --accent: #8fd7ff;
  border-left-color: #8fd7ff;
}

.concept-item:hover {
  transform: translateX(12px) translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

.concept-item:hover::before {
  width: 100%;
}
.concept-item:hover h3,
.concept-item:hover p {
  color: #ffffff;
}

/* 見出し・本文 */
.concept-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.concept-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}


  /* companyセクション全体 */
}
.company-profile {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #1f2933;
}

.company-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 20px;
  line-height: 1.8;
}

.company-table th {
  width: 30%;
  background-color: #f2f6ff; /* 色付きマス */
  color: #1f2933;
  font-weight: 600;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid #dbe3ff;
  vertical-align: top;
}

.company-table td {
  width: 70%;
  background-color: #ffffff;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  color: #374151;
}

/* お問い合わせセクション全体 */
.contact-section {
  padding: 160px clamp(24px, 5vw, 80px);
}

.contact-lead {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
}

/* フォーム本体 */
.contact-form {
  max-width: 1200px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.required {
  color: #dc2626;
  font-size: 12px;
}

/* 入力系 */
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
}

.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0287f0; /* PlusQitのアクセントカラー想定 */
  box-shadow: 0 0 0 2px rgba(2, 135, 240, 0.15);
}

/* チェックボックス行 */
.form-group--checkbox label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.form-group--checkbox input[type="checkbox"] {
  margin-right: 6px;
}

/* ボタン */
.form-actions {
  margin-top: 32px;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background-color: #0287f0;
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* 送信結果メッセージ */
.contact-success {
  margin: 16px 0 24px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #15803d;
  font-size: 14px;
  text-align: center;
}

.contact-error {
  margin: 16px 0 24px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  text-align: center;
}

.contact-success,
.contact-error {
  max-width: 1200px;   /* contact-form と揃える */
  margin: 0 auto 24px;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
}

/* =========================
   セクション共通のふわっと
========================= */

.section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section,
  .section.scroll-in,
  .section.scroll-in.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   Hero コピーのフェードイン
========================= */

.hero-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.5s ease, transform 0.9s ease;
}

.hero-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   Sticky Footer（共通）
========================= */

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1; /* ← これが肝 */
}

.site-footer {
  background: linear-gradient(90deg, #0f172a, #111827);
  color: #f9fafb;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: center; /* 全体を中央寄せ */
  align-items: center;
  gap: 40px; /* コピーとリンクの間の距離 */
}

.footer-copy {
  font-size: 13px;
}

.footer-link {
  font-size: 13px;
  color: #f9fafb;
  text-decoration: none;
}

.footer-link:hover {
  opacity: 0.7;
}
/* =========================
   ABOUT PAGE
========================= */
/* そのページ用の CSS にこれを書いてOK（復旧用） */
.page-main .section {
  padding: 160px clamp(24px, 5vw, 80px); /* もともと.sectionに入れてたpaddingがあればここに書く */
}

/* 代表メッセージページ全体 */
.page-main {
  background-color: #f9fafb;
}

/* ヒーローセクション */
.message-hero {
  padding: 120px 5vw 140px;
  background-color: #ffffff;
}

/* レイアウト：左テキスト / 右写真 */
.message-layout {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

/* テキストブロック */
.message-text-block {
  flex: 1.2;
}

/* 上の「代表メッセージ」ラベル */
.message-kicker {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
}

/* 太字キャッチコピー（タイトル） */
.message-title {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 32px;
}

/* 本文 */
.message-body p + p {
  margin-top: 1.2em;
}

.message-body {
  font-size: 16px;
  line-height: 2;
  color: #374151;
}

/* 署名部分 */
.message-signature {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #111827;
  font-weight: 500;
  text-align: right;
}

/* 写真エリア */
.message-photo {
  flex: 1;
  max-width: 420px;
  margin: 0;
}

.message-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

/* スマホ対応 */
@media (max-width: 960px) {
  .message-hero {
    padding: 96px 5vw 96px;
  }

  .message-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .message-title {
    font-size: 24px;
  }

  .message-photo {
    max-width: 100%;
  }
}
/* =========================
   準備中ページ 共通レイアウト
========================= */

/* main を画面いっぱいに */
.page-main {
  min-height: calc(100vh - 80px - 80px);
  /* ↑ ヘッダー高さ - フッター高さ */
  display: flex;
}

/* section を中央寄せ */
.coming-soon {
  flex: 1;
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
  text-align: center;
}

/* 中身 */
.coming-soon-inner {
  max-width: 640px;
  padding: 40px 24px;
}

.coming-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.coming-text {
  font-size: 16px;
  margin-bottom: 8px;
}

.coming-sub {
  font-size: 14px;
  color: #6b7280;
}
/* =========================
   不動産・ガス準備中ページレイアウト
   ========================= */

/* 「.section」のデカい上下 padding をこのページだけ軽くする */
.section.coming-soon {
  padding: 120px 24px 40px; /* 上：ヘッダー分＋少し、下：控えめ */
  min-height: calc(100vh - 80px); /* 画面高からフッターぶんをざっくり引く */
  display: flex;
  align-items: center; /* セクションの中で縦方向ほぼ中央寄せ */
}

/* テキストブロックの幅と中央寄せ */
.coming-soon-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル・本文のサイズ調整 */
.coming-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.coming-text {
  font-size: 18px;
  margin-bottom: 8px;
}

.coming-sub {
  font-size: 14px;
  color: #6b7280;
}
/* ===========================
   EC事業ページ用スタイル
   =========================== */

/* ECページの .section 共通余白 */
body.page-ec .section {
  padding: 96px clamp(24px, 5vw, 64px);
}

/* ECページの1枚目（PC） */
.ec-hero-section {
  padding-top: 160px !important;
}



/* ECヒーローだけ上を少し広めに */
body.page-ec .ec-hero-section {
  padding-top: 120px;
}

/* ECページ 2個目以降はキュッと */
body.page-ec main > .section:not(:first-of-type) {
  padding-top: 72px;
  padding-bottom: 72px;
}


/* ① 上のブランド紹介レイアウト */
.ec-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.ec-hero-image {
  flex: 0 0 40%;
}

.ec-hero-image img {
  width: 80%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.ec-hero-content {
  flex: 1;
}

/* ===========================
   EC個別セクション タイトル調整
   =========================== */

.ec-hero-content h1 {
  font-size: 28px; /* 文字を小さく */
  font-weight: 700;
  text-align: left; /* 左寄せ */
  margin-bottom: 12px;
  border-bottom: 2px solid #ddd; /* 下線 */
  padding-bottom: 8px;
  display: block; /* 下線が文字幅に合わせて引かれる */
}

/* 左右バランスを少し縮める場合（任意） */
.ec-hero-content {
  max-width: 560px; /* 読みやすい幅に調整 */
}

.ec-hero-content p {
  margin-bottom: 1.5rem;
}

/* セクションタイトルを中央寄せにしたいとき用 */
.section-title--center {
  text-align: center;
  margin-bottom: 32px;
}

/* ② ショップカード3つ並び */
.ec-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ec-shop-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  border-top: 4px solid transparent;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.ec-shop-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  object-fit: cover;
}

.ec-shop-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ec-shop-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ───────── 楽天 ───────── */
.ec-shop-card.ec-rakuten {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #b30000;
}

/* ───────── Amazon ───────── */
.ec-shop-card.ec-amazon {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #233240;
}

/* ───────── Yahoo!ショッピング ───────── */
.ec-shop-card.ec-yahoo {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ffb300;
}

/* ───────── 楽天 ───────── */
.ec-rakuten .hero-button--outline {
  background: #b30000;
  border-color: #b30000;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(213, 76, 63, 0.32); /* #D54C3F由来の影 */
}
.ec-rakuten .hero-button--outline:hover {
  background: #b73c31; /* 少し濃く */
  border-color: #b73c31;
}

/* ───────── Amazon ───────── */
.ec-amazon .hero-button--outline {
  background: #233240;
  border-color: #233240;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(35, 50, 64, 0.38); /* #146EB4由来 */
}
.ec-amazon .hero-button--outline:hover {
  background: #0d5a94;
  border-color: #0d5a94;
}

/* ───────── Yahoo!ショッピング ───────── */
.ec-yahoo .hero-button--outline {
  background: #ffb300;
  border-color: #ffb300;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.4); /* 黄色は少し濃度高めの方が綺麗 */
}

.ec-yahoo .hero-button--outline:hover {
  background: #e3a000;
  border-color: #e3a000;
}

/* ③ 商品サムネイルの横スクロールスライダー */
.ec-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 16px 0;
}

.ec-slider-track {
  display: flex;
  gap: 16px;
  animation: ec-slider-scroll 30s linear infinite;
}

.ec-slider-item img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

/* ホバーしたらスクロール一時停止 */
.ec-slider:hover .ec-slider-track {
  animation-play-state: paused;
}

@keyframes ec-slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .ec-hero {
    flex-direction: column;
  }

  .ec-hero-image {
    flex-basis: auto;
    width: 100%;
  }

  .ec-slider-item img {
    width: 160px;
    height: 160px;
  }
}

/* 取り扱いカテゴリー用 */
.section-text--narrow {
  max-width: 720px;
}

/* タイトル・本文（タブ見出し用の残り） */
.category-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.category-text {
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
}

/* カテゴリータブ（使っているならそのまま） */
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}

.category-tab.is-active {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

/* スライダー全体：矢印を外に出したいので overflow は visible */
.category-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}

/* 「表示窓」部分：ここでスライドのはみ出しを隠す */
.category-viewport {
  overflow: hidden;
  border-radius: 28px;
}

/* 横並びにする部分 */
.category-panels {
  display: flex;
  transition: transform 0.7s ease;
  will-change: transform;
}

/* 1枚のパネル */
.category-panel {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  padding: 40px 40px 36px;
  border-radius: 28px;

  background: transparent !important;
  box-shadow: none !important;
  border-top: none !important;
}

/* パネル内レイアウト（テキスト＋画像の2カラム） */
.category-panel-inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.panel-text {
  flex: 1;
}

.panel-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 矢印ボタン */
.category-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4b5563;
  z-index: 10;
}

/* 左右の位置（デスクトップではパネルの外に出す） */
.category-arrow--prev {
  left: -100px;
}
.category-arrow--next {
  right: -100px;
}

/* スマホでは内側に戻す */
@media (max-width: 900px) {
  .category-arrow--prev {
    left: 8px;
  }
  .category-arrow--next {
    right: 8px;
  }

  .category-panel-inner {
    flex-direction: column;
    text-align: center;
  }

  .panel-image img {
    max-width: 80%;
  }
}

.category-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4b5563;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  z-index: 5;
}

.category-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: #eff6ff;
}

@media (max-width: 900px) {
  .category-arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .category-arrow--prev {
    left: 8px;
  }
  .category-arrow--next {
    right: 8px;
  }
}

/* 1枚目：ベビー・キッズ用品（ピンク系） */
.category-panel:nth-child(1) .category-panel-inner {
  background: #fdecf2;
}

/* 2枚目：介護用品（グリーン系） */
.category-panel:nth-child(2) .category-panel-inner {
  background: #e9f7f1;
}

/* 3枚目：ペット用品（ブラウンオレンジ系） */
.category-panel:nth-child(3) .category-panel-inner {
  background: #fff2e2;
}

/* 4枚目：生活雑貨（ブルー系） */
.category-panel:nth-child(4) .category-panel-inner {
  background: #eaf3ff;
}

/* デザイン補正（角丸 & 余白） */
.category-panel-inner {
  border-radius: 24px;
  padding: 40px;
  transition: background 0.3s ease;
}

/* Category セクション全体に「白いカーテン」をかぶせて
   他セクションの青いラインや白い大箱を全部隠す */
#categories {
  position: relative;
}

/* 背景を真っ白で塗りつぶすレイヤー */
#categories::before {
  content: "";
  position: absolute;
  inset: 0; /* 上下左右ぜんぶ埋める */
  background: #ffffff; /* ページの背景色と同じ色にする */
  z-index: 0;
}

/* 中身（見出し＋スライダー）はカーテンの上に乗せる */
#categories > .container {
  position: relative;
  z-index: 1;
}
/* Dimovaロゴ枠デザイン */
.ec-hero-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.ec-hero-image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
/* ECページ ボタン共通（長丸） */
.ec-shop-card .hero-button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto; /* カード下に揃える */
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ec-shop-card .hero-button--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
/* =========================
   プライバシーポリシー 専用レイアウト
========================= */

/* このページだけ、main は普通のブロックにする */
.page-main--privacy {
  display: block;
  background-color: #f9fafb;
}

/* セクション全体：上下の余白＋横方向は中央寄せ */
.privacy-section {
  padding: 160px 0 120px;
  display: flex;
  justify-content: center; /* 中身を横方向ど真ん中に */
}

/* 本文カラム */
.privacy-container {
  max-width: 720px;
  width: 100%;
  padding: 0 24px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #374151;
}

/* タイトルは中央、それ以外は左のままでOK */
.section-title--privacy {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* 見出しなどの余白調整だけ */
.privacy-container h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
}

.privacy-container h3 {
  margin-top: 24px;
  margin-bottom: 6px;
  font-size: 14.5px;
  font-weight: 600;
}

.privacy-container p {
  margin-bottom: 14px;
}

.privacy-container ul {
  margin-left: 1.2em;
  margin-bottom: 14px;
}

.privacy-container li {
  margin-bottom: 4px;
}

/* ====================================
   スマホ共通レイアウト（〜768px）
==================================== */
@media (max-width: 768px) {

  /* セクション共通の余白 */
  .section,
  .section-wrapper {
    padding: 54px 20px;
  }

  /* セクションタイトル */
  .section-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    margin-top: 0; 
    margin-bottom: 24px;
  }


  /* ---------- Information ---------- */
  #information.section,
  #information.section-wrapper {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .information-table-wrap {
    max-width: 520px;
    margin: 16px auto 0;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .information-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  /* ① Information：縦の余白を少し詰める */
  .information-table td.info-date,
  .information-table td.info-category,
  .information-table td.info-title {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .info-category-pill {
    padding: 8px 0;
    margin: 2px 0;
  }

  /* ---------- About（見出し→画像→本文→ボタン） ---------- */
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
    text-align: left;
  }

  .about-text {
    display: contents;
  }

  #about .section-title {
    order: 1;
    font-size: 32px;
    margin: 0 0 8px;
  }

  .about-visual {
    order: 2;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
  }

  .about-text .section-text {
    order: 3;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
  }

  .about-link {
    order: 4;
    margin: 12px auto 0;
    padding: 12px 28px;
    font-size: 14px;
    gap: 6px;
  }

  /* ---------- Our Principles（見出し→画像→カード） ---------- */
  .concept-section {
    padding: 64px 20px 96px;
  }

  .concept-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "visual"
      "list";
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
    align-items: start;
  }

  .concept-text {
    display: contents;
    max-width: 100%;
  }

  /* 見出しの下をもう少し空けたいならここを増やす */
  .concept-title {
    grid-area: title;
    font-size: 28px;
    text-align: center;
    margin: 0 0 24px; /* ←ここを 24px とかにしてOK */
  }

  .concept-visual {
    grid-area: visual;
    width: min(340px, 100%); /* ←三角形を少し大きく */
    margin: 0 auto 28px;
    transform: none;
  }

  /* 薄い三角形を大きく＆見えるように */
  .concept-bg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0.22;
  }

  /* 濃い三角形：少しだけ下げる */
  .concept-main {
    width: 95%;
    margin: 0;
    transform: none; 
  }

  .concept-list {
    grid-area: list;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .concept-item {
    padding: 20px 18px;
  }

  .concept-item h3 {
    font-size: 16px;
  }

  .concept-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ---------- Company ---------- */
  .company-profile {
    padding: 64px 20px;
  }

  .company-table {
    width: 100%;
    font-size: 14px;
  }

  .company-table th,
  .company-table td {
    padding: 10px 8px;
  }
}

/* =========================
   Category（スマホ最終修正）※900px
========================= */
@media (max-width: 900px) {

  .category-panel-inner {
    display: flex;
    flex-direction: column;
    padding: 24px 18px !important;
    gap: 18px !important;
  }

  .panel-image { order: 1; }
  .panel-text  { order: 2; }

  .category-panel {
    padding: 20px 14px !important;
  }

  .panel-image img {
    max-width: 80%;
  }
}

/* =========================
   Service Hero（最小構成）
========================= */
.service-hero {
  position: relative;
  width: 100vw;              /* 画面いっぱい */
  min-height: 520px;
  margin-left: calc(50% - 50vw); /* 中央寄せレイアウトを無視 */
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 15, 35, 0.55),
    rgba(5, 15, 35, 0.8)
  );
}


.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  padding: 72px 0;
}


.service-hero-title {
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}


.service-hero-lead {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.9;
  margin-bottom: 16px;
  opacity: 0.95;
}

.service-hero-note {
  font-size: 13px;
  opacity: 0.8;
}


/* ガスページ（page-id-11）だけ：ヒーローで画面を埋める */
.page-id-11 .page-main {
  padding: 0 !important;
  margin: 0 !important;
}

/* 画面高に合わせてヒーローを伸ばす（ヘッダー分だけ引く） */
.page-id-11 .service-hero {
  min-height: calc(100vh - 72px);
}


/* SP */
@media (max-width: 768px) {
  .service-hero {
    min-height: 460px;
  }
}

/* スマホのアドレスバー対策（対応ブラウザならこちら優先） */
@supports (height: 100svh) {
  .page-id-11 .service-hero {
    min-height: calc(100svh - 72px);
  }
}

/* =========================
   Single Post Layout
========================= */

/* ページ全体：フッターを下に押す（共通） */
html, body{ height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{ flex: 1; }

/* singleページ余白（ヘッダー固定でも被らないように） */
.single-page{
  width: 100%;
  padding-top: 200px;  /* ヘッダーと被るなら増やす */
  padding-bottom: 80px;
}

/* カードの外枠（中央寄せ） */
.single-wrap{
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 0 12px;
}

/* カード */
.single-article{
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 44px 48px;

  /* 中央の“レーン”に載せる */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ヘッダー：中央揃え（戻るボタンと同じ軸に） */
.single-header{
  width: 100%;
  max-width: 680px;
  text-align: center;
  margin-bottom: 18px;
}

/* カテゴリピル */
.single-category-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: #1d77ff;
  color: #fff;
}

/* タイトル */
.single-title{
  margin: 14px 0 10px;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* 日付 */
.single-meta{
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

/* 本文：左揃え（ただし中央レーン内） */
.single-content{
  width: 100%;
  max-width: 380px;   /* ← 680より狭めて中央感を出す */
  margin: 32px auto 0;
  text-align: left;

  font-size: 16px;
  line-height: 1.9;
  color: #111827;
}


  margin-top: 22px;
  font-size: 16px;
  line-height: 1.9;
  color: #111827;
}

.single-content p{
  margin: 0 0 1em;
}

.single-content img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 戻るボタン：中央 */
.single-back{
  width: 100%;
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.single-back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f3f4f6;
}

.single-back-link:hover{
  background: #e5e7eb;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px){
  .single-page{
    padding-top: 200px;
    padding-bottom: 40px;
  }

  .single-wrap{
    padding: 0 10px;
  }

  .single-article{
    padding: 22px 18px;
    border-radius: 16px;
  }

  .single-title{
    font-size: 24px;
  }

  .single-content{
    font-size: 15px;
    line-height: 1.85;
  }

  .single-category-pill{
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }
}


/* =========================
   Accessibility / SEO
========================= */
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}