* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
/*
html {
    scroll-padding-top: 100px; /* ヘッダーの高さと同じ */
}
*/
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /*background-color: #f4f4f4;*/
    margin:0 0 0 0;

}
.top_cell {

  font-size: 9pt;
  line-height: 10pt;


}




.search_container{
  position: relative;
  box-sizing: border-box;
  border: 2px solid #3879D9;
  padding: 3px 10px;
  border-radius: 3px;
  height: 2.3em;
  width: 283px;
  overflow: hidden;
}
.search_container input[type="text"]{
  border: none;
  height: 2.0em;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  background: #3879D9;
  color: #fff;
  position: absolute;
  width: 3.5em;
  height: 3.0em;
  right:0px;
  top: -5px;
  outline : none;
}


.search-form {
    display: flex;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    overflow: hidden;
    width:100%;
}

.select-box {
    padding: 12px;
    background-color: skyblue;
    color: #000;
    border: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    cursor: pointer;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    width:100%;
}

.search-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease-in-out;
}

.search-icon {
    margin-right: 8px;
}

.search-button:hover {
    background-color: #e35d5a;
}

.itemsearch_font_size {
 font-size:11pt;
}


.sidebar-list dt {
    font-weight: bold;
    margin-top: 10px;
}

.sidebar-list dd {
    margin-left: 20px;
}

.sidebar-list a {
    text-decoration: none;
    color: #333;
}

.sidebar-list a:hover {
    color: #0073e6;
    text-decoration: underline;
}

/*トップページの製品表示*/
.grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* ここでアイテムの幅を設定し、自動で行を埋める */
            gap: 20px; /* グリッドアイテム間のギャップ */
            justify-content: center; /* 全体を中央寄せ */
            width: 96%; /* コンテナの幅 */
            margin: 20px auto; /* ページ中央に配置 */
            border: 1px solid #ccc;
            padding: 2%;
}

.grid-item {
            display: flex;
            flex-direction: column; /* 子要素を縦に並べる */
            align-items: center; /* 中央揃え */
            /*border: 1px solid black;*/
            padding: 0px;
            /*background-color: #f8f8f8;*/
}

.item-content {
            width: 100%; /* 幅を親に合わせる */
            height: 150px; /* 高さの設定 */
            display: flex;
            justify-content: center;
            align-items: center;
            /*background-color: #ccc;  例えば画像があれば背景色は不要 */
}

.item-text {
            margin-top: 5px; /* コンテンツとテキストの間に余白を設ける */
            text-align: center;
            font-size: 14pt;
            color: #333;
}


/* Headerの全体レイアウト */
.header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;  /* 背景を白に設定 */
    padding: 0 20px;
}

/* ロゴのスタイル */
.logo img {
    width: 250px;
    max-width: 300px;
    height: auto;
}



/* 検索バーのスタイル */
/* クールな検索ボックスのスタイル */
.search-bar-cool {
    position: relative;
    width: 300px;
}

.search-bar-cool input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 25px;
    transition: border-color 0.3s ease;
    outline: none;
    padding-right: 40px;
}

.search-bar-cool input[type="text"]:focus {
    border-color: #5c9ded;
}

.search-bar-cool button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 18px;
    color: #5c9ded;
    cursor: pointer;
    outline: none;
}

.search-bar-cool button:hover {
    color: #0073e6;
}

/* 検索アイコンを追加 */
.search-bar-cool .fas.fa-search {
    font-size: 20px;
}



header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.columns {
    display: flex;
    margin-top: 20px;
}



.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-item {
    background-color: #fff;
    width: 48%;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item p {
    font-size: 16px;
    margin: 10px 0;
}

.product-item span {
    font-size: 14px;
    color: #777;
}



/* 問い合わせフォームのテーブル */
.cart-table {
    width: 100%;
    margin-bottom: 20px;
}

.cart-items-table {
    width: 100%;
    background-color: #f9f9f9;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-items-table .table-header {
    background-color: #1E90FF;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.cart-items-table td, .cart-items-table th {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cart-items-table .item-name a {
    color: #007BFF;
    text-decoration: none;
}

.cart-items-table .item-name a:hover {
    text-decoration: underline;
}

.cart-items-table .delete-item a {
    color: #FF4500;
    font-weight: bold;
}

.cart-items-table .delete-item a:hover {
    text-decoration: underline;
}

/* 問い合わせボタン */
.inquiry-form input[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.inquiry-form input[type="submit"]:hover {
    background-color: #218838;
}
/* 問い合わせボタン */
.inquiry-form input[type="reset"] {
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.inquiry-form input[type="reset"]:hover {
    background-color: #218838;
}
/* 問い合わせ情報の小さい文字 */
.inquiry-info {
    display: block;
    color: #666;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

/* ここまで問い合わせかごのページ */




/* ここから資料請求のページ */

/* フォーム全体のスタイル */
.form-header {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contents_title {
    font-size: 16px;
    margin-bottom: 20px;
}

/* テーブルのスタイル */
.form-table, .login-form-table {
    width: 100%;
    background-color: #f9f9f9;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.form-table td, .login-form-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* 入力フィールド */
.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.input-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* ボタン */
.btn-login, .btn-submit, .btn-reset {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn-login:hover, .btn-submit:hover, .btn-reset:hover {
    background-color: #218838;
}

.required {
    color: red;
    font-size: 12px;
}

/* 情報メッセージ */
.info-text {
    color: #007bff;
    font-size: 14px;
}

/* Divider */
.divider {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* ここまで資料請求のページ */



/* ここから製品リストデザイン */

/* ボタン */
.navigation {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-weight: bold;
}
.navigation a {
  text-decoration: none;
  color: #fff;
  background-color: #007BFF;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.navigation a:hover {
  background-color: #0056b3;
}

/* カテゴリ見出し */
.h2_underline {
  font-size: 1.4em;
  margin-top: 20px;
  color: #333;
  border-bottom: 2px solid #007BFF;
  padding-bottom: 5px;
}

/* アイテムリスト */
.item {
  display: flex;
  background-color: #fff;
  margin: 15px 0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 写真 */
.item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

/* サービス名 */
.item h3 {
  font-size: 1.2em;
  margin: 0;
  color: #007BFF;
}

/* 説明文 */
.item p {
  margin: 8px 0 0;
  color: #555;
}

/* リンク */
.item a {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}
.item a:hover {
  color: #007BFF;
}
/* ここまで製品リストデザイン */


/* ここから詳細ページ問い合わせかごボタン */
.inquiry-form {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.inquiry-button {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #4a90e2;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    /*width: 200px;*/
}

.inquiry-button:hover {
    background-color: #357abd;
}

.form-text {
    margin-bottom: 10px;
    color: #555;
}
/* ここまで詳細ページ問い合わせかごボタン */

/* ここから詳細ページ記事部分デザイン */
.product-header {
width: 100%;
padding: 7px;
background-color: #eeeeee;
border: 1px solid #A3A3A3;
border-radius: 8px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
font-size: 20pt;
font-weight: bold;
color: #333;
}

.product-id {
font-weight: bold;
color: #777;
font-size: 14pt;
}

.product-description {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 20px;
}

.product-image {
max-width: 300px;
border-radius: 5px;
border: 1px solid #ddd;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.description-text {
color: #555;
}

.extra-info {


margin-top: 10px;
}
/* ここまで詳細ページ記事部分デザイン */


/* フッター */
#footer {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #c26422;
    color: #fff;
}
/*会社概要の表*/
/* 表のスタイル */
    .company-table {
      width: 100%;
      margin: auto;
      background-color: #fff;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .company-table th,
    .company-table td {
      padding: 16px 20px;
      text-align: left;
    }
    .company-table th {
      background-color: #007BFF;
      color: #ffffff;
      font-weight: bold;
      font-size: 1.1em;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .company-table td {
      background-color: #fdfdfd;
      border-bottom: 1px solid #eaeaea;
    }
    .company-table tr:last-child td {
      border-bottom: none;
    }
    .company-table td:first-child {
      background-color: #f7faff;
      font-weight: bold;
      color: #007BFF;
      width: 35%;
      border-right: 1px solid #eaeaea;
    }
    .company-table tr:hover td {
      background-color: #f5faff;
    }

.item_name1 {
  font-size: 12pt;
  line-height: 18pt;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.company_name1 {
  font-size: 10pt;
  line-height: 16pt;
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
}

.menu-toggle {
    display: none;

}

.horizontal_container {
    display: flex;
    justify-content: space-between; /* div1を左、div2を右に配置 */
    align-items: center; /* 縦方向の中央揃え */
    width: 100%; /* 横幅いっぱいを使う */
    margin-bottom:7px;
}

.div_left {
    margin-left: 10px; /* div1の左に少し余白 */
}

.div_right {
    margin-right: 10px; /* div2の右に少し余白 */
}
.div_right2 {
    margin-right: 10px; /* div2の右に少し余白 */
    text-align: right;
}
/*-------------------------------------------------------- PC向けのスタイル ------------------------------------------------------------------------------------*/
@media screen and (min-width: 1300px) {
.sp_mode_only {
    display: none;

}

#header {
    margin-bottom: 7px;
    position: static !important;
    z-index: 999;
    top:  auto !important;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 100px;
    padding: 10px 0;
    background-color: #fff;
}
#header_container {
  display: flex;
  width: 100%;
  align-items: center; /* 上下センター揃え */

}
#h_left {
   width:250px;
   float:left;
}
#h_middle {
  width: calc(100% - 702px); /* 左右のセクションの幅を引いた値を設定 */
  float:left;
}
#h_info{
  margin: 0;
  padding: 10px 0px 0 0px;
  text-align: right;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  text-decoration: none;
  float: right;
  width:452px;

}

#h_info p{
  margin: 0;
  padding: 3px;
  text-align: left;
  font-size: 14px;
  color: #444444;
  letter-spacing: 0.05em;
}

#h_info a{
  font-size: 13px;
  color: #333333;
  text-decoration: none;
}

#h_info a:hover{
  font-size: 13px;
  color: #666666;
  text-decoration: none;
}
#header2 {
    width:1300px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:0;

}

#container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
    padding: 0 20px 20px 20px;
}
/* メインコンテンツ */
.main-column {
    width: 77%;
    padding-left: 20px;
}

.main-column h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
/* ナビゲーションメニューのスタイル */
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    color: #000;  /* 白背景に対して黒いテキスト */
    text-decoration: none;
    font-weight: bold;
}

.nav-menu ul li a:hover {
    text-decoration: underline;
}
/* 左側のサイドメニュー */
.left-column {
    width: 280px;
    min-height: 400px;
    background-color: #f9f9f9;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.left-column h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.left-column .sidebar-list {
    list-style: none;
    padding: 0;
}

.left-column .sidebar-list li {
    margin-bottom: 10px;
}

.left-column .sidebar-list li a {
    text-decoration: none;
    color: #333;
    background-color: #fff;
    padding: 10px;
    display: block;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.left-column .sidebar-list li a:hover {
    background-color: #007BFF;
    color: #fff;
}


}/*@media screen and (min-width: 1300px) {*/

/*-------------------------------------------------------- タブレット向けのスタイル ------------------------------------------------------------------------------------*/
@media screen and (min-width:950px) and (max-width:1300px) {

.sp_mode_only {
    display: none;

}

#header {
	margin-bottom: 7px;
	position: static !important;
    top: auto !important;
	z-index: 999;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	height: 100px;
	padding: 10px 0; /* 左右のパディングを0に設定 */
	background-color: #fff;

}
#header_container {
  display: flex;
  width: 100%;
  align-items: center; /* 上下センター揃え */

}
#h_left {
   width:250px;
   float:left;
}
#h_middle {
  width: calc(100% - 702px); /* 左右のセクションの幅を引いた値を設定 */
  float:left;
}
#h_info{
  margin: 0;
  padding: 10px 0px 0 0px;
  text-align: right;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  text-decoration: none;
  float: right;
  width:452px;

}

#h_info p{
  margin: 0;
  padding: 3px;
  text-align: left;
  font-size: 14px;
  color: #444444;
  letter-spacing: 0.05em;
}

#h_info a{
  font-size: 13px;
  color: #333333;
  text-decoration: none;
}

#h_info a:hover{
  font-size: 13px;
  color: #666666;
  text-decoration: none;
}
#header2 {
    width:1050px;
    margin-left:auto;
    margin-right:auto;
}

#container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
}
/* メインコンテンツ */
.main-column {
    width: 77%;
    padding-left: 20px;
}

.main-column h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
/* ナビゲーションメニューのスタイル */
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu ul li {
    margin-left: 5px;
}

.nav-menu ul li a {
    font-size: 12pt;
    color: #000;  /* 白背景に対して黒いテキスト */
    text-decoration: none;
    font-weight: bold;
}

.nav-menu ul li a:hover {
    text-decoration: underline;
}

/* 左側のサイドメニュー */
.left-column {
    width: 240px;
    background-color: #f9f9f9;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.left-column h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.left-column .sidebar-list {
    list-style: none;
    padding: 0;
}

.left-column .sidebar-list li {
    margin-bottom: 10px;
}

.left-column .sidebar-list li a {
    text-decoration: none;
    color: #333;
    background-color: #fff;
    padding: 10px;
    display: block;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.left-column .sidebar-list li a:hover {
    background-color: #007BFF;
    color: #fff;
}

.search-bar-cool {
    position: relative;
    width: 270px;
}
}/*@media screen and (min-width:1150px) and (max-width:1300px) {*/


/*-------------------------------------------------------- スマホ向けのスタイル ------------------------------------------------------------------------------------*/
@media screen and (max-width:950px) {
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    margin:0 0 0 0;

}
.pc_tb_mode_only {
    display: none;
}
html {
    scroll-padding-top: 0 !important; /* ヘッダーの高さと同じ */
}









  /* 固定ヘッダー用の余白を元に戻す */













#header {
    position: static !important;
    top: auto !important;
    /* 固定前提の高さ指定を外したい場合は下も */
    /* height: auto !important; */
	margin-bottom: 7px;
	z-index: 999;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 0; /* 左右のパディングを0に設定 */
	background-color: #fff;

}
#h_info{
  margin: 0;
  padding: 10px 0px 0px 0px;
  text-align: right;
  font-size: 11px;
  color: #555555;
  line-height: 1.6;
  text-decoration: none;
  width:100%;

}
#h_info img {
  width: 25px;
  height: ayto;

}
#h_info p{
  margin: 0;
  padding: 3px;
  text-align: left;
  font-size: 11px;
  color: #444444;
  letter-spacing: 0.05em;
}

#h_info a{
  font-size: 11px;
  color: #333333;
  text-decoration: none;
}

#h_info a:hover{
  font-size: 11px;
  color: #666666;
  text-decoration: none;
}
#header2 {
    width:100%;
    margin-left:auto;
    margin-right:auto;

}

#container {
    width: 100%;
    /*max-width: 1150px;*/
    margin: 0 auto;
    background-color: #fff;
    padding: 8px;
}
/* メインコンテンツ */
.main-column {
    width: 100%;
    /*padding-left: 20px;*/
}

.main-column h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.nav-menu ul li a {
    color: #000;  /* 白背景に対して黒いテキスト */
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}


/* ここからハンバーガーメニューに関するCSS #side_contentsをハンバーガーメニューのボディーと表示するため#side_contentsを含む */
.left-column {
  position: fixed;
  top: 0;
  left: -290px; /* 初期状態で非表示 */
  width: 280px; /* サイドバーの固定幅 */
  padding: 10px; /* 既存のパディング指定 */
  height: 100%;
  background-color: #f4f4f4;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 1100; /* 背景より上 */
  box-sizing: border-box;
  overflow-y: auto; /* 垂直方向のスクロールバーを表示 */
  overflow-x: hidden; /* 横方向のスクロールバーを非表示（必要なら省略） */

}
/* チェックボックス（トリガー） */
.menu-toggle {
  display: none; /* 非表示 */
}
/* ハンバーガーメニューアイコン */
.hamburger {
  position: absolute;
  top: 10px !important;
  right: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 101; /* メニューより上 */
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center; /* 回転の中心を明確に */
}


/* チェックボックスがチェックされたとき */
.menu-toggle:checked ~ .left-column {
  left: 0; /* メニューをスライドイン */
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translateY(9px) translateX(10px); /* translateYを調整 */
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0; /* 真ん中の線を非表示 */
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px) translateX(10px); /* translateYを調整 */
}
/* メニュー表示中の背景（オーバーレイ） */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* グレーの半透明 */
  opacity: 0;
  visibility: hidden;
  z-index: 1100; /* メニューより下 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* チェックボックスがチェックされたときにオーバーレイを表示 */
.menu-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* クリックを有効にする */
}
/* ここまでハンバーガーメニューに関するCSS #side_contentsをハンバーガーメニューのボディーと表示するため#side_contentsを含む */





/*会社概要の表*/
.company-table th, .company-table td {
        padding: 14px;
      }
      .company-table td:first-child {
        width: 100%;
        display: block;
        border-right: none;
        background-color: transparent;
      }
      .company-table td {
        display: block;
        text-align: left;
        border-bottom: 1px solid #eaeaea;
      }
      .company-table tr {
        margin-bottom: 15px;
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      }
      
      
      
.header-container {
        flex-direction: column; /* 縦に並べる */
        align-items: flex-start; /* 左揃え */
    }

    .logo {
        margin-bottom: 10px; /* 下の要素との間隔 */
    }

    .nav-menu {
        margin-bottom: 10px; /* 下の要素との間隔 */
    }

    .search-bar-cool {
        width: 100%; /* 横幅を親要素に合わせる */
    }
}/*@media screen and (min-width: 1100px) {*/







@media screen and (max-width:950px) {

}




