@charset "UTF-8";


/* =====================================================
 * ページ全体
 * ===================================================== */
html {
  font-size: 62.5%; /* ルートのフォントサイズを10pxにする */
}


body { /* フッターを最下部に配置するための設定 */
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}


body, nav, section, header, main, footer, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, div, table, input, textarea, select {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%; /* iphone版のSafariで勝手に文字が大きくなるのを防ぐ */
  line-height: 145%;
  -webkit-appearance: none; /* スマホのスタイルをデフォルト化 */
  border-radius: 0;
}


section {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}


*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


img {
  width: 100%;
  border: 0;
  vertical-align: middle;
}


/* -------------------------
 * トップページ
 *（本来到達したい<section>より少し上に別の<div>を用意し、その要素までスクロールさせる）
 * ------------------------ */
.anchor-offset {
  position: absolute;
  height: 135px;
  top: -135px;
  visibility: hidden;
}


/* -------------------------
 * リンクの全体の装飾
 * ------------------------- */
a {
  text-decoration: none;
  color: #4682b4;
}


/* webkit系ブラウザのデフォルトスタイルをクリア */
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}


/* webkit系ブラウザで入力できなくなるのを防ぐ */
input, textarea {
 -webkit-user-select: auto;
}


/* Custom Select */
.custom_select {
  outline: none;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 2px solid #cccccc;
}


a:hover {
  filter: alpha(opacity=60); /* IE 6,7 */
  -ms-filter: "alpha(opacity=60)"; /* IE 8,9 */
  -moz-opacity: 0.6; /* 古いFirefox */
  -khtml-opacity: 0.6; /* 古いSafari */
  opacity: 0.6;
  zoom: 1; /* IE */
  /* transitionを使ってゆっくり半透明にする設定 */
  -webkit-transition: 0.3s ease-in-out; /* Google,Chrome,Safari */
  -moz-transition: 0.3s ease-in-out; /* Firefox */
  -o-transition: 0.3s ease-in-out; /* Opera */
  -ms-transition: 0.3s ease-in-out; /* IE */
  transition: 0.3s ease-in-out;
}


/* 480px未満は改行 */
@media screen AND (max-width:479px) {
  .br:before {
     content: "\A";
     white-space: pre;
  }
}


/* =====================================================
 * 主デザイン設定
 * ===================================================== */


input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #c7c7c7;
  -webkit-border-radius: 3px; /* Google,Chrome,Safari */
  -moz-border-radius: 3px; /* Firefox */
  -o-border-radius: 3px; /* Opera */
  -ms-border-radius: 3px; /* IE */
  border-radius: 3px;
}


input[type="radio"], input[type="checkbox"] { /* スマホ仕様にラジオボタンとチェックボタンのサイズを大きくする */
  -webkit-transform:scale(1.5,1.5); /* Google,Chrome,Safari */
  -moz-transform:scale(1.5,1.5); /* Firefox */
  transform:scale(1.5,1.5);
}


.input_button {
  display: block;
  margin: 50px auto 0;
  border-style: none;
  border-radius: 0;
  padding: 15px 40px;
  background-color: #6495ed;
  color: #fff;
  font-weight: bold;
  text-align: center;
}


.input_button:hover {
  background-color: #add8e6;
  /* transitionを使ってゆっくり半透明にする設定 */
  -webkit-transition: 0.3s ease-in-out; /* Google,Chrome,Safari */
  -moz-transition: 0.3s ease-in-out; /* Firefox */
  -o-transition: 0.3s ease-in-out; /* Opera */
  -ms-transition: 0.3s ease-in-out; /* IE */
  transition: 0.3s ease-in-out;
}


/* =====================================================
 * ログインページ
 * ===================================================== */


.parent { /* 全体の枠 */
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


@media screen AND (min-width:1125.1px) {
  .parent {
    width: auto;
    max-width: 768px;
  }
}


/* -------------------------
 * ログインマーク
 * ------------------------- */
.gate_lock {
  margin: 0 10px 30px 0;
  text-align: center;
  font-weight: bold;
  font-size: 130%;
}


.gate_lock::before {
  font-family: "Font Awesome 5 Free";
  content: "\f023";
  display: inline-block; /* 必須 */
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: #999;
  color:#fff;
  font-size: 150%;
  font-weight: 900;
  margin-right: 10px;
}


/* -------------------------
 * エラー出力
 * ------------------------- */
.error {
  margin: 5px 0px 0px;
  font-size: 85%;
  color: red;
  white-space: normal;
}


/* =====================================================
 * 全体の共通部分
 * ===================================================== */


/* -------------------------
 * 共通のヘッダー（上部）
 * ------------------------- */
header {
  position: fixed;
  -webkit-box-shadow: 0 10px 10px -10px #bbb;
  box-shadow: 0 10px 10px -10px #bbb;
  background: #fff;
  width: 100%;
  height: 80px;
  z-index: 996;
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}


.h-left {
  display: flex;
  align-items: center;
}

.wrap-logo {
  display: flex;
  align-items: center;
  padding-left: 15px;
}


@media screen AND (min-width:768.1px) {
  .wrap-logo {
    padding: 0;
  }
}


.logoImg {
  width: 42px;
  height: 40px;
}


.wrap-logo h1 {
  font-size: 100%;
  color: #222;
  line-height: normal;
}


h1 > span {
  display: block;
  font-size: 50%;
  font-weight: normal;
  color: #666;
}

@media screen AND (min-width:768.1px) {
  .wrap-logo h1 {
    font-size: 180%;
  }

  h1 > span {
    font-size: 40%;
  }
}


/* -------------------------
 * ヘッダー内スマホ非表示範囲
 * ------------------------- */
@media screen AND (max-width:1125px) {
  .mbl-hidden {
    display: none;
  }
}


/* -------------------------
 * ヘッダー内用メニューはPCで非表示
 * ------------------------- */
@media screen AND (min-width:1125.1px) {
  .pc-hidden {
    display: none;
  }
}


 /* -------------------------
  * ヘッダーメニューリスト
  * ------------------------- */
.header-nav {
  list-style-type: none;
  white-space: nowrap; /* メニューアイコンを折り返さない */
}


.header-nav li { /* ナビゲーションそれぞれのボックス */
  display: inline-block;
}


.header-nav a {
  text-decoration: none;
}


/* アイコンメニュー */
.nav-icon {
  position: relative;
  padding: 10px 0 0 0;
  text-align: center;
  width: 40px;
  height: 100%;
}


.nav-icon img { /* 画像 */
  width: 35px;
  height: 35px;
  border: 1px solid #444;
  border-radius: 10%;
  padding: 5px;
}


.nav-icon span { /* 画像下のコメント */
  display: block;
  font-size: 70%;
  color: #222;
  line-height: normal;
  margin-top: 3px;
}


.header-under {
  position: relative;
  width: 100%;
  margin: 80px auto 0;
  background-color: #666;
}


.inner {
  width: 90%;
  margin: 0 auto;
}


/* =====================================================
 * ドロワーメニュー（スマホ・タブレット）内のスタイル
 * ===================================================== */
.category-list {
  margin: 30px 0px;
  padding: 0;
  list-style-type: none;
}


.category-list li {
  margin-bottom: 15px;
  text-decoration: none;
}


.category-list li a {
  text-decoration: none;
}


.category-list:nth-last-child(1) {
  margin-bottom: 0;
}


.category-wrapper {
  display: flex;
  align-items: center;
}


.category-wrapper img {
  width: 50px !important;
  height: 50px !important;
  margin-right: 1rem;
}


/* -------------------------
 * ドロワーメニューの見出し
 * ------------------------- */
.drawer-heading {
  font-size: 100%;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid silver;
}


/* =====================================================
 * 連絡手段一覧（3カラム）
* ===================================================== */
.f-grid-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}


.f-grid {
  width: 100%;
  list-style-type: none;
  white-space: nowrap;
  font-size: 0;
}


.f-grid li {
  display: inline-block;
  margin-right: 2rem;
}


.f-grid li:nth-last-child(1) {
  margin: 0;
}


/* -------------------------
 * 各連絡手段アイコン
 * ------------------------- */
.i-tel,
.i-fax,
.i-email {
  white-space: nowrap;
  font-weight: bold;
  color: #fff;
}


/* iphone対策 */
.i-tel a,
.i-fax a {
  color: #fff;
  text-decoration: none;
}


/* tel */
.i-tel::before {
  margin: 0;
  font-family: "Font Awesome 6 Free";
  content: "\f1e4";
  color: #666;
  font-weight: 900;
  font-size: 150%;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px 12px;
  margin-right: 15px;
}


/* fax */
.i-fax::before  {
  position: relative;
  margin: 0 auto 0 0;
  font-family: "Font Awesome 6 Free";
  content: "\f1ac";
  color: #666;
  font-weight: 900;
  font-size: 150%;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px 12px;
  margin-right: 15px;
}


/* email */
.i-email::before  {
  position: relative;
  margin: 0 auto 0 0;
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  color: #666;
  font-weight: 900;
  font-size: 150%;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px 12px;
  margin-right: 15px;
}


/* -------------------------
 * ユーザーアイコン
 * ------------------------- */
.gate_user {
  margin: 0 10px 30px 0;
  line-height: 45px;
  font-size: 100%;
  color: #fff;
}


.gate_user::before {
  font-family: "Font Awesome 5 Free";
  content: "\f007";
  display: inline-block; /* 必須 */
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #666;
  font-size: 120%;
  font-weight: 900;
  margin-right: 10px;
}


/* =====================================================
 * 最下部のヘッダー
 * ===================================================== */


.obi {
  background: #e5e4e6;
  padding: 10px 0;
}


/* -------------------------
* パンくずリスト
* ------------------------- */
.p-list {
  margin: 0;
  padding: 0;
}


.p-list li {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 80%;
}


.p-list li a {
  text-decoration: none;
  color: #4682b4;
}


.p-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  color: silver;
  font-weight: 900;
  margin-right: 0.5em;
}


.p-list li:nth-last-child(1) {
  margin-right: 0;
}


/* =====================================================
 * メインコンテンツ
 * ===================================================== */


.container {
  position : relative;
  width: 100%;
  display: block; /* PCはではflexに変更 */
  flex: 1 0 auto; /* IE対策（flex:1のみだとバグ) */
  margin: 0;
  padding: 20px 0 30px;
}


main {
  display: block; /* IE対策に追加 */
}


.width {
  position: relative;
  width: 90%;
  margin: 0 auto;
}


/* -------------------------
 * テーブル
 * ------------------------- */
main table {
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  white-space: normal;
}


main table th,
main table td {
  padding: 0.5em;
  border: 1px solid #ccc;
  line-height: 140%;
  font-size: 85%;
}


.cell01 { /* 項目のセルは色付きにする */
  width: 15%;
  white-space: nowrap;
  color: #fff;
  background-color: #778899;
}


.cell02 { /* セルの幅を35%で統一する */
  width: 35%;
}


/* =====================================================
 * ドロワーメニュー
 * ===================================================== */


/* -------------------------
 * 見出し
 * ------------------------- */
.drawer-heading {
  font-size: 100%;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid silver;
}


/* -------------------------
 * カテゴリー
 * ------------------------- */
.category-list {
  margin: 30px 0px;
  padding: 0;
  list-style-type: none;
}


.category-list li {
  margin-bottom: 15px;
  text-decoration: none;
}


.category-list li a {
  text-decoration: none;
}


.category-list:nth-last-child(1) {
  margin-bottom: 0;
}


.category-wrapper {
  overflow: hidden;
}


.category-wrapper img {
  float: left;
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}


.category {
  line-height: 25px;
  display: block;
  overflow: hidden;
}


/* -------------------------
 * 文字サイズの調整
 * ------------------------- */
.small {
  margin: 0;
  font-size: 85%;
}


/* -------------------------
 * 太字
 * ------------------------- */
.b {
  font-weight: bold;
  color: #000;
}


/* -------------------------
 * P要素（補足説明）
 * ------------------------- */
.info {
  margin: 0;
  padding: 0;
  font-size: 80%;
  font-weight: normal;
  color: #666;
}


/* =====================================================
 * サイドメニュー
 * ===================================================== */


aside {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 0;
}


/* -------------------------
 * 「商品のご相談はこちら」のボタン
 * ------------------------- */
.btn-wrap {
  position: relative;
}


.btn-1,
a.btn-1 {
  position: relative;
  display: inline-block;
  width: 100%;
  font-weight: 700;
  padding: 0 0 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #3cb371;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  border-radius: 0.5rem;
}


.btn-wrap {
  padding-top: 1.25rem;
}


a.btn-m {
  position: relative;
  color: #fff;
  background: #3cb371;
  -webkit-box-shadow: 0 5px 0 #2e8b57;
  box-shadow: 0 5px 0 #2e8b57;
}


a.btn-m span {
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 100px);
  display: block;
  width: 200px;
  color: #3cb371;
  border: 2px solid #3cb371;
  -webkit-border-radius: 100vh;
  -moz-border-radius: 100vh;
  -o-border-radius: 100vh;
  -ms-border-radius: 100vh;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  font-size: 90%;
  height: 30px;
  padding: 0.2rem 0;
}


a.btn-m span:before,
a.btn-m span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}


a.btn-m span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #3cb371 transparent transparent transparent;
}


a.btn-m span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}


a.btn-m p {
  margin-top: 30px;
  color: #fff;
}


a.btn-m i {
  margin-right: 0.5rem;
}


a.btn-m:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #3cb371;
  -webkit-box-shadow: 0 2px 0 #3cb371;
  box-shadow: 0 2px 0 #3cb371;
}


.contact-form02 { /* (P要素)商品のご相談はこちら */
  margin: 0;
  padding: 0;
  color: #fff;
}


.contact-form02:before { /* メールのアイコン */
  margin: 0 0.5em 0 0;
  padding: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0e0';
  color: #fff;
}


/* -------------------------
 * インフォメーション
 * ------------------------- */
.a_info_01 { /* メール受付 */
  margin: 15px 0 50px 0;
  font-size: 80%;
  color: #666;
  line-height: 140%;
}


.a_info_02 { /* インフォメーション */
  margin: 0 0 20px 0;
  font-size: 120%;
  font-weight: bold;
}


.a_info_02::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f05a';
  color: #4682b4;
  font-size: 120%;
  margin-right: 0.5rem;
}


/* aside内のリスト画像 */
.aside-list {
  list-style-type: none;
}


.aside-list li {
  width: 100%;
  margin: 15px 0 0;
}


.aside-list li img {
  width: 100%;
}


/* =====================================================
 * フッター
 * ===================================================== */
footer {
  position: relative;
  width: 100%;
  background: #e5e4e6;
  padding: 60px 0px 80px;
}


footer a {
  color: #222;
  text-decoration: none;
}


.footer-inner {
  width: 90%;
  margin: 0 auto;
}


.footer-inner > p {
  margin: 0 0 20px 0;
  font-size: 110%;
  font-weight: bold;
  text-align: center;
  color: #fff;
}


/* -------------------------
 * サービスメニュー
 * ------------------------- */
.footer-menu {
  margin-bottom: 50px;
  padding: 0;
  list-style-type: none;
}


.footer-menu li {
  margin: 0 0 15px 0;
  padding-bottom: 20px;
  border-bottom: 1px dotted #666;
  font-weight: bold;
}


.footer-menu li:nth-last-child(1) {
  margin: 0;
}


/* -------------------------
 * 会社概要
 * 沿革
 * ------------------------- */
footer li { /* リストを横並びにする */
  list-style-type:none;
  margin-bottom: 0.5rem;
  font-size: 80%;
}


footer li:nth-last-child(1) {
  margin: 0;
}


/* -------------------------
 * サイトのロゴ
 * 会社概要
 * ------------------------- */
.oparate {
  position: relative;
  margin: 30px 0 0;
  display: flex;
  justify-content: center;
}


.logoImg-footer img {
  width: 80px;
  height: 75px;
}


.logoImg-footer p {
  text-align: center;
  margin: 0;
  font-size: 70%;
}


.oparate_corp {
  margin: 0 0 0 20px;
  font-size: 70%;
}


.under { /* コビーライトの表記 */
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  background: #666;
  text-align: center;
  font-size: 70%;
  color: #fff;
}


/* =====================================================
 * items
 * ===================================================== */

/* -------------------------
 * (PC)左に商品画像、右に商品説明の枠
 * (SP)縦並び
 * ------------------------- */
.product-wrap {
  position: relative;
  margin: 0 0 30px;
}


.product-content {
  margin-top :20px;
}


.item-links { /* 詳細 */
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 15px;
  background: #dc143c;
  background: rgba(220,20,20,0.6);
  color: #fff;
  font-size: 70%;
}


.product-img {
  list-style-type: none;
}


.product-img li {
  margin-bottom: 20px;
}


.product-img li:nth-last-child(1) {
  margin: 0;
}


.product-img img {
  width: 100%;
  border: 1px solid #c7c7c7;
}


@media screen AND (min-width:1125.1px) { /* PCでは左に画像、右にコンテンツグループ */
  .product-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    display: flex;
  }


  .product-img { /* 左の商品画像 */
    width: 40%;
  }


  .product-content { /* 右のコンテンツグループ */
    width: 60%;
    margin: 0;
    padding-left: 30px;
  }
}


/* -------------------------
 * 「この商品について問い合わせる」
 * ------------------------- */
.btn-contact {
  display: block;
  max-width: 350px;
  margin: 50px auto 0;
  width: 100%;
  border: none;
  background-color: orange;
  padding: 15px;
  font-size: 100%;
  color: #fff;
}


.btn-contact:before { /* メールアイコン */
  font-family: "Font Awesome 5 Free";
  font-size: 130%;
  content: "\f4ad";
  font-weight: 900;
  color: #fff;
  margin-right: 1rem;
}


.btn-contact:hover {
  background-color: #ff6347;
  /* transitionを使ってゆっくり半透明にする設定 */
  -webkit-transition: 0.3s ease-in-out; /* Google,Chrome,Safari */
  -moz-transition: 0.3s ease-in-out; /* Firefox */
  -o-transition: 0.3s ease-in-out; /* Opera */
  -ms-transition: 0.3s ease-in-out; /* IE */
  transition: 0.3s ease-in-out;
}


/* -------------------------
 * カラーラベル
 * ------------------------- */
.labels {
  position: relative;
  display: inline-block;
  margin: 0;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 70%;
  color: #fff;
  background-color:#3cb371;
}


.item_price { /* 商品価格 */
  margin: 10px 0 0;
  font-weight: bold;
  color: red;
}


.item_price:before { /* ¥マークをつける */
  content: "\0a5";
  margin-right: 0.2em;
}

.item_price:after {
  content: "(税抜)";
  font-size: 70%;
  font-weight: normal;
  color: #222;
  margin-left: 0.5em;
}


/* -------------------------
 * 製品情報(横並びのリスト)
 * ------------------------- */
.detail {
  list-style-type: none;
}


.datail li {
  display: inline-block;
}


.datail li::after {
  content: "/";
}


.datail li:last-child::after { /* 最後だけ/を消す */
    content: none;
}


/* =====================================================
 * スペシャル
 * ===================================================== */


/* -------------------------
 * サイト下部の戻るボタン
 * ------------------------- */
#page_top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 20px;
  opacity: 0.6;
}


#page_top a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}


#page_top a::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #3d3dff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


#page_top a::after {
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #3d3dff;
}
