  body {
      font-family: 'Noto Sans JP', sans-serif, Lato;
  }

 .bg-graybg {
  background-color: #ebebeb;
 }

  header img#logo {
      height: 30px;
  }

  h1,
  h2,
  h3,
  h4 {
      letter-spacing: 0.08em;
      line-height: 1.65;
  }

  p {
      font-style: normal;
      font-weight: 400;
      height: auto;
      letter-spacing: 0.06em;
      line-height: 1.8;
  }

  .title-p {
      color: #1A8CFF;
  }

  .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 1rem;
      font-weight: bold;
      color: #1A8CFF;
  }

  .border-title {
      background: #1A8CFF;
      flex: none;
      height: 1px;
      margin: 0px 0px 20px 0px;
      width: 70px;
      max-width: 100%;
  }

  .btn-primary {
      background-color: #1A8CFF;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      transition: all 0.3s;
  }

  .btn-primary:hover {
      background-color: #0070e0;
  }

  .btn-outline {
      border: 1px solid #1A8CFF;
      color: #1A8CFF;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      transition: all 0.3s;
  }

  .btn-outline:hover {
      background-color: #1A8CFF;
      color: white;
  }

  .bg-gradient-section {
      background: linear-gradient(to top right, #f8f9fa 30%, #ffffff 100%);
  }

  /* 記事詳細ページのスタイル */
  .content {
      font-style: normal;
      font-weight: 400;
      letter-spacing: 0.06em;
      line-height: 1.8;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-all;
  }

  .content h2 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #1A8CFF;
  }

  .content h3 {
      font-size: 1.25rem;
      font-weight: bold;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
  }

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

  .content img {
      max-width: 100%;
      height: auto;
      border-radius: 0.5rem;
      margin: 1.5rem 0;
  }

  .content ul, .content ol {
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
  }

  .content ul li, .content ol li {
      margin-bottom: 0.5rem;
  }

  /* パンくずリスト（横スクロール対応） */
  .breadcrumbs-scroll {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      /* iOS対応 */
  }

  .breadcrumbs {
      display: flex;
      align-items: center;
      font-size: 0.875rem;
      min-width: max-content;
      /* 折り返さず横に並べる */
  }

  /* ボタンスタイル */
  .btn-blue {
      background-color: #1A8CFF;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s;
  }

  .btn-blue:hover {
      background-color: #0070e0;
  }

  .btn-outline-white {
      border: 1px solid white;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s;
  }

  .btn-outline-white:hover {
      background-color: white;
      color: #1A8CFF;
  }

  .articleconts h2 {
      padding: 20px 0;
      margin-bottom: 1rem;
      font-weight: bold;
      font-size: 2.25rem;
      line-height: 2.5rem;
      color: #1A8CFF;
  }

  .articleconts h3 {
      padding: 20px 0;
      font-weight: bold;
      font-size: 1.875rem;
      line-height: 2.25rem;
  }

  .articleconts h4 {
      padding: 20px 0;
      font-weight: bold;
      font-size: 1.4rem;
      line-height: 1.8rem;
  }

  .articleconts ul li {
      list-style-type: disc;
      list-style-position: inside;
  }

  .articleconts p {
      margin-bottom: 20px;
  }

  .wp-block-list {
      list-style-type: disc;
      list-style-position: inside;
  }

  /* 吹き出しのスタイル */
  .balloon {
      position: relative;
      display: inline-block;
      margin: 0;
      padding: 12px 12px;
      min-width: 120px;
      width: 100%;
      color: #555;
      font-size: 16px;
      background: #e0edff;
      border-radius: 15px;
  }

  .balloon:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -15px;
      border: 15px solid transparent;
      border-top: 15px solid #e0edff;
  }

  .balloon p {
      margin: 0;
      padding: 0;
  }


  /* コラム一覧ページのスタイル */
  #column .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
  }

  #column article {
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
  }

  #column article:hover {
      transform: translateY(-5px);
  }

  #column article .h-48 {
      height: 12rem;
  }

  #column article img {
      transition: transform 0.3s ease;
  }

  #column article:hover img {
      transform: scale(1.05);
  }

  #column h3 {
      line-height: 1.4;
      margin-bottom: 0.5rem;
  }

  /* カテゴリーナビゲーション */
  #column .flex.flex-wrap a {
      transition: all 0.3s ease;
      border: 1px solid transparent;
  }

  #column .flex.flex-wrap a:hover:not(.bg-blue-600) {
      border-color: #1A8CFF;
      color: #1A8CFF;
  }

  #column .flex.flex-wrap a.bg-blue-600 {
      background-color: #1A8CFF;
  }

  /* サービスセクションのスタイル */
  #service .service-card {
      transition: all 0.3s ease;
  }

  #service .service-card:hover {
      transform: translateY(-5px);
  }

  #service .service-card img {
      transition: transform 0.3s ease;
  }

  #service .service-card:hover img {
      transform: scale(1.05);
  }

  /**
 * 求人ページ（採用情報ページ）専用のスタイル
 */

  /* FAQ質問と回答のスタイル */
  .faq-question::before {
      content: 'Q.';
      color: #e67e22;
      /* オレンジ色 */
      font-weight: bold;
      margin-right: 0.5em;
  }

  .faq-answer::before {
      content: 'A.';
      color: #2ecc71;
      /* グリーン色 */
      font-weight: bold;
      margin-right: 0.5em;
      float: left;
      /* アイコンの隣にテキストを回り込ませる */
  }

  .faq-answer p {
      overflow: hidden;
      /* floatの影響をクリア */
  }

  /* 入社までの流れのタイムラインスタイル */
  #entry-flow .absolute.h-1.bg-gray-300 {
      z-index: 0;
  }

  /* キャリアパスの水平ラインスタイル */
  #career .absolute.h-1.bg-primary {
      z-index: 0;
  }

  /* カードホバーエフェクト共通スタイル */
  .transition-shadow:hover {
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .transition-transform:hover {
      transform: translateY(-5px);
  }

  /* 研修フローのタイムラインスタイル */
  #training .absolute.h-full.w-1.bg-primary {
      z-index: 0;
  }

  #training .absolute.w-5.h-5.bg-white.border-4.border-primary {
      z-index: 10;
  }

  /* エントリーボタンのホバーエフェクト強化 */
  .bg-primary.text-white.py-4.px-10.rounded-full:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
  }


  /**
 * 採用情報ページ - 画像サイズ統一用スタイル
 */

  /* こんな方を待っています - 画像統一サイズ */
  #wanted-person .text-center.mb-6 {
      width: 100%;
      height: 300px;
      /* PC・タブレット用の高さ */
      overflow: hidden;
      position: relative;
  }

  #wanted-person .text-center.mb-6 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* アスペクト比を保持しながら領域を埋める */
      object-position: center;
      /* 中央に配置 */
  }

  /* 当社の魅力 - 画像統一サイズ */
  #benefits .mb-4 {
      width: 100%;
      height: 200px;
      /* PC・タブレット用の高さ */
      overflow: hidden;
      position: relative;
  }

  #benefits .mb-4 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }

  /* 研修制度の流れ - タイムライン画像サイズ統一 */
  #training .bg-white img {
      width: 100%;
      object-fit: cover;
      object-position: center;
  }

  /* キャリアパス - 画像サイズ統一 */
  #career .bg-light img:not(.rounded-full) {
      width: 100%;
      height: 140px;
      object-fit: cover;
      object-position: center;
  }

  /* 社員インタビュー - 画像サイズ統一 */
  #interview .w-full.md\:w-1\/3 img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      object-position: center top;
      /* 顔が見えるように上部を優先 */
  }

  #interview .w-full.md\:w-2\/3 .w-full.md\:w-1\/3 img,
  #interview .w-full.md\:w-2\/3 .w-full.md\:w-2\/3 img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      object-position: center;
  }

  /* お客様の声 - 画像サイズ統一 */
  #voices .bg-light img:not(.rounded-full) {
      width: 100%;
      height: 180px;
      object-fit: cover;
      object-position: center;
  }

  /* 入社までの流れ - 画像サイズ統一 */
  #entry-flow .bg-white img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      object-position: center;
  }

  /* モバイル用のレスポンシブ対応 */
  @media (max-width: 768px) {
      #wanted-person .text-center.mb-6 {
          height: 200px;
          /* モバイル用に少し小さく */
      }

      #benefits .mb-4 {
          height: 180px;
      }

      #training .bg-white img {
          height: 140px;
      }

      #career .bg-light img:not(.rounded-full) {
          height: 120px;
      }

      #interview .w-full.md\:w-1\/3 img {
          height: 300px;
      }

      #interview .w-full.md\:w-2\/3 .w-full.md\:w-1\/3 img,
      #interview .w-full.md\:w-2\/3 .w-full.md\:w-2\/3 img {
          height: 120px;
      }

      #voices .bg-light img:not(.rounded-full) {
          height: 160px;
      }

      #entry-flow .bg-white img {
          height: 100px;
      }
  }

  /* 小型モバイル用 (iPhone SE など) */
  @media (max-width: 375px) {
      #wanted-person .text-center.mb-6 {
          height: 180px;
      }

      #benefits .mb-4 {
          height: 160px;
      }

      #training .bg-white img {
          height: 120px;
      }

      #career .bg-light img:not(.rounded-full) {
          height: 100px;
      }

      #interview .w-full.md\:w-1\/3 img {
          height: 250px;
      }

      #voices .bg-light img:not(.rounded-full) {
          height: 140px;
      }
  }

  /* FAQのQ&Aスタイル */
  .faq-question::before {
      content: 'Q.';
      color: #e67e22;
      /* オレンジ色 */
      font-weight: bold;
      margin-right: 0.5em;
  }

  .faq-answer::before {
      content: 'A.';
      color: #2ecc71;
      /* グリーン色 */
      font-weight: bold;
      margin-right: 0.5em;
      float: left;
      /* アイコンの隣にテキストを回り込ませる */
  }

  .faq-answer p {
      overflow: hidden;
      /* floatの影響をクリア */
  }