/* <style> */
/* =============================
       CSS変数の定義
    ============================= */
    :root {
      /* --color_main: #304059; */
      --color_main: #304059;
    
     /* color: var(--color_main); */
    
      /* メインカラー（見出し、メニュー、pre-footer背景） */
      /* --color_deep02: #304059; */
    
      --color_deep02: #2f5073;
      /* 強調カラー */
    }
    
    /* =============================
           基本リセット
        ============================= */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: sans-serif;
      line-height: 1.6;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    .color_b {
    color: #2f5073;
    }
    
    .color_sb {
      color:#304059;
    }
    
    /* =============================
           コンテナ・レイアウト
        ============================= */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 0;
    }
    
    .home main .container {
      padding: 2rem 0 3rem;
    }
    
    .row {
      display: flex;
      flex-wrap: wrap;
      margin: -0.5rem;
    
    }
    
    .col {
      padding: 0.5rem;
      flex: 1;
    }
    
    section {
      padding: 1rem 0 2rem;
    }
    
    @media (max-width: 768px) {
      .home main .container {
        padding: 2rem 0 0rem;
      }
      section {
        padding: 0rem 0 2rem;
      }
    }
    
    /* =============================
     　　　改行
        ============================= */
    
    
    
    @media (max-width: 768px) {
      .sp_br::after {
        content: "\A";
        white-space: pre;
      }
    }
    
    /* =============================
           ヘッダー（常時追従・画面幅いっぱい）
        ============================= */
    header.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      /* 画面全体に広がる */
      background: #fff;
      z-index: 1000;
      /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
      padding: 0;
      max-width: inherit;
    }
    
    /* ヘッダー内：ロゴ20%、メニュー70%（中央寄せ） */
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 90%;
      margin: 0 auto;
      padding: 0.5rem 0;
    }
    
    .header-inner .menu-item {
      width: 25%;
      border: 1px dotted #000;
    }
    
    .logo {
      flex: 0 0 20%;
    }
    
    .logo a {
      display: inline-block;
      width: 250px
    }
    
    
    
    .desktop-menu {
      flex: 0 0 70%;
    }
    
    @media (max-width: 768px) {
      .logo a {
        display: inline-block;
        width: 200px
      }
      .logo a img{
      transform: translateY(4px);
      }
    }
    
    /* =============================
           ヘッダーメニューの構造（PC用）
           各メニュー項目：アイコン画像＋メニュー名（縦並び）
        ============================= */
    .desktop-menu .menu {
      display: flex;
      list-style: none;
      justify-content: space-around;
    }
    
    .desktop-menu .menu li a {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .header-inner .menu-item {
      width: 25%;
      border-top: none;
      border-left: none;
      border-right: 1px dotted  var(--color_main);
      border-bottom: none;
    }
    .header-inner .menu-item:last-of-type {
      width: 25%;
      border-top: none;
      border-left: none;
      border-right: none;
      border-bottom: none;
    }
    
    .menu-icon {
      width: 2.5rem;
      margin-bottom: 0.3rem;
    }
    
    /* タブレット、モバイル用（.mobile-menu）のメニュー項目は横並び */
    .mobile-menu li a {
      display: flex;
      flex-direction: row;
      align-items: center;
    }
    
    .mobile-menu li a .menu-icon {
      margin-right: 0.5rem;
      margin-bottom: 0;
    }
    
    /* メニューリンク（PC・モバイルとも） */
    .desktop-menu .menu a,
    .mobile-menu a {
      color: var(--color_main);
      transition: color 0.3s;
    }
    
    .desktop-menu .menu a:hover,
    .mobile-menu a:hover,
    .menu-item a:hover .menu-text {
      color: var(--color_deep02);
    }
    
    .menu-item a:hover .menu-text {
      transition: color 0.3s;
    color:#c39400;
    }
    
    
    .menu-item a .menu-icon {
    width: 2rem;
    background-position: center;
    background-size: 2rem 2rem;
    height: 2rem;
    display: flex;
    transition: 0.3s;
    
    }
    
    .menu-item a .menu-icon img {
      display: none;
    }
    
    .menu-ov a .menu-icon{
      background-image: url("/image/icon_ov.png");
    
    }
    .menu-pro a .menu-icon{
      background-image:url("/image/icon_pro.png");
    
    }
    .menu-re a .menu-icon{
      background-image: url("/image/icon_re.png");
    }
    .menu-co a .menu-icon{
      background-image: url("/image/icon_co.png");
    }
    
    .menu-ov a:hover .menu-icon{
      background-image: url("/image/icon_ov_active.png");
    
    }
    .menu-pro a:hover .menu-icon{
      background-image: url("/image/icon_pro_active.png");
    }
    .menu-re a:hover .menu-icon{
      background-image: url("/image/icon_re_active.png");
    }
    .menu-co a:hover .menu-icon{
      background-image: url("/image/icon_co_active.png");
    }
    
    /* タブレット・モバイル用：ハンバーガーメニュー（初期非表示） */
    .mobile-menu-toggle {
      display: none;
    }
    
    .mobile-menu-toggle button {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
    }
    
    /* =============================
           モバイルメニュー（サイドバー）
        ============================= */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -250px;
      /* 非表示状態 */
      width: 250px;
      height: 100%;
      background: #fff;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
      transition: left 0.3s ease;
      z-index: 999;
      /* 後述でメディアクエリ内で上書きします */
      padding: 2rem 1rem;
    }
    
    .mobile-menu.open {
      left: 0;
    }
    
    .mobile-menu ul {
      list-style: none;
    }
    
    .mobile-menu li {
      margin-bottom: 1rem;
    }
    
    .mobile-menu a {
      font-size: 1.2rem;
    }
    
    /* =============================
           メインコンテンツの上部マージン（ヘッダー分の余白）
        ============================= */
    main {
      margin-top: 5rem;
    }
    
    /* =============================
           レスポンシブ対応
        ============================= */
    @media (max-width: 768px) {
      main {
        margin-top: 3rem;
      }
    
      .desktop-menu {
        display: none;
      }
    
      .mobile-menu-toggle {
        display: block;
      }
    
      .row {
        flex-direction: column;
        /* align-items: center; */
      }
    
      .col {
        flex: 0 0 100%;
        max-width: 100%;
      }
    
      /* タブレット、モバイル時は、フッター前のヘッダーメニュー表示（.header-menu-items）は非表示 */
      .header-menu-items {
        display: none;
      }
    
      /* 【追記】タブレット、モバイル時にハンバーガーメニュー展開時の前面表示 */
      .mobile-menu {
        z-index: 9999;
      }
    
      /* 【追記】タブレット、モバイル時の見出しサイズを調整 */
      .section-heading {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
      }
    
      .item-heading {
        font-size: 1.2rem !important;
      }
    
      /* 【追記】タブレット、モバイル時のsection-heading疑似要素の幅・余白調整 */
      .section-heading::before,
      .section-heading::after {
        width: 10% !important;
        margin: 0 0.5rem;
      }
    
      .single .section-heading::before,
      .single .section-heading::after {
        display: none;
      }
    
      .page .section-heading::before,
      .page .section-heading::after {
        display: none;
      }
    
    
    
      /* 【追記】タブレット、モバイル時の製品紹介：各product-itemを2列構成 */
      .products-grid .product-item {
        /* flex: 0 0 50%;
            max-width: 50%; */
      }
    
      #pre-footer .pre-footer-menu {
      padding: 1.5rem 0 0;
      }
    
      /* 【追記】タブレット、モバイル時のフッター前：pre-footerのカラムを1列構成 */
      #pre-footer .pre-footer-menu .col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
      }
    }
    
    @media (min-width: 769px) {
      .row {
        display: flex;
        align-items: flex-start;
    
      }
    
      /* 【追記】PC時の製品紹介：各product-itemを3列構成 */
      .products-grid .product-item {
        /* flex: 0 0 33.3333%;
            max-width: 33.3333%; */
        /* display: flex; */
      }
    
      
    }
    
    /* =============================
           各セクション内の見出し（.section-heading）
             →中央揃え＋左右に装飾用疑似要素（ストライプ）
        ============================= */
    .section-heading {
      display: flex;
      align-items: center;
      font-size: 2rem;
      margin:2rem auto 4rem;
      text-align: center;
      color: var(--color_main);
      position: relative;
      justify-content: center;
      /* ※PC時は30%の幅、モバイル時は上記メディアクエリで調整 */
    }
    
    .section-heading::before {
      content: "";
      display: flex;
      width: 30%;
      height: 20px;
      margin-right: 1rem;
      background: url("/image/stripe.gif") repeat-x bottom left !important;
    }
    
    .section-heading::after {
      content: "";
      display: flex;
      width: 30%;
      height: 20px;
      margin-left: 1rem;
      background: url("/image/stripe.gif") repeat-x bottom left !important;
    }
    
    .section-heading img {
      width: 1em;
      height: 1em;
      vertical-align: middle;
      margin-right: 0.5em;
    }
    
    .item-heading {
      font-size: 1.2rem;
      margin-top: 1rem;
      color: var(--color_main);
      text-align: center;
    }
    
    .paragraph {
      margin-bottom: 1rem;
      line-height: 1.8;
    }
    
    .contact .inquiry {
      background: #fff !important;
    }
    
    .contact .inquiry-item img {
      width: 2.5rem;
      height: 2.5rem;
    }
    
    .contact .inquiry .inquiry-phone .tel {
      font-size: 2.4rem;
      margin-bottom: 0;
      padding-left: 0.5rem;
    }
    
    @media (max-width: 768px) {
      .contact .inquiry-item img {
        width: 1.5rem;
        height: 1.5rem;
      }
      .contact .inquiry .inquiry-phone .tel {
        font-size: 1.4rem;
      
      }
      
    }
    
    
    /* 各セクションのアクセスボタン用ラッパー（containerの直前に配置） */
    .section-access {
      text-align: center;
      margin: 2rem 0 1rem;
    }
    
    .section-access a {
    width: 300px;
    }
    /* .access-btn {
          display: inline-block;
          background-color: var(--color_deep02);
          color: #fff;
          padding: 0.5rem 1rem;
          border-radius: 4px;
          transition: background-color 0.3s;
        }
        .access-btn:hover {
          background-color: var(--color_main);
        } */
    
    /* =============================
           ボタンのスタイル（強調カラー使用）→既存の.btnクラス
        ============================= */
    
    /* =============================
           メインビジュアル
        ============================= */
    
    
    #main-visual {
      /* position: relative;
      height: 90vh;
      background-size: cover;
      background-image: url(/image/main.png);
      background-position: -1100px center;
     */
    
    
      background-position: center;
      height: 90vh;
      background-size: cover;
      background-image: url(/image/main.png);
      background-repeat: no-repeat;
    }
    
    .main-title {
      position: absolute;
      top: 45vh;
      left: 0;
      right: 0;
      margin: 0 auto;
      display: flex;
      width: 100%;
      max-width: fit-content;
      flex-direction: column;
      justify-content: center;
      color: #fff;
      font-size: 3rem;
    }
    
    .sub-text {
      
        margin-bottom: 0rem !important;
    
    }
    .main-title p {
      text-decoration: underline;
      text-underline-offset: 0.8rem;
    }
    
    .main-title h1 {
      font-size: 4.5rem;
    }
    
    
    
    
    
    #main-visual .container {
      max-width: max-content;
      margin: 0;
      width: 100%;
      padding: 0;
    }
    
    #main-visual .container img {
      width: 100%;
      height: 80vh;
      object-fit: cover;
      object-position: 50% 50%;
    }
    
    @media (max-width: 900px) {
      #main-visual {
        /* height: 80vh; */
        background-position: center !important;
        /* background-image: url(/image/main_sp.png); */
        background-repeat: no-repeat;
    }
    .main-title {
      /* top: 32vh; */
      top: 45vh !important;
    }
    
    
    
    
    
    
      #main-visual .container {
    
        max-width: fit-content;
        margin: 0;
        width: 100%;
    
      }
    
    
      .main-title p {
        font-size: 1rem;
      }
    
      .main-title h1 {
        font-size: 1.8rem;
      }
    
    
    }
    
    
    
    /* =============================
           会社概要
        ============================= */
    
    .about-content {
      align-items: center;
    }
    
    .about .about-content .main-catch {
    font-size: 2rem;
    margin-bottom: 1rem !important;
    display: flex;
    
    }
    .about .about-content .main-catch_1 {
    /* font-size: 1.2rem; */
    }
    .about .about-content .main-catch_2 {
     
    }
    
    .media-card.right.president-item .media-content {
      flex: 1 !important;
    }
    
    .media-card.right.president-item .media-image {
      flex: 1 !important;
    }
    
    .page.about .president-item .media-text{
    text-align: center !important;
    }
    
    
    
    @media (max-width: 768px) {
    .about .about-content .main-catch {
        font-size: 1.3rem;
        margin-bottom: 1.5rem !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        }
    }
    
    
    
    /* =============================
           特徴
        ============================= */
    #features {
      background: var(--color_main);
      color: #fff;
    }
    
    #features .section-heading {
      color: #fff;
      border-top: 1px solid #fff;
      border-bottom: 1px solid #fff;
      max-width: fit-content;
      margin: 0 auto 3rem;
      padding: 1rem 3rem;
      text-align: center;
    }
    
    #features .section-heading::before {
      content: "";
      display: none;
    }
    #features .section-heading::after {
      content: "";
      display: none;
    }
    
    .feature-item img {
      width: 100%;
      max-width: 30%;
      margin: 0 auto;
    }
    
    .feature-item_text {
      width: 100%;
      margin: 0 auto;
    }
    
    
    .feature-item_text {
      width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    
    .feature-item_title {
      display: flex;
      justify-content: center;
      align-items: center;
      margin:0.5rem auto 1rem;
    }
    
    .feature-item_text .paragraph{
      width: 80%;
      margin: 0 auto 2rem;
      text-align: left;
    }
    
    .feature-item_title img {
      width: 100%;
      max-width: fit-content;
      width: 2rem;
      height: 2rem;
      margin: 0 1rem 0 0;
    
    }
    
    .feature-item_title .item-heading {
      color: #fff;
      display: flex;
      align-items: center;
      margin-top: 0;
    }
    
    .feature .item-heading img {
      width: 2rem;
      max-width: fit-content;
    }
    .feature-item_title h3 {
      position: relative;
    counter-reset: number 0;   
    }
    /* 
    .feature-item_title h3::before {
      content: "特徴\A 1";
      white-space: pre;
      counter-increment: number;  
    width: 20px;
    height: 20px;
    display: flex;
      position: absolute;
      top: -0.5rem;
      left: -3rem;
      color: #304059;
      border-radius: 50%;
      background: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.5rem;
    font-weight: bold;
    gap: 0;
    }
    
    .feature-item:nth-child(2) .feature-item_title h3::before {
      content: "特徴\A 2";
    }
    
    .feature-item:nth-child(3) .feature-item_title h3::before {
      content: "特徴\A 3";
    } */
    
    @media (max-width: 768px)  {
      
    #features .section-heading {
      padding: 1rem 1.5rem;
    }
    
    }
    /* =============================
           製品紹介の各product-itemにリンクを付与するための調整
           → 各.product-item内の内容を<a>タグでラップ
        ============================= */
    .product-item a {
      display: block;
      text-align: center;
      color: inherit;
    }
    
    /* 製品紹介セクションのグリッドレイアウト（初期はPC用：3列） */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      justify-items: center;
      /* 各グリッドアイテムの内容を水平中央に揃える */
      text-align: center;
      /* テキストも中央揃え */
    }
    
    /* タブレット、モバイル時：2列構成 */
    @media (max-width: 768px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    
      .products-grid .item-heading {
        font-size: 0.7rem !important;
      }
    }
    
    /* =============================
        お問い合わせ
        ============================= */
    
    .contact-content {
      text-align: center;
    }
    
    /* =============================
           フッター前（#pre-footer）のスタイル
           背景：メインカラー、文字色：白
        ============================= */
    #pre-footer {
      background: var(--color_main);
      color: #fff;
    }
    
    #pre-footer .pre-footer-menu {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      margin-bottom: 2rem;
    }
    
    #pre-footer .logo {
      /* background: #fff; */
      padding: 0rem;
      width: 100%;
      margin-bottom: 0.5rem;
    }
    
    #pre-footer .pre-footer-menu .col {
      flex: 0 0 25%;
      max-width: 25%;
    }
    
    #pre-footer .inquiries  {
      width: 100%;
    }
    
    #pre-footer .inquiries .item-heading {
    width: 100%;
        background: #fff;
        color: #304059;
        text-align: center;
        /* padding: 1.1rem 0; */
        margin: 0;
    }
    
    
      
    
    #pre-footer .inquiries .tel {  
      font-size: 1.5rem;
    margin-top: -0.3rem;
    width: 100%;
    text-align: center;
    }
    
    #pre-footer .inquiries p{  
     margin-bottom:0;
    }
    .pre-footer-menu-list {
      list-style: none;
    }
    
    .copyright a{
      font-size: 0.7rem !important;
    }
    
    .company-info {
      text-align: left;
    }
    
    
    
    .inquiries {
      text-align: left;
    }
    
    .empty-column {
      /* 空欄 */
    }
    
    .header-menu-items {
      text-align: left;
    }
    
    .header-menu-items ul {
      list-style: none;
      padding-left: 0;
    }
    
    .header-menu-items li {
      margin-bottom: 0.5rem;
    }
    
    @media (max-width: 768px) {
      #pre-footer .logo {
    
        width: 80%;
      }
    
      .company-info img {
        width: 60%;
        margin: 0;
      }
    
      #pre-footer .item-heading {
        color: #fff;
        text-align: left;
        font-size: 1rem;
      }
    
      #pre-footer .inquiries .pre-footer-item_inner {
        border:1px solid #fff;
        padding: 0.5rem;
         }
    
      .pre-footer-menu-list {
        display: none;
        padding: 0;
      }
    }
    
    /* =============================
           フッターのスタイル
           背景：白、文字色：黒、中央揃え
        ============================= */
    .footer {
      background: #fff;
      color: #000;
      padding: 1rem 0;
      text-align: center;
    }
    
    /* =============================
           グーグルマップ表示部分：セクション領域いっぱいに表示
        ============================= */
    .pre-footer-map {
      width: 100%;
      margin: 0;
      padding: 0;
    }
    
    .pre-footer-map iframe {
      width: 100%;
      height: 450px;
    }
    
    /* </style> */
    
    /* CSS変数 */
    :root {
      --color_main: #304059;
      --color_deep02: #304059;
    }
    
    /* ヘッダー関連（トップページと同様のスタイル） */
    .header {
      /* ... 既存のヘッダースタイル ... */
    }
    
    .header-inner {
      /* ... */
    }
    
    .logo {
      /* ... */
    }
    
    .desktop-menu {
      /* ... */
    }
    
    .mobile-menu-toggle {
      /* ... */
    }
    
    /* ※必要に応じて既存のトップページ用CSSを流用 */
    
    .page,
    .single {
      background: #F6F6F6;
    }
    
    /* タイトル表示領域 */
    .page-title {
      background-size: cover;
      background-position: center;
      padding: 4rem 0;
    }
    
    .page-title-text {
      text-align: center;
      color: #fff;
      font-size: 2.5rem;
    }
    
    @media (max-width: 768px) {
    
      /* タイトル表示領域 */
      .page-title {
        padding: 2rem 0;
      }
    
      .page-title-text {
        text-align: center;
        color: #fff;
        font-size: 1.6rem;
      }
    
    }
    
    /* パンくずリスト */
    .breadcrumb ul {
      list-style: none;
      display: flex;
      font-size: 0.9rem;
    }
    
    .breadcrumb li {
      margin-right: 0.5rem;
    }
    
    /* 固定ページコンテンツ＋サイドバー */
    .fixed-page-content {
      display: flex;
      gap: 2rem;
      margin-top: 0rem;
    }
    
    .fixed-page-content .content {
      flex: 0 0 70%;
      background: #fff;
      padding:0rem 1.5rem 1rem;
    }
    
    .fixed-page-content .sidebar {
      flex: 0 0 25%;
    }
    @media (max-width: 768px) {
      .fixed-page-content .content {
      
        padding:0rem 0.5rem 1rem;
      }
    }
    
    
    /* 見出しタイトル */
    
    .content h1 {
      font-size: 2rem;
      margin: 1.5rem 0 0.5rem;
    }
    
    .content h2 {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      margin: 1.5rem 0 1rem;
      font-weight: bold;
    }
    
    .content h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      position: relative;
      padding-left: 1.5rem;
      font-weight: bold;
    }
    
    .content h3::before {
      content: url(/image/h_img.png);
      position: absolute;
      top: 6%;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .content h4 {
      font-size: 1rem;
      font-weight: bold;
      margin: 1.5rem 0 0.5rem;
    
    }
    
    .content h5 {
      font-weight: bold;
      font-size: 1rem;
    }
    
    .content h6 {
      margin: 1.5rem 0 0.5rem;
    }
    
    /* page */
    .page .content h2 {
      background: #304059;
      color: #fff;
    }
    
    .page .content h3 {
      color: #304059;
    }
    
    .page .content h4 {
      color: #304059;
    }
    
    .page.about .media-card{
     align-items: center;
      }
    
    
    .page.about .media-title{
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0rem;;
    }
    
    /* single */
    
    .single .content h2 {
      background: #eee;
      color: #000;
    }
    
    .single .content h3 {
      color: #000;
    }
    
    .single .content h4 {
      color: #000;
    }
    
    
    .product .content h2.genre-title {
      margin-bottom: 0.5rem !important;
      font-size: 1rem !important;
      position: relative !important;
      padding-left: 1.5rem !important;
      color: #304059 !important;
      background: #fff !important;
    }
    
    .product .content h2.genre-title::before {
      content: url(/image/h_img.png) !important;
      position: absolute;
      top: 20% !important;
      left: 0 !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
    }
    
    .product .content h3 {
      font-size: 1rem;
      color: #000;
      padding-left: 0 !important;
    }
    
    .product .content h3::before {
      display: none !important;
    }
    
    
    
    
    
    
    @media (max-width: 768px) {
      .fixed-page-content {
        flex-direction: column;
      }
    
      .sidebar {
        display: none;
      }
    }
    
    /* 製品一覧表示内のジャンルごとのレイアウト */
    .product-list .genre-products {
      display: grid;
      /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .product-list .genre-products.genre-products_1fr {
      grid-template-columns: 1fr;
    
    }
    
    .product-list .genre-products.genre-products_2fr {
      grid-template-columns: 1fr 1fr;
    
    }
    
    
    
    
    .genre-products .product-item {
      /* flex: 0 0 33.3333%;
            max-width: 33.3333%; */
      display: flex;
      gap: 1rem;
    }
    
    
    .genre-products .product-item .product-image {
      width: 40%;
      object-fit: cover;
    }
    
    .genre-products .product-item .product-info {
      width: 60%;
    }
    
    table {
      width: 100%;
    
      border-collapse: collapse;
      border-spacing: 0;
      border-top: solid 1px #f9f9f9;
    }
    
    table tr:nth-child(2n+1) {
      background: #f9f9f9;
    
    }
    
    table th,
    table td {
      font-size: 1rem;
      padding: 10px;
      border: solid 1px #ccc;
    }
    
    table tr td:first-child {
    
      white-space: pre;
    
    }
    
    /** ---- HACK ---- **/
    
    
    .content_area {
      padding: 1rem 0 2rem;
    }
    
    table {
      width: 100%;
      margin-bottom: 10px;
      border-top: 1px solid #ccc;
      border-left: 1px solid #ccc;
    }
    
    th,
    td {
      padding: 10px 18px;
      border-right: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      line-height: 2.7rem;
      vertical-align: top;
    }
    
    th {}
    
    @media (max-width: 768px) {
      table th,
    table td {
      font-size: 0.8rem;
    }
    }
    /*---------- スクロール可能なテーブル関連のCSS ----------*/
    .table_box {
      display: block;
      overflow: auto;
    }
    
    .table_box th,
    .table_box td {
      white-space: nowrap;
    }
    
    /* スクロールバー全体を対象にする */
    .table_box::-webkit-scrollbar {
      width: 10px;
      /* スクロールバーの幅 */
      height: 10px;
      /* スクロールバーの高さ */
    }
    
    /* スクロールバーの背景部分をカスタマイズ */
    .table_box::-webkit-scrollbar-track {
      background: #f1f1f1;
      /* スクロールバーの背景色 */
      border-radius: 5px;
      /* 角丸にする */
    }
    
    /* スクロールバーの操作部分をカスタマイズ */
    .table_box::-webkit-scrollbar-thumb {
      background: #888;
      /* スクロールバーの操作部分の背景色 */
      border-radius: 5px;
      /* 角丸にする */
    }
    
    /* スクロールバーの操作部分にホバーした時のスタイル */
    .table_box::-webkit-scrollbar-thumb:hover {
      background: #555;
      /* ホバー時のスクロールバーの操作部分の背景色 */
    }
    
    
    
    @media (max-width: 768px) {
    
      /* タブレット・モバイル：2カラム→1カラム */
      .genre-products .product-item {
        /* flex: 0 0 33.3333%;
                max-width: 33.3333%; */
        flex-direction: column;
      }
    
      .genre-products .product-item .product-image {
        width: 100%;
        object-fit: cover;
      }
    
      .product-list .genre-products {
        display: grid;
        grid-template-columns: 1fr !important;
    
      }
    
      .genre-products .product-item .product-info {
        width: 100%;
      }
    
    }
    
    
    /* サイドバー内のコンテンツ */
    .sidebar-container {
      background: #f7f7f7;
    
    }
    
    .sidebar-title {
      background:  var(--color_main);
      padding: 0.5rem;
      color: #fff;
    }
    
    .sidebar-item {
      background: #fff;
      margin-bottom: 1rem;
    }
    
    .sidebar-item .sidebar-text {
      padding: 1rem 1.5rem;
    }
    
    .sidebar-product-list {
      list-style: "ー";
      margin-bottom: 1rem;
    }
    
    .sidebar-product-list ul {
      list-style: "ー";
      padding-left: 1rem;
    }
    
    .sidebar-product-list h5 {
      margin-top: 0.5rem;
    }
    
    .sidebar-product-list h5:first-of-type {
      margin-top: 0rem;
    }
    
    .sidebar-product-list ul li {
      font-size: 0.8rem;
      padding-left: 1rem;
      cursor: pointer;
    }
    
    .sidebar-links a {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--color_main);
    }
    
    .sidebar-links p {
      display: block;
      margin-bottom: 0.5rem !important;
    }
    .sidebar-links a.btn {
    
      color: #fff !important;
      font-size: 0.9rem !important;
      text-align: center;
    }
    
    /* 求人 */
    .page.recruit .content h2 {
    margin-top: 0;
    }
    
    .page.recruit .tabs {
    display: none;
      }
    .page.recruit .job-tab {
    display: none;
    }
    
    /* 求人タブコンテンツ（簡易例） */
    .job-tabs {
      width: 100%;
      margin: 0;
    }
    
    .job-tabs .tabs {
      display: flex;
      margin-bottom: 1rem;
      border-right: 1px solid #ccc;
    }
    
    .job-tabs .tab {
      width: 100%;
      font-size: 1rem;
      padding: 0.5rem 1rem;
      background: #fff;
      color: var(--color_main);
      border: none;
      cursor: pointer;
      border-left: 1px solid #ccc;
      border-bottom: 2px solid #ccc;
    }
    
    
    .job-tabs .tab.active,
    .job-tabs .tab:hover {
      /* background: var(--color_main); */
      border-bottom: 2px solid  var(--color_main);
    }
    
    .job-tabs table {
      margin-top: 1rem;
    }
    
    @media (max-width: 768px) {
      .job-tabs .tab {
        font-size: 0.8rem;
        padding:0.2rem 0.2rem;
      }
    }
    
    
    /* その他、必要に応じたスタイルを追加 */
    
    
    
    /* single */
    
    /* CSS変数 */
    :root {
      --color_main: #304059;
      --color_deep02: #304059;
    }
    
    /* ヘッダー・基本レイアウト（fixed-page.cssと共通部分は共通CSSにまとめてもよい） */
    .header {
      /* 既存のヘッダースタイルを流用 */
    }
    
    .header-inner {
      /* ... */
    }
    
    .logo {
      /* ... */
    }
    
    .desktop-menu {
      /* ... */
    }
    
    .mobile-menu-toggle {
      /* ... */
    }
    
    /* メインコンテンツ */
    .single-page-content {
      padding: 2rem 0;
    }
    
    /* 製品紹介用セクションの２カラムレイアウト */
    .single-product-intro .product-intro {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-bottom: 2rem;
    }
    
    .single-product-intro .product-image {
      flex: 0 0 30%;
    }
    
    .single-product-intro .product-info {
      flex: 0 0 70%;
    }
    
    .single-product-intro .product-title {
      background: var(--color_main);
      color: #fff;
      padding: 0.5rem;
      text-align: center;
    }
    
    
    
    
    
    
    /* お問い合わせの２カラムレイアウト */
    
    .inquiry {
      padding: 0.1rem 1rem 2rem;
      background-color: #eee;
      text-align: center;
    }
    
    .inquiry .inquiry-content {
      display: flex;
      gap: 1rem;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    
    }
    
    .single .content .inquiry h2.section-heading {
      background: transparent !important;
      font-size: 1.2rem;
    }
    
    .inquiry-item {
      display: flex;
      align-items: center;
    }
    
    .inquiry-item img {
      width: 1.5rem;
      height: 1.5rem;
    }
    
    .inquiry .inquiry-button {
      max-width: fit-content;
    }
    
    
    
    .inquiry .inquiry-phone {
      max-width: fit-content;
      flex: 1;
    }
    
    .inquiry .inquiry-phone .tel {
      font-size: 2rem;
      margin-bottom: -1rem;
    }
    
    .inquiry .inquiry-phone .time {
      font-size: 0.8rem;
      margin-bottom: 0;
    }
    
    
    
    .single .content .product.inquiry h2.section-heading {
      background: transparent !important;
      font-size: 1.2rem;
    }
    
    
    
    .product.inquiry {
      background-color: #eee;
    }
    
    
    .about .inquiry, .recruit .inquiry {
      background-color: #fff !important;
    }
    
    .about .content .inquiry h2.section-heading, .recruit .inquiry h2.section-heading{
      background: transparent !important;
      color: #000;
      font-size: 1.2rem;
    }
    
    .inquiry-content {
      margin-bottom: 1rem;
    }
    
    .inquiry .inquiry-phone .tel {
      font-size: 1.2rem;
      margin-bottom: 0;
    }
    
    .about .inquiry-mail .mail , .recruit .inquiry .inquiry-mail .mail {
      font-size: 1.2rem;
      margin: 0;
      white-space: pre;
    }
    
    .about .inquiry-button , .recruit .inquiry-button{
      width: 100%;
      margin: 0 auto;
    }
    
    .about .inquiry-item p,  .recruit .inquiry-item p{
      padding: 0.5rem;
    }
    
    .recruit .recruit-img {
    margin-bottom: 2rem;
    }
    @media (max-width: 768px) {
      .home .inquiry {
        padding: 0.5rem 1rem 0rem;
      }
      .inquiry {
        padding: 0.5rem 1rem 2rem;
      }
    
      .inquiry-content {
        flex-direction: column-reverse !important;
        gap: 1rem !important;
      }
    
      .inquiry .inquiry-button {
        width: 100%;
      }
    
    }
    
    
    @media (max-width: 768px) {
    
      /* タブレット・モバイル：2カラム→1カラム */
      .single-product-intro .product-intro,
      .inquiry .inquiry-content {
        flex-direction: column;
        text-align: center;
        gap:0 !important;
      }
    }
    
    
    
    .btn {
      display: inline-block;
      color: #fff;
      background: #304059;
      padding: 1rem 1.5rem;
      cursor: pointer;
      /* box-shadow: 0px 5px #353535; */
      box-shadow: 6px 6px 0px 0px rgba(255, 255, 255, 1), 7px 5px 0px 0px rgba(0, 0, 0, 1), 7px 7px 0px 0px rgba(0, 0, 0, 1), 5px 7px 0px 0px rgba(0, 0, 0, 1);
      transition: .3s;
      font-weight: bold;
    }
    
    
    .btn:hover {
      box-shadow: 0px 0px #000;
      transform: translateY(5px);
    }
    
    .btn:active {
      box-shadow: 0 0;
      transform: translateY(0px);
    }
    
    .btn span {
      font-size: 0.7rem;
    }
    
    @media (max-width: 768px) {
      .btn {
        font-size: 0.8rem !important;
      }
    }
    
    
    
    /* メディアカードの基本スタイル */
    .media-card {
      display: flex;
      align-items: flex-start;
      margin: 1rem auto;
      width: 100%;
      /* max-width: 800px; */
      /* background: #fff; */
      /* border: 1px solid #ddd; */
      /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
      /* padding: 1rem; */
    }
    
    /* 左画像版 */
    .media-card.left .media-image {
      order: 0;
      margin-right: 1rem;
    }
    
    .media-card.left .media-content {
      order: 1;
      width: 60%;
    }
    
    /* 右画像版 */
    .media-card.right .media-image {
      order: 1;
      margin-left: 1rem;
    }
    
    .media-card.right .media-content {
      order: 0;
      width: 60%;
    }
    
    /* 画像領域 */
    .media-image img {
      /* width: 45%; */
      height: auto;
      display: block;
    }
    
    /* テキスト領域 */
    .media-content {
      text-align: left;
      width: 100%;
    }
    
    .media-title {
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
      color: #333;
    }
    
    .media-text {
      font-size: 1rem;
     
    }
    
    .product .media-image img {
     aspect-ratio: 1;
     max-width: 250px;
     margin: 0 auto;
    }
    
    /* レスポンシブ対応：画面幅が600px以下の場合は縦並びに */
    @media (max-width: 600px) {
      .media-card {
        flex-direction: column;
        text-align: center;
      }
    
      .media-card.left .media-image,
      .media-card.right .media-image {
        order: 0;
        margin: 0 0 1rem;
        width: 100% !important;
      }
    
      .media-card.left .media-content,
      .media-card.right .media-content {
        order: 1;
    width: 100% !important;
      }
    
      .media-image img {
        width: 100%;
        /* max-width: 300px; */
        /* aspect-ratio: 1 / 1;
        object-fit: contain; */
        max-height: 300px;
      }
    }
    
    
    /* CSS変数 */
    :root {
      --color_main: #304059;
      --color_deep02: #304059;
      --font_main: sans-serif;
    }
    
    /* ベーシックリセット */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: var(--font_main);
      line-height: 1.6;
      background: #fff;
      color: #333;
    }
    
    /* コンテナ */
    /* .container {
      width: 90%;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .site-title {
      font-size: 1.8rem;
      color: var(--color_main);
      text-align: center;
      margin-bottom: 0.5rem;
    }
    .main-nav ul {
      list-style: none;
      text-align: center;
    }
    .main-nav ul li {
      display: inline-block;
      margin: 0 1rem;
    }
    .main-nav ul li a {
      color: var(--color_main);
      font-size: 1rem;
    }
    
    /* メインコンテンツ */
    /* .main-content {
      background: #fff;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .post-title {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
      color: var(--color_main);
    }  */
    
    
    .container p,
    .container table {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    
    .privacy .article_txt a {
      color: #1A02EE !important;
    }
    
    
    