@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, p, 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;
  overflow-wrap: anywhere; /* 枠内に収まらない場合は折り返す */
}


section {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -ms-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;
}


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


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


/* buttonタグのデフォルトデザインを初期化する  */
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}


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


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;
}


/* =====================================================
 * 幅いっぱいの包括枠（共通）
 * ===================================================== */
.full-width-wrap {
  position: relative;
  width: 100%;
}


.full-width-wrap-inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}


/* =====================================================
 * 1.上部のカラーヘッダー
 * ===================================================== */
.upper-header {
  padding: 10px 0;
  background: #4682b4;
}


.upper-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.upper-header-mail {
  display: inline-block;
  padding: 5px 10px;
  font-size: 85%;
  color: #fff;
  font-weight: bold;
  background: #f67d41;
  border-radius: 3px;
}


.upper-header-mail span {
  font-size: 85%;
  color: #fff;
  font-weight: normal;
}


/* =====================================================
 * 2.メインヘッダー（固定）
 * ===================================================== */
header {
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0 10px 10px -10px #bbb;
  box-shadow: 0 10px 10px -10px #bbb;
  background: #fff;
  z-index: 999;
}


.main-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logoImg { /* ロゴ画像の位置調整 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 120px;
  height: 28px;
}


/* -------------------------
 * ログインボタン・カート
 * ------------------------- */
.log-cart-wrap {
  position: relative;
  display: flex;
  margin-left: 30px;
}


.logon,
.cart {
  background: none; /* buttonタグのデフォルトデザインを初期化する */
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
}


.cart {
  margin-left: 5px; /* 少し隙間を設ける */
}


.logon > img,
.cart > img {
  width: 35px;
  height: 35px;
}


.cart > img { /* 画像位置微調整 */
  padding-top: 5px;
}


.cart_circle {
  display: block;
  position: absolute;
  top: -3px;
  left: 26px;
  background: #BB0000;
  color: #fff;
  width: 20px;
  height: 20px;
  font-weight: normal;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  -webkit-border-radius: 50%; /* Google,Chrome,Safari */
  -moz-border-radius: 50%; /* Firefox */
  -o-border-radius: 50%; /* Opera */
  -ms-border-radius: 50%; /* IE */
  border-radius: 50%;
}


.under_text {
  display: block;
  white-space: nowrap;
  font-size: 75%;
  font-weight: normal;
  color: #666;
}


/* -------------------------
 * スマホのみ表示のヘッダーメニュー
 * ------------------------- */
.mbl-menu {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* アイテムを下揃えにする */
  list-style-type: none;
}


.mbl-menu li {
  display: inline-block;
  margin-right: 5px;
  text-align: center;
}


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


.mbl-menu li a {
  text-decoration: none;
}


.mbl-menu li img {
  width: 20px;
  height: 20px;
}


.mbl-menu li a p {
  margin: 3px 0 0 0;
  font-size: 8px;
  font-weight: bold;
}


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


/* -------------------------
 * タブレットで非表示範囲
 * ------------------------- */
@media screen AND (min-width:768px) AND (max-width:1124.9px) {
  .tbl-hidden {
    display: none;
  }
}


/* -------------------------
 * PCで非表示範囲
 * ------------------------- */
@media screen AND (min-width:1125px) {
  .pc-hidden {
    display: none;
  }
}


/* -------------------------
 * 検索窓（ドロワーメニュー内）
 * ------------------------- */
.drawer-search-container {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px solid silver;
  height: 2em;
  overflow: hidden;
}


.drawer-search-container input[type="text"] {
  border: none;
  height: 2em;
  width: 80%;
}


.drawer-search-container input[type="text"]:focus {
  outline: 0;
}


.drawer-search-container input[type="submit"] {
  cursor: pointer;
  font-family: FontAwesome;  /* 虫眼鏡マークに必要 */
  font-size: 85%;
  border: none;
  background: none;
  color: silver;
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0;
  top: 0;
  outline : none;
}


/* -------------------------
 * キーワードタブリスト
 * ------------------------- */
.tab {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 10px 0;
  list-style-type: none;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}


.tab li {
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #888;
  border-radius: 5px;
  padding: 2px 5px 2px;
  font-size: 75%;
  font-weight: bold;
}


.tab li a {
  text-decoration: none;
  color: #666;
}


.tab li:nth-child(1) {
  color: #222;
  border: none;
}


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


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


 /* -------------------------
  * 上部のキャッチフレーズ
  * ------------------------- */
.phrase {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
  text-align: center;
  margin: 15px 0;
  font-size: 130%;
  font-weight: bold;
  color: #4682b4;
}


@media screen AND (min-width:768px) {
  .phrase {
    font-size: 200%;
  }
}


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


/* =====================================================
 * ドロワーメニュー（スマホ・タブレット）内のスタイル
 * ===================================================== */
.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: 50px;
  height: 50px;
  margin-right: 1rem;
}


.category { /* 文字列を縦中央揃えにする */
  line-height: 50px;
  display: block;
  overflow: hidden;
}


/* =====================================================
 * メインコンテンツ
 * ===================================================== */
.container {
  position : relative;
  width: 100%;
  display: block; /* PCはではflexに変更 */
  flex: 1 0 auto; /* IE対策（flex:1のみだとバグ) */
  padding: 20px 0 50px;
}


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


/* -------------------------
 * 幅90%にする設定
 * ------------------------- */
.width {
  width: 90%;
  margin: 0 auto;
}


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


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


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


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


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


/* -------------------------
* その他リンクを青にしたいとき
* ------------------------- */
.blue {
  color: #4682b4;
  text-decoration: none;
}


/* -------------------------
 * 本文のリード文
 * ------------------------- */
.lead {
  margin: 60px 0 0;
}


/* -------------------------
* 「関連記事の紹介」
 * ------------------------- */
.related {
  height: 0;
  margin: 50px 0 0;
  padding: 0;
  border: 0;
  overflow: visible;
  border-top: 4px double #bbb;
  text-align: center;
}


.related:after {
  content: 'おすすめ関連記事';
  display: inline-block;
  position: relative;
  top: -15px;
  padding: 0 10px;
  color: #000;
  background-color: #fff;
  font-weight: bold;
  font-size: 110%;
}


/* =====================================================
 * ピックアップ・記事一覧
 * ===================================================== */
.outer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.grid {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
}


.grid li {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}


/* PC */
@media screen AND (min-width:1025px) {
  .grid li {
   margin: 0;
   padding: 0;
   display: inline-block;
   width : 50%;
  }

  .grid li:nth-child(odd) { /* 奇数のとき */
   margin: 0;
   padding: 0px 10px 0px  0px;
  }


  .grid li:nth-child(even) { /* 偶数のとき */
   margin: 0;
   padding: 0px 0px 0px 10px;
  }
}


/* -------------------------
 * セルの中身（記事一覧）
 * ------------------------- */
.grid-cell {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}


.grid-cell a {
  text-decoration: none;
}


.grid-cell-block {
  position: relative;
  overflow: hidden;
  line-height: 130%;
}


.grid-cell-block img {
  float: left;
  width: 150px;
  height: 84px;
  margin-right: 1rem;
}


.grid-cell-ttl { /* 各カテゴリーのタイトル */
  vertical-align: top;
  font-size: 110%;
  font-weight: bold;
  color: #000;
}


.grid-cell-card {
  float: left;
  margin: 0;
  font-size: 70%;
  color: #666;
}


.grid-cell-card:before {
  font-family: "Font Awesome 6 Free";
  content: "\f02c";
  color: #666;
  font-weight: 900;
  margin-right: 0.2em;
}


.grid-cell-ft {
  float: right;
  margin: 0;
  text-align: right;
  font-size: 70%;
  color: #a9a9a9;
}


/* -------------------------
 * もっと見る
 * ------------------------- */
.more {
  font-size: 80%;
  text-align: right;
}


.more a {
  text-decoration: none;
}


.more:after {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  color: orange;
  font-weight: 900;
  margin-left: 0.5em;
}


/* =====================================================
 * cart.php
 * ===================================================== */
.order_list {
  list-style-type: none;
}


.order_list li {
  padding: 30px 0;
  border-bottom: 1px solid #c7c7c7;
}


/* -------------------------
 * 個別の注文商品情報枠
 * ------------------------- */
.list_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}


.list_img { /* 左に注文商品画像を表示 */
  width: 30%;
}


.order { /* 右に注文商品情報を表示 */
  margin: 20px 0 0;
  width: 70%;
  padding-left: 2rem;
}


/* 項目の表示 */
ul.items li {
  list-style-type: none;
  padding: 0;
  font-size: 85%;
  border: none;
}


ul.items li:nth-child(1),
ul.items li:nth-last-child(1) { /* 親要素のUL設定を解除する */
  padding: 0;
}


ul.items li.order01:before {
  content: "商品名";
  margin-right: 1em;
}


ul.items li.order02:before {
  content: "カラー";
  font-weight: normal;
  margin-right: 1em;
}


ul.items li.order03:before {
  content: "フレームカラー";
  font-weight: normal;
  margin-right: 1em;
}


ul.items li.order04:before {
  content: "単価";
  font-weight: normal;
  margin-right: 1em;
}


ul.items li.order05:before {
  content: "注文数";
  font-weight: normal;
  margin-right: 1em;
}


ul.items li.order06:before {
  content: "小計";
  font-weight: normal;
  margin-right: 1em;
}


.items01,
.items02,
.items03,
.items04,
.items05 { /* 商品名,カラー,フレームカラー,単価,注文数 */
  font-weight: bold;
}


.items06 { /* 小計 */
  font-weight: bold;
  color: red;
}


/* -------------------------
 * 個別の商品情報枠内
 * 左：スピナーボタン
 * 右：削除ボタン
 * ------------------------- */
.change-wrap {
  position: relative;
}

/* PCの場合はスピナーボタンの右に“削除”ボタンを設置 */
@media screen AND (min-width:1125px) {
  .change-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .delete-button-sp-tb { /* スマホ・タブレットは非表示 */
    display: none;
  }

  .delete-button { /* PCでは表示させる */
    position: relative;
  }
}


/* スピナーボタン */
.spin-button {
  position: relative;
}


@media screen AND (max-width:1124.9px) {
  .delete-button-sp-tb { /* スマホ・タブレットは表示 */
    position: relative;
    margin-top: 30px;
    text-align: center;
  }

  .delete-button {
    display: none; /* PCでは非表示 */
  }
}


/* =====================================================
 * サイドメニュー
 * ===================================================== */
aside {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 0;
}


/* -------------------------
 * オーダーのフォーム
 * ------------------------- */
.order-form {
  position: relative;
  margin: 0 0 30px 0;
  padding: 20px;
  border: 1px solid #c7c7c7;
}


/* -------------------------
 * 「商品の数量を選択」の枠
 * ------------------------- */
.frame01 {
  position: relative;
  display: flex;
  padding:10px;
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  background-color: #6495ed;
}


.frame01:after { /* 下の▼マーク */
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -9px;
  border-top: 10px solid #6495ed;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 1;
}


.frame01 > .info01 { /* 「ご注文」 */
  border-radius: 10px;
  background-color: #fff;
  font-size: 70%;
  font-weight: bold;
  color: #6495ed;
  padding: 2px 5px;
}


.frame01 > .info02 { /* 「商品の数量を選択」*/
  margin-left: 10px;
  font-size: 85%;
  font-weight: bold;
  color: #fff;
}


/* -------------------------
 * スピナーボタン
 * ------------------------- */
.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none; /* ユーザーがボタンを押した時に文章を範囲選択できないように（入れないと変な縦線が入る） */
}


.spinner {
  width: 90px;
  margin: 0 10px;
  height: 30px;
  padding: 0;
  text-align: center;
  border: 1px solid #c7c7c7;
  background: none;
  outline: none;
  pointer-events: none;
}


.spinner::-webkit-inner-spin-button,
.spinner::-webkit-outer-spin-button {
  -webkit-appearance: none;
}


.spinner-sub,
.spinner-add {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #444;
  color: #fff;
  cursor: pointer;
  line-height: 30px;
}


.disabled {
  opacity: 0.3;
  cursor: inherit;
}


/* -------------------------
 * パネルが開いたとき
 * ------------------------- */
.panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.panel p {
  margin: 0;
  font-size: 85%;
}


.panel01 { /* 上部のパネルの追加css*/
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c7c7c7;
}


.panel-info {
  margin:20px 0 0;
  font-size:75%;
  color:red;
}


/* -------------------------
 * 「カートに入れる」
 * ------------------------- */
.btn-cart {
  display: block;
  margin: 30px auto 0;
  width: 100%;
  border: none;
  background-color: orange;
  padding: 15px;
  font-size: 100%;
  color: #fff;
}


.btn-cart:before { /* カートのアイコン */
  font-family: "Font Awesome 5 Free";
  content: "\f07a";
  font-weight: 900;
  color: #fff;
  margin-right: 0.5rem;
}


.btn-cart: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;
}


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


/* -------------------------
 * 「関連する特集記事」
 * ------------------------- */
.heading {
  margin: 50px 0 0;
  font-size: 120%;
  color: #000;
}


hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}


/* -------------------------
 * 「全シリーズ一覧」のボタン
 * ------------------------- */
.contact-frame1 {
  position: relative;
  padding:10px;
  font-size: 85%;
  font-weight: bold;
  text-align: center;
  line-height: 120%;
  background-color: #f0e68c;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  color: red;
}


.contact-frame1:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -9px;
  border-top: 10px solid #f0e68c;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 1;
}


.contact-frame2 {
  position: relative;
  margin-bottom: 35px;
  padding: 10px;
  text-align: center;
  background-color: #009bbf;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  font-weight: bold;
}


.contact-frame2 a { /* 枠全体をaタグにする */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-decoration: none;
}


.contact-frame2 a:hover {
  background-color: #fff;
}


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


.contact-form01:after { /* 末尾の矢印アイコン */
  margin: 0 0 0 0.5em;
  padding: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f054';
  color: #fff;
}


/* -------------------------
 * 「商品のご相談はこちら」のボタン
 * ------------------------- */
.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;
}


.contact-form02:after { /* 末尾の矢印アイコン */
  margin: 0 0 0 0.5em;
  padding: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f054';
  color: #fff;
}


/* -------------------------
 *サイドメニュー
 * 新着記事ランキング
 * ------------------------- */
.rank {
  counter-reset: number;
  list-style: none;
  margin:30px 0px;
  padding: 0;
}


.rank li {
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid #c7c7c7;
}


.rank li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  background-color: #dc143c;
  width: 20px;
  height: 20px;
  z-index: 1;
  font-size: 0.5em;
  color: #fff;
  vertical-align: middle;
  text-align: center;
}


.ranking-wrapper {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 56px;
  line-height: 120%;
}


.ranking-wrapper a {
  text-decoration: none;
}


.ranking-wrapper img {
  float: left;
  width: 100px;
  height: 56px;
  margin-right: 1rem;
}


.ranking {
  overflow: hidden;
  vertical-align: top;
  font-weight: bold;
  color: #000;
}


@media screen AND (min-width:769.9px) {
  .ranking {
    font-size: 75%;
  }
}


/* -------------------------
 * 関連記事の呼び出し（記事の説明文）
 * ------------------------- */
.r-contents-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 56px;
  line-height: 120%;
  background: #fff;
}


.r-contents-wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 100%;
  height: 20px;
  background: -webkit-linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}


.r-contents-wrapper a {
  text-decoration: none;
  opacity: 1; /* オンマウスで半透明にしない */
}


.r-contents-wrapper img {
  float: left;
  width: 100px;
  height: 56px;
  margin-right: 1rem;
  z-index: 999;
}


.r-contents-title {
  display: block;
  vertical-align: top;
  font-size: 85%;
  font-weight: bold;
  color: #000;
}


.r-contents-description {
  display: block;
  font-size: 75%;
}


/* -------------------------
 * あわせて読みたい記事
 * ------------------------- */
.connect {
  position: relative;
  margin: 54px 0 0;
  padding: 10px;
  color: #0075a9;
  -webkit-border-radius: 0 10px 10px 10px;
  -moz-border-radius: 0 10px 10px 10px;
  -o-border-radius: 0 10px 10px 10px;
  -ms-border-radius: 0 10px 10px 10px;
  border-radius: 0 10px 10px 10px;
  border: 1px solid #0075a9;
}


.connect:before {
  position: absolute;
  top: -24px;
  left: -1px;
  height: 24px;
  padding: 0 1em;
  line-height: 24px;
  font-size: 70%;
  content: '\f0a4  あわせて読みたい';
  font-family: 'Font Awesome 6 Free';
  color: #fff;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  background: #0075a9;
}


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


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


footer a {
  text-decoration: none;
}


/* -------------------------
 * 会員登録
 * ログイン
 * SNSのボックス
 * ------------------------- */
.footer-cap {
  margin: 0;
  padding: 0 0 20px 0;
  margin-bottom: 50px;
  border-bottom: 2px solid #c7c7c7;
}


/* -------------------------
 * 会員登録
 * ログインの2つ
 * ------------------------- */
.footer-entrance-links {
  font-size: 0; /* liを使用した場合の隙間バグを防ぐ */
  margin: 0;
  padding: 0;
  list-style-type: none;
}


.footer-entrance-links li {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 10px;
  background-color: silver;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
}


.footer-entrance-links li a {
  text-decoration: none;
  color: #000;
}


.footer-entrance-links li:nth-last-child(1) {
  margin: 0 5px 20px 0;
}


/* -------------------------
 * FOLLOW US
 * ------------------------- */
.follow-us {
  margin: 0 15px 0 0;
  margin-left: auto;
  font-size: 100%;
  font-weight: bold;
}


/* -------------------------
 * SNS
 * ------------------------- */
.footer-sns-list { /* liを使用した場合の隙間バグを防ぐ */
  font-size: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
}


.footer-sns-list li {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0;
}


.footer-sns-list li:last-child {
   margin: 0;
}


.btn-footer,
a.btn-footer {
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}


a.btn-footer-sns {
  font-size: 1.4rem;
  line-height: 25px;
  width: 25px;
  height: 25px;
  padding: 0;
  letter-spacing: 0;
  color: #fff;
}


a.btn-footer-sns:hover {
  color: #fff;
}


a.btn-footer-sns--x-twitter { /* ツイッター */
  background: #000000;
}


a.btn-footer-sns--instagram { /* インスタ */
  background: #d6249f;
  background: -webkit-linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  background: linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}


a.btn-footer-sns--youtube { /* YouTube */
  background: #cd201f;
}


/* -------------------------
 * 支払い方法
 * 送料について
 * 商品保証
 * ------------------------- */
.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 p {
  margin: 10px 0 0;
  text-align: left !important;
  font-size: 100%;
  font-weight: normal;
}


.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: 100px;
  height: 23px;
}


.logoImg-footer p {
  text-align: center;
  margin: 10px 0 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: #402E17;
  text-align: center;
  font-size: 70%;
  color: #fff;
}


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


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


/* -------------------------
 * subCountの場合、sectionがないので以下で対応
 * ------------------------ */
.anchor {
  position: relative;
  margin-top: 65px;
}


/* -------------------------
* カラー展開
/* ------------------------- */
.color {
  display: flex; /* display:flex;かdisplay:gridを指定しているときだけgap使用可 */
  flex-wrap: wrap;
  font-size: 0; /* リスト間の余計な空白を解消する */
  line-height: 0; /* リスト間の余計な空白を解消する */
  gap: 5px;
  margin: 0;
  padding: 0;
}


.color li {
  display: inline-block;
  width: 40px;
  border: none !important; /* ←なぜ？ */
  margin: 0 !important; /* grid_items li（親要素）からの影響を打ち消すため */
  padding: 0 !important;
}


.color li:nth-child(n) {
  width: 40px;
  margin: 0;
  padding: 0;
}


/* クリックで画像の切り替え(初期段階ではimg-color01以外は非表示) */
/* phb */
#img-color02-phb,
#img-color03-phb,
#img-color04-phb,
#img-color05-phb {
  display: none;
  opacity: 0;
}


/* phg */
#img-color02-phg,
#img-color03-phg,
#img-color04-phg,
#img-color05-phg {
  display: none;
  opacity: 0;
}


/* plb */
#img-color02-plb,
#img-color03-plb,
#img-color04-plb,
#img-color05-plb {
  display: none;
  opacity: 0;
}


/* plg */
#img-color02-plg,
#img-color03-plg,
#img-color04-plg,
#img-color05-plg {
  display: none;
  opacity: 0;
}


/* pob */
#img-color02-pob,
#img-color03-pob,
#img-color04-pob,
#img-color05-pob {
  display: none;
  opacity: 0;
}


/* pog */
#img-color02-pog,
#img-color03-pog,
#img-color04-pog,
#img-color05-pog {
  display: none;
  opacity: 0;
}


/* ehb */
#img-color02-ehb,
#img-color03-ehb,
#img-color04-ehb,
#img-color05-ehb {
  display: none;
  opacity: 0;
}


/* ehg */
#img-color02-ehg,
#img-color03-ehg,
#img-color04-ehg,
#img-color05-ehg {
  display: none;
  opacity: 0;
}


/* elb */
#img-color02-elb,
#img-color03-elb,
#img-color04-elb,
#img-color05-elb {
  display: none;
  opacity: 0;
}


/* elg */
#img-color02-elg,
#img-color03-elg,
#img-color04-elg,
#img-color05-elg {
  display: none;
  opacity: 0;
}


/* fhb */
#img-color02-fhb,
#img-color03-fhb,
#img-color04-fhb,
#img-color05-fhb {
  display: none;
  opacity: 0;
}


/* fhg */
#img-color02-fhg,
#img-color03-fhg,
#img-color04-fhg,
#img-color05-fhg {
  display: none;
  opacity: 0;
}


.colorImg {
  width: 40px;
  height: auto;
  border: 1px solid #c7c7c7;
}


.color-info { /* 画像の下にカラーを表示(P要素) */
  margin: 0 0 10px;
  text-align: center;
  font-size: 85%;
  color: #000;
}


/* -------------------------
 * 商品名
 * ------------------------- */
.item_name01 {
  font-weight: bold;
}


.item_name02 {
  font-weight: normal;
  font-size: 80%;
}


.frame_color { /* フレームカラー */
  display: block;
  font-size: 80%;
}


.item_color { /* カラー展開 */
  margin: 10px 0 0;
  font-weight: normal;
  font-size: 75%;
}


.item_tab { /* 補足情報 */
  margin: 5px 0 0;
  padding: 3px 10px;
  font-size: 75%;
  text-align: center;
  color: #888;
  border: 1px solid #888;
}


.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;
}


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


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


@media screen AND (min-width:1125px) { /* 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;
  }
}


/* -------------------------
 * クリックで商品画像を切り替える設定
 * radioボタンを画像に変換して活用
 ------------------------- */
/* ラジオボタンの○を消す */
input[type="radio"] {
  display: none;
}


/* 未選択の場合、色を薄くする */
input[type="radio"] + label img {
  opacity: 0.5;
 }


/* 選択済みの場合、色を濃くする */
input[type="radio"]:checked + label img {
   opacity: 1;
}


/* -------------------------
 * 安心保証サービスのバナー
 ------------------------- */
.support {
  position: relative;
  display: flex;
  margin-top: 20px;
  padding: 10px;
  background-color: #90ee90;
}


.support-info {
  position: relative;
  width: 70%;
}


.support-info p {
  margin: 0 0 7px 0;
  font-size: 85%;
  font-weight: bold;
  text-align: center;
}


.support-info p:before { /* ハートマーク */
  font-family: "Font Awesome 6 Free";
  content: "\f004";
  color: pink;
  font-weight: 900;
  margin-right: 0.5em;
}


.support img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
}


/* -------------------------
 * シェアボタンを含む枠
 ------------------------- */
.pg-info {
  text-align: right;
}


/* 公開日 */
.update {
  margin: 10px 0 0 0;
  font-size: 80%;
}


/* -------------------------
 * サイト下部の戻るボタン
 * ------------------------- */
#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: #dc143c;
  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: #dc143c;
}


/* -------------------------
 * input
 * ------------------------- */
input[type="checkbox"] {
  margin-right: 0.5em;
  all: revert; /* チェックボックスの枠線が表示されないためリセットCSSで消えていたスタイリングを復活 */
}
