

@media only screen and (min-width: 1001px), print{
/* ロゴ */


#logo img{
  width: 220px;
  height: 100px;
}

/* スマホ用ナビを非表示 */
  
#nav-sp,
#menu-sp {
  display: none !important;
}
  

/* ヘッダー */
header {
    display: flex;
}

/* ナビゲーションのレイアウト */

.nav-pc-flexbox {
  display: flex;
  margin-top: 9px;
}
#nav-pc table {
  width: 80%; /* テーブルの幅を親の幅に合わせる */
}
#nav-pc img {
  max-width: 100%; /* 画像の幅が親要素を超えないようにする */
  height: auto; /* 画像のアスペクト比を維持 */
}
#nav-pc {
  font-size: 16px;
  background-color:#E33102;
  width: 100%;
  height: 72px;
  font-weight: bold;
}

#nav-pc table tr a {
  margin: 0px 5px 5px 40px;
  text-decoration: none;
  color: #fff;
}
#nav-pc table tr td {
  white-space: nowrap;
}
#nav-pc table tr a:hover {
  color: #E33102;
  background-color: #ffffff;
}

/* ナビゲーションのリンクの装飾設定 */
#nav-pc > a {
  text-decoration: none;
}
#nav-pc > a:link {
  color: #0d0d0d;
}
#nav-pc > a:visited {
  color: #0d0d0d;
}
#nav-pc > a:hover {
  color: #0d0d0d;
  text-decoration: underline;
}
#nav-pc > a:active {
  color: #0d0d0d;
}
.hanbai {
  display: flex;
  align-items: center;
  margin: 0 auto 0 auto;
}

}
/*====================
 スマートフォン用のスタイル
=====================*/
@media only screen and (max-width: 1000px) {
/* ロゴ */
#logo img{
  width: 220px;
  height: 100px;
}

#nav-pc {
  display: none !important;
}

/* ハンバーガーメニュー */
#menu-sp {
  position: absolute;
  top: 0px;
  right: 0px;
}
/* スマホ用ナビゲーションの表示切替*/
/* 初期状態、レイアウトと非表示設定 */
#nav-sp {
  background-color: #E33102;
  position: absolute;
  left: 0;
  top: 0;
  height: 500vh;
  width: 100%;
  display: none;
  z-index: 100;
}

/* ×ボタン */
#close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
}

/* ナビゲーションメニュー用ロゴ */

.logo-sp{
  width: 50%;
}
#logo-sp {
  margin: 80px 0 30px 20px;
}

/* ナビゲーションのリンクの装飾設定 */
#nav-sp > a {
  display: block;
}
#nav-sp > a:link {
  color: #ffffff;
}
#nav-sp > a:visited {
  color: #ffffff;
}
#nav-sp > a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#nav-sp > a:active {
  color: #ffffff;
}

#nav-sp > .menu {
  text-decoration: none;
  display: block;
  margin: 10px 20px 0 20px;
  height: 44px;
  font-size: 16px;
}

}
