/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* 色 */
/* メインカラー */
/* ニナルカラー */
/* ブランドカラー */
/* ボタンカラー */
/* テキストカラー */
/* フォントサイズ */
/* 画面サイズ判定のための閾値 */
/* 色 */
/*------------------- フォームレイアウト ここから -------------------*/
/* 罫線のスタイル */
/* エラー表示 ここから */
/* 色 */
/* 色 */
/* ヘッダー */
/* 色 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* スクロールバー常時表示 */
  overflow-y: scroll;
}

/* リンク文字の色を変えない */
a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #ce7234;
}

body {
  background: #f0d5c2;
  color: #333;
  /* 基本フォントサイズ */
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
body img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* <button>デザインリセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* ECページ用 */
.errorMess {
  display: flex;
  flex-direction: column;
}
.errorMess.half {
  /* input用の.halfと指定が被るので!important */
  width: 100% !important;
}

.errorStyle {
  display: block;
  width: 100%;
  color: #b30000;
  font-weight: bold;
}
.errorStyle p {
  padding: 0 0 3px 0 !important;
}
.errorStyle span.exclamation::before {
  font-family: "Font Awesome 5 Free";
  content: "\f071";
  font-weight: 900;
  margin-right: 5px;
}

input.error,
select.error,
textarea.error,
.field_with_errors input,
.field_with_errors select,
.field_with_errors textarea {
  /* エラー時のボックス背景色 */
  background: #f7d9d9;
}

.field_with_errors {
  display: contents;
}

/* エラー表示 ここまで */
.required {
  background: #b30000;
  color: #fff;
  font-size: 0.85em;
  margin-left: 5px;
  padding: 0.1em 0.5em;
  border-radius: 3px;
}

.form_layout {
  /* カード決済 既存のカード */
}
.form_layout dt {
  background: #fbf2ed;
  padding: 7px 10px;
  border: 1px solid #f0d5c2;
  font-weight: bold;
}
.form_layout dt:first-child {
  border-radius: 5px 5px 0 0;
}
.form_layout dd {
  padding: 14px 10px;
  border-left: 1px solid #f0d5c2;
  border-right: 1px solid #f0d5c2;
  /* 生年月日 */
}
.form_layout dd:last-child, .form_layout dd.border_btm {
  border-bottom: 1px solid #f0d5c2;
  border-radius: 0 0 5px 5px;
}
.form_layout dd input,
.form_layout dd select {
  height: 40px;
  vertical-align: middle;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
.form_layout dd textarea {
  border: 1px solid #999;
  border-radius: 3px;
  padding: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
.form_layout dd label {
  vertical-align: -0.1em;
  margin-left: 5px;
}
.form_layout dd label {
  vertical-align: -0.1em;
  margin-left: 5px;
}
.form_layout dd .confirmation {
  height: 20px;
}
.form_layout dd .reason .liner_stop_reason {
  margin-top: 5px;
}
.form_layout dd .reason .liner_stop_reason:first-of-type {
  margin-top: 0;
}
.form_layout dd .reason .liner_stop_message {
  background-color: #fbf2ed;
  border-radius: 3px;
  padding: 0.7em;
  display: none;
}
.form_layout dd .reason .liner_stop_message a {
  cursor: pointer;
}
.form_layout dd .full {
  width: 100%;
}
.form_layout dd .half {
  width: 49%;
}
.form_layout dd .quater {
  width: 25%;
}
.form_layout dd .post {
  display: flex;
  align-items: flex-end;
}
.form_layout dd .post::before {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-right: 5px;
}
.form_layout dd .add .btnInform {
  display: block;
  width: 49%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #999;
  background: linear-gradient(to bottom, #fff, #ccc);
  color: #333;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.form_layout dd .add .btnInform:hover {
  background: linear-gradient(to top, #fff, #ccc);
  color: #999;
}
.form_layout dd ul.input_name {
  display: flex;
  justify-content: space-between;
}
.form_layout dd ul.input_name li {
  width: 49%;
}
.form_layout dd ul.input_name li input {
  width: 100%;
}
.form_layout dd ul.select_birth {
  display: flex;
}
.form_layout dd ul.select_birth .year {
  flex-basis: 40%;
}
.form_layout dd ul.select_birth .month,
.form_layout dd ul.select_birth .day {
  flex-basis: 25%;
}
.form_layout dd ul.select_birth .slash {
  flex-basis: 5%;
  text-align: center;
  padding-top: 1em;
}
.form_layout dd ul.select_birth select {
  width: 100%;
}
.form_layout dd .package {
  width: 100%;
  text-align: left;
}
.form_layout dd .package tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dotted #f0d5c2;
  padding: 10px;
}
.form_layout dd .package tr:last-of-type {
  border: none;
  padding-bottom: 0;
}
.form_layout dd .package tr:first-of-type {
  padding-top: 0;
}
.form_layout dd .package th {
  font-weight: bold;
}
.form_layout .creditStock {
  width: 100%;
}
.form_layout .creditStock thead tr {
  border-bottom: 1px solid #f0d5c2;
}
.form_layout .creditStock tbody tr {
  border-bottom: 1px dotted #f0d5c2;
}
.form_layout .creditStock tbody tr:last-of-type {
  border-bottom: none;
}
.form_layout .creditStock th {
  font-weight: bold;
}
.form_layout .creditStock th,
.form_layout .creditStock td {
  padding: 5px;
  text-align: left;
}
.form_layout .creditStock th.choose,
.form_layout .creditStock td.choose {
  display: none;
}

/*------------------- フォームレイアウト ここまで -------------------*/
/*------------------- 買い物かご、注文履歴関連 ここから -------------------*/
.grid_order {
  border: 1px solid #f0d5c2;
  border-radius: 5px;
}
.grid_order .product {
  display: flex;
  flex-direction: row-reverse;
  border-bottom: 1px solid #f0d5c2;
}
.grid_order .product .productName {
  flex-basis: 70%;
  padding: 5px;
  font-weight: bold;
}
.grid_order .product .productImg {
  flex-basis: 30%;
  border-right: 1px dotted #f0d5c2;
}
.grid_order .product .productImg img {
  border-top-left-radius: 5px;
}
.grid_order .product_payment {
  display: flex;
  flex-flow: row wrap;
}
.grid_order .product_payment dt {
  flex-basis: 30%;
  padding: 5px;
  font-weight: bold;
  background: #fbf2ed;
  border-bottom: 1px solid #f0d5c2;
  border-right: 1px solid #f0d5c2;
}
.grid_order .product_payment dt:last-of-type {
  border-bottom: none;
  border-bottom-left-radius: 5px;
}
.grid_order .product_payment dd {
  flex-basis: 70%;
  padding: 5px;
  border-bottom: 1px solid #f0d5c2;
}
.grid_order .product_payment dd:last-of-type {
  border-bottom: none;
}

.detail_product {
  border-bottom: 1px solid #f0d5c2;
  padding: 5px;
  font-weight: bold;
  background: #fbf2ed;
  border-radius: 5px 5px 0 0;
}

.grid_order1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.grid_order1 .item1 {
  padding: 5px;
}
.grid_order1 .item2 {
  padding: 5px;
}
.grid_order1 .item3 {
  padding: 5px;
}
.grid_order1 .item4 {
  padding: 5px;
}
.grid_order1 .item5 {
  padding: 5px;
}
.grid_order1 .item6 {
  padding: 5px;
}
.grid_order1 .item1 {
  border-right: 1px solid #f0d5c2;
}
.grid_order1 .item2 {
  border-right: 1px solid #f0d5c2;
}
.grid_order1 .item3 {
  border-right: 1px solid #f0d5c2;
}
.grid_order1 .item4 {
  border-right: 1px solid #f0d5c2;
}
.grid_order1 .item1,
.grid_order1 .item3,
.grid_order1 .item5 {
  border-bottom: 1px solid #f0d5c2;
  background: #fbf2ed;
}
.grid_order1 dt {
  font-weight: bold;
}
.grid_order1 .item1 {
  order: 1;
}
.grid_order1 .item2 {
  order: 4;
}
.grid_order1 .item3 {
  order: 2;
}
.grid_order1 .item4 {
  order: 5;
}
.grid_order1 .item5 {
  order: 3;
}
.grid_order1 .item6 {
  order: 6;
}
.grid_order1 .item6 .full {
  width: 100%;
}

.grid_order2 {
  border: 1px solid #f0d5c2;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.grid_order2 dt {
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #f0d5c2;
}
.grid_order2 dt:last-of-type {
  border-bottom: none;
}
.grid_order2 dd {
  padding: 10px;
  text-align: right;
  border-bottom: 1px solid #f0d5c2;
}
.grid_order2 dd:last-of-type {
  border-bottom: none;
}
.grid_order2 .total_cost {
  color: #b30000;
}

/* 定期便への誘導 */
.regular_service {
  border-top: 1px solid #f0d5c2;
  padding: 10px;
  background: #fbf2ed;
  border-radius: 0 0 5px 5px;
}
.regular_service .watchOut {
  color: #b30000;
  font-weight: bold;
}

/* 数量変更 */
.quantity {
  display: flex;
  justify-content: space-around;
}

.alert {
  display: block;
  padding: 0.7em;
  border: 1px solid #b30000;
  border-radius: 5px;
  color: #b30000;
}

select.send_interval {
  vertical-align: middle;
  border: 1px solid #999;
  padding: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}

/*------------------- 買い物かご、注文履歴関連 ここまで -------------------*/
/*------------------- 定期便解約コンテンツ ここから -------------------*/
/* 吹き出しデザイン */
.before_cancel {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.before_cancel .balloon {
  font-weight: bold;
  position: relative;
  width: 55%;
  padding: 20px;
  background: #fbf2ed;
  border-radius: 15px;
}
.before_cancel .balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -14px;
  top: 45%;
  border-left: 14px solid #fbf2ed;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.before_cancel .imgBox {
  width: 40%;
}

.benefits {
  display: flex;
  justify-content: space-between;
}
.benefits li {
  width: 28%;
}

.chkbox li {
  font-weight: bold;
  margin-bottom: 15px;
}
.chkbox li input[type=checkbox] {
  display: none;
}
.chkbox li label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
}
.chkbox li label::before {
  font-family: "Font Awesome 5 Free";
  color: #aaa;
  content: "\f0c8";
  font-weight: 400;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 1.5em;
}
.chkbox li input[type=checkbox]:checked + label::before {
  font-family: "Font Awesome 5 Free";
  color: #ce7234;
  content: "\f14a";
  font-weight: 400;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 1.5em;
}

/*------------------- 定期便解約コンテンツ ここまで -------------------*/
/*------------------- 購入手続き ここから -------------------*/
/* お届け先の指定 */
.destinationList .list_type {
  padding: 20px 10px;
  border-bottom: 1px dotted #ce7234;
}
.destinationList .list_type dl {
  margin-left: 20px;
}
.destinationList .list_type dl dt {
  margin-top: 10px;
}
.destinationList .list_type dl dd {
  font-weight: bold;
}
.destinationList .list_type.selected {
  background: #fbf2ed;
}

.inputPoint input {
  height: 40px;
  vertical-align: middle;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}

/*------------------- 購入手続き ここまで -------------------*/
/*------------------- 商品一覧 ここから -------------------*/
.sortItems {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px 10px;
}
.sortItems dt {
  padding-right: 2px;
}
.sortItems select {
  border: 1px solid #999;
  border-radius: 3px;
  padding: 3px;
  font-size: 14px;
  font-size: 1.4rem;
}

/*------------------- 商品一覧 ここまで -------------------*/
/* ボタンデザイン */
.entryBtn {
  display: block;
  width: 320px;
  font-size: 1.1em;
}

.bigBtn {
  display: block;
  width: 250px;
}

.smallBtn {
  display: block;
  width: 120px;
}

.btnStyle {
  padding: 14px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #999;
  background: linear-gradient(to bottom, #fff, #ccc);
  color: #333;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  text-decoration: none;
}
.btnStyle:hover {
  background: linear-gradient(to top, #fff, #ccc);
  color: #999;
}

/* 「削除」「変更」ボタン */
.delete_changeBtn {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* カーソルをリンクと同じに */
.btnStyle,
.btnInform,
.link_in_page,
a.submit,
ul.destinationList > li > div {
  cursor: pointer;
}

@media (min-width: 769px) {
  .errorMess.half {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .half .errorStyle {
    width: 49%;
  }
  .required {
    padding: 0 0.5em;
  }
  .form_layout dd .add .btnInform {
    width: 25%;
  }
}
/* 商品ページ用 */
/*------------------- ブランドサイトトップメインビジュアル -------------------*/
.mv {
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
}
.mv .mvDescription {
  padding: 20px;
}
.mv .mvDescription li:first-child {
  font-size: 1.2em;
  font-weight: bold;
  color: #ce7234;
}
.mv .mvDescription li:nth-child(2) {
  font-size: 0.85em;
  margin-bottom: 5px;
}
.mv .mvDescription p {
  text-align: justify;
  line-height: 1.8em;
}

/*------------------- 商品ページ詳細 -------------------*/
/* 購入 */
.purchase {
  padding: 15px 10px;
  /* 通常購入
  .purchaseBox_A {
    margin-bottom: 30px;
    dt {
      background: var.$border_color;
      border: 1px solid var.$border_color;
    }
    dd {
      border-left: 1px solid var.$border_color;
      border-right: 1px solid var.$border_color;
      border-bottom: 1px solid var.$border_color;
      em {
        font-weight: bold;
      }
    }
    .purchaseBtn_A {
      a {
        display: inline-block;
        position: relative;
        padding: 10px 30px;
        color: var.$btn_txt_off;
        border: 1px solid var.$btn_border;
        background: linear-gradient(to bottom, var.$btn_light, var.$btn_deep);
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
        border-radius: 5px;
        &:hover {
          background: linear-gradient(to top, var.$btn_light, var.$btn_deep);
          color: var.$btn_txt_on;
          text-shadow: none;
        }
      }
    }
  }*/
  /* 定期購入（定期価格を出すまで通常購入） */
}
.purchase a {
  text-decoration: none;
}
.purchase .purchaseBox_A dt,
.purchase .purchaseBox_B dt {
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}
.purchase .purchaseBox_A dd,
.purchase .purchaseBox_B dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.purchase .purchaseBox_A dd:last-child,
.purchase .purchaseBox_B dd:last-child {
  border-radius: 0 0 5px 5px;
}
.purchase .purchaseBox_A {
  margin-bottom: 10px;
}
.purchase .purchaseBox_A dt {
  background: #f0d5c2;
  border: 1px solid #f0d5c2;
}
.purchase .purchaseBox_A dt .remarks {
  color: #b30000;
  background: #fff;
  font-weight: normal;
  font-size: 0.85em;
  margin-left: 5px;
  padding: 0 0.3em;
  border-radius: 3px;
}
.purchase .purchaseBox_A dd {
  border-left: 1px solid #f0d5c2;
  border-right: 1px solid #f0d5c2;
  border-bottom: 1px solid #f0d5c2;
}
.purchase .purchaseBox_A dd em {
  font-weight: bold;
  color: #b30000;
}
.purchase .purchaseBox_A .purchaseBtn_A a {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  border: 1px solid #333;
  background: linear-gradient(to bottom, #a3a3a3, #333);
  border-radius: 5px;
}
.purchase .purchaseBox_A .purchaseBtn_A a:hover {
  background: linear-gradient(to top, #a3a3a3, #333);
  color: #333;
  text-shadow: none;
}

/* 商品ディテール */
.details_box {
  padding: 0 10px 5px;
}
.details_box .ingredient {
  display: flex;
  flex-direction: column;
}
.details_box .ingredient dt {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
}
.details_box .ingredient dd {
  border-bottom: 1px dotted #999;
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.details_box .ingredient dd:last-child {
  border: none;
  margin-bottom: 0;
}
.details_box ol {
  padding-left: 1.5em;
  list-style: decimal;
}
.details_box ol li {
  margin-bottom: 0.5em;
}
.details_box ol li:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .mv {
    flex-direction: row;
    align-items: center;
  }
  .mv .mvImg {
    width: 45%;
  }
  .mv .mvDescription {
    width: 55%;
    padding: 20px 50px;
  }
}
/* ヘッダー&フッターレイアウト */
#top-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
#top-head #mobile-head {
  background: #fff;
  height: 70px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding: 10px 15px;
  z-index: 103;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
#top-head h1 {
  height: auto;
  width: 215px;
}
#top-head .cart {
  width: 35px;
}

/* Toggle Button */
#nav-toggle {
  top: 16px;
  width: 28px;
  height: 23px;
  cursor: pointer;
  z-index: 103;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle div span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  left: 0;
  transition: 0.35s ease-in-out;
  /* ハンバーガー */
}
#nav-toggle div span:nth-child(1) {
  top: 0;
}
#nav-toggle div span:nth-child(2) {
  top: 10px;
}
#nav-toggle div span:nth-child(3) {
  top: 20px;
}

#nav-toggle.active div span {
  /* ハンバーガー */
}
#nav-toggle.active div span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
#nav-toggle.active div span:nth-child(2) {
  opacity: 0;
}
#nav-toggle.active div span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

#global-nav {
  width: 90%;
  max-width: 300px;
  height: 100vh;
  background: #ececec;
  right: 0;
  transform: translate(300px);
  transition: all 0.5s;
  z-index: 102;
  position: absolute;
}
#global-nav li {
  border-bottom: 1px solid #aaa;
}
#global-nav li a {
  display: block;
  padding: 1.2em;
  text-decoration: none;
}
#global-nav li a:hover {
  background: #666;
  color: #fff;
}

#global-nav.open {
  transform: translateZ(0);
}

/* グローバルナビ展開時に背景にオーバーレイ */
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  margin-top: 70px;
  height: 100vh;
  opacity: 1;
  position: fixed;
}

/* フッター */
#bottom_foot {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  font-size: 0.85em;
  padding-bottom: 30px;
}
#bottom_foot address {
  font-weight: bold;
  margin-bottom: 5px;
}
#bottom_foot address a {
  text-decoration: none;
}
#bottom_foot .phoneNo {
  line-height: 1.5em;
  padding: 20px;
  background: #fbf2ed;
}
#bottom_foot .phoneNo dt {
  font-size: 1.5em;
  font-weight: bold;
}
#bottom_foot .phoneNo dt::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/navidial_color-1b7c299a749b7161840546069bf64b51218d99d11395c40e1aadf33e731275ab.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#bottom_foot .foot02 {
  margin-bottom: 30px;
}
#bottom_foot .foot02 li {
  border-bottom: 1px solid #999;
  text-align: left;
}
#bottom_foot .foot02 li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}
#bottom_foot .foot02 li a::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  right: 20px;
  font-size: 1.2em;
}

@media (min-width: 769px) {
  #top-head #mobile-head {
    padding: 10px 20px;
  }
  #top-head h1 {
    height: auto;
    width: 230px;
  }
  #bottom_foot .phoneNo {
    background: #f0d5c2;
    border: none;
  }
  #bottom_foot .foot02 {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
  }
  #bottom_foot .foot02 li {
    text-align: center;
    border-bottom: none;
    border-right: 1px solid #999;
  }
  #bottom_foot .foot02 li:last-child {
    border-right: none;
  }
  #bottom_foot .foot02 li a {
    display: inline;
  }
  #bottom_foot .foot02 li a::after {
    content: none;
  }
}
#wrap {
  position: relative;
  flex: 1;
  background: #fff;
  width: 100%;
  margin: 0px auto;
  padding: 70px 0 10px;
  line-height: 1.5em;
  /* 共通 */
  /* コンテンツ消去 */
  /*------------------- 位置調整用 -------------------*/
  /* margin-bottom 5px刻み40pxまで */
  /* margin-top 5px刻み35pxまで */
  /* 必須「※」、注釈文字色 */
  /*------------------- 共通レイアウト -------------------*/
  /* ページ内リンクリスト */
  /*------------------- お得なサービスここから -------------------*/
  /* 会員特典 */
  /* 定期便のご案内 */
  /*------------------- お得なサービスここまで -------------------*/
  /*------------------- ショッピングガイドここから -------------------*/
  /*------------------- ショッピングガイドここまで -------------------*/
  /*------------------- よくあるご質問ここから -------------------*/
  /* アコーディオン */
  /*------------------- よくあるご質問ここまで -------------------*/
  /*------------------- 会員規約、個人情報保護方針、特商法レイアウト -------------------*/
  /*------------------- 見出し -------------------*/
  /* カレント */
  /*------------------- 新着商品 -------------------*/
  /* カードレイアウト */
  /*------------------- お得なサービス -------------------*/
  /*------------------- 混雑状況 -------------------*/
  /*------------------- 公式LINE -------------------*/
  /*------------------- お知らせ -------------------*/
}
#wrap .invisible {
  display: none;
}
#wrap .inlineBlock {
  display: inline-block;
}
#wrap .pdng_top_10 {
  padding-top: 10px;
}
#wrap .pdng_top_30 {
  padding-top: 30px;
}
#wrap .pdng_lr_10 {
  padding-left: 10px;
  padding-right: 10px;
}
#wrap .mgn_right_5 {
  margin-right: 5px;
}
#wrap .mgn_left_5 {
  margin-left: 5px;
}
#wrap .mgn_left_20 {
  margin-left: 20px;
}
#wrap .mgn_left_50 {
  margin-left: 50px;
}
#wrap .mgn_btm_5 {
  margin-bottom: 5px;
}
#wrap .mgn_btm_10 {
  margin-bottom: 10px;
}
#wrap .mgn_btm_15 {
  margin-bottom: 15px;
}
#wrap .mgn_btm_20 {
  margin-bottom: 20px;
}
#wrap .mgn_btm_25 {
  margin-bottom: 25px;
}
#wrap .mgn_btm_30 {
  margin-bottom: 30px;
}
#wrap .mgn_btm_35 {
  margin-bottom: 35px;
}
#wrap .mgn_btm_40 {
  margin-bottom: 40px;
}
#wrap .mgn_top_5 {
  margin-top: 5px;
}
#wrap .mgn_top_10 {
  margin-top: 10px;
}
#wrap .mgn_top_15 {
  margin-top: 15px;
}
#wrap .mgn_top_20 {
  margin-top: 20px;
}
#wrap .mgn_top_25 {
  margin-top: 25px;
}
#wrap .mgn_top_30 {
  margin-top: 30px;
}
#wrap .mgn_top_35 {
  margin-top: 35px;
}
#wrap .mgn_top_70 {
  margin-top: 70px;
}
#wrap .mgn_left_50 {
  margin-left: 50px;
}
#wrap .center {
  text-align: center;
}
#wrap .cm {
  display: flex;
  align-items: center;
  justify-content: center;
}
#wrap .right {
  text-align: right;
}
#wrap .caution {
  font-size: 0.85em;
  line-height: 2rem;
}
#wrap .annotation {
  color: #b30000;
}
#wrap .bold {
  font-weight: bold;
}
#wrap .alpha30 {
  opacity: 0.3;
}
#wrap .disk {
  padding-left: 1.5em;
}
#wrap .disk li {
  list-style: disc;
}
#wrap .kome {
  font-size: 0.85em;
}
#wrap .cnt_box {
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* カスタマーセンターなど */
}
#wrap .cnt_box .attention {
  text-align: right;
}
#wrap .cnt_box .attention .arrow::before {
  font-family: "Font Awesome 5 Free";
  content: "\f35a";
  font-weight: 400;
  margin-right: 5px;
}
#wrap .cnt_box .customerInfo {
  border-radius: 5px;
  border: 1px solid #f0d5c2;
  padding: 1em;
}
#wrap .cnt_box .customerInfo dt {
  font-weight: bold;
}
#wrap .faq_style dt,
#wrap .faq_style dd {
  position: relative;
}
#wrap .faq_style dt {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  padding-left: 25px;
  color: #ce7234;
}
#wrap .faq_style dt::before {
  content: "Q.";
  display: block;
  position: absolute;
  left: 0px;
  font-size: 1.2em;
  font-weight: bold;
}
#wrap .faq_style dd {
  margin-bottom: 20px;
  border-bottom: 1px dotted #ce7234;
  padding-bottom: 30px;
}
#wrap .PageLinkList_A ul,
#wrap .PageLinkList_B ul {
  display: flex;
  flex-direction: column;
}
#wrap .PageLinkList_A ul li,
#wrap .PageLinkList_B ul li {
  border-bottom: 1px solid #f0d5c2;
  padding: 0.7em;
  position: relative;
}
#wrap .PageLinkList_A ul a,
#wrap .PageLinkList_B ul a {
  text-decoration: none;
}
#wrap .PageLinkList_A ul li::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  right: 0.7em;
  font-size: 1.2em;
}
#wrap .PageLinkList_B ul li::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: 900;
  right: 0.7em;
  font-size: 1.2em;
}
#wrap .stage {
  /* rank01~04 */
}
#wrap .stage .rank01,
#wrap .stage .rank02,
#wrap .stage .rank03,
#wrap .stage .rank04 {
  display: flex;
  justify-content: space-between;
  padding: 0.5em;
}
#wrap .stage .rank01 .bronze,
#wrap .stage .rank02 .bronze,
#wrap .stage .rank03 .bronze,
#wrap .stage .rank04 .bronze {
  padding: 0.3em 0.3em 0.3em 2.2em;
  font-weight: bold;
}
#wrap .stage .rank01 .total,
#wrap .stage .rank02 .total,
#wrap .stage .rank03 .total,
#wrap .stage .rank04 .total {
  background: #fff;
  padding: 0.3em;
  border-radius: 3px;
}
#wrap .stage .rank01 {
  background: left 10px center/23px no-repeat url(/assets/service/rank01-4d0b8acfdc8b98638f0e57fb36fbb37198c4c5488d365c22c84fc9891d7175be.png) #eee;
}
#wrap .stage .rank02 {
  background: left 10px center/23px no-repeat url(/assets/service/rank02-079197e1830e5fa7bd392080a8221860b449f12a2bb19723d7b639d4607fb1ea.png) #eee;
}
#wrap .stage .rank03 {
  background: left 10px center/23px no-repeat url(/assets/service/rank03-ae1a65bd72c1c1fa399e55e0040774691c10ad1f76e50a457f70e9579fa1af67.png) #eee;
}
#wrap .stage .rank04 {
  background: left 10px center/23px no-repeat url(/assets/service/rank04-f3022b4c00ef3319a4e141ba334b5c5fe8d19aab40f8a1e3225e23af5b25e4e1.png) #eee;
}
#wrap .stage .reduction {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5px;
}
#wrap .stage .reduction .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #666;
  padding-right: 7px;
}
#wrap .stage .reduction .rate {
  width: 90%;
  background: #b30000;
  color: #fff;
  padding: 0.7em 0.3em;
  text-align: center;
  font-size: 1.1em;
}
#wrap .campaign {
  border: 1px solid #f0d5c2;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  background: #fbf2ed;
  padding: 10px;
}
#wrap .campaign dt {
  font-weight: bold;
  color: #b30000;
  /*font-size: var.$font_medium;*/
  margin-bottom: 5px;
}
#wrap .linerListBox01,
#wrap .linerListBox02 {
  display: flex;
  flex-direction: column;
  padding: 7px;
  text-align: center;
}
#wrap .linerListBox01 {
  background: #f7d9d9;
}
#wrap .linerListBox02 {
  background: #b30000;
}
#wrap .grid_liner {
  display: grid;
  font-weight: bold;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#wrap .grid_liner dd,
#wrap .grid_liner dt {
  display: flex;
  flex-direction: column;
  margin: 1px;
  background: #fff;
}
#wrap .grid_liner span {
  display: block;
}
#wrap .grid_liner .small {
  font-size: 0.85em;
  font-weight: normal;
}
#wrap .grid_liner .medium {
  font-size: 1.1em;
}
#wrap .grid_liner .item1 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#wrap .grid_liner .item2 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#wrap .grid_liner .item3 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#wrap .grid_liner .item4 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#wrap .grid_liner .item5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#wrap .grid_liner .item6 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#wrap .grid_liner .item1 {
  order: 1;
}
#wrap .grid_liner .item2 {
  order: 4;
}
#wrap .grid_liner .item3 {
  order: 2;
}
#wrap .grid_liner .item4 {
  order: 5;
}
#wrap .grid_liner .item5 {
  order: 3;
}
#wrap .grid_liner .item6 {
  order: 6;
}
#wrap .triangle_bottom {
  margin: 15px auto;
  width: 200px;
  height: 50px;
  font-size: 1.2em;
  position: relative;
}
#wrap .triangle_bottom::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 100px 0 100px;
  border-color: #b30000 transparent transparent transparent;
  position: absolute;
  z-index: 100;
}
#wrap .triangle_bottom::after {
  content: "25%OFF"; /* 定期便割引 */
  z-index: 101;
  position: absolute;
  top: 18%;
  font-size: 1.1em;
  color: #fff;
}
#wrap .telContact li:first-child {
  font-size: 2em;
  color: #235aa9;
  font-weight: bold;
}
#wrap .telContact li:first-child::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/navidial_color-1b7c299a749b7161840546069bf64b51218d99d11395c40e1aadf33e731275ab.svg);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#wrap .accordion .category {
  border: 1px solid #f0d5c2;
  border-radius: 5px;
  padding: 10px;
  font-weight: bold;
  position: relative;
}
#wrap .accordion .category:hover {
  background: #fbf2ed;
}
#wrap .accordion .category::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f00e";
  font-weight: 900;
  right: 0.7em;
  font-size: 1.1em;
}
#wrap .accordion .active {
  background: #fbf2ed;
}
#wrap .accordion .active::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f010";
  font-weight: 900;
  right: 0.7em;
  font-size: 1.1em;
}
#wrap .accordion .accordion_child {
  display: none;
  padding: 0 0.7em;
  margin-top: 0.7em;
}
#wrap .number_box ol {
  padding-left: 1.5em;
  list-style: decimal;
}
#wrap .number_box ol li {
  margin-bottom: 0.7em;
}
#wrap .number_box ol li ul {
  list-style: circle;
  margin-left: 1.5em;
}
#wrap .number_box ol li:last-child {
  margin-bottom: 0;
}
#wrap .number_box ol .list_parentheses {
  padding-left: 0;
}
#wrap .number_box ol .list_parentheses li {
  list-style-type: none;
  list-style-position: inside;
  /* 括弧付き数字自動生成 */
  counter-increment: cnt;
}
#wrap .number_box ol .list_parentheses li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
#wrap .trade_list dt {
  background: #fbf2ed;
  padding: 7px 10px;
  border: 1px solid #f0d5c2;
  font-weight: bold;
}
#wrap .trade_list dt:first-child {
  border-radius: 5px 5px 0 0;
}
#wrap .trade_list dd {
  padding: 14px 10px;
  border-left: 1px solid #f0d5c2;
  border-right: 1px solid #f0d5c2;
}
#wrap .trade_list dd:last-child {
  border-bottom: 1px solid #f0d5c2;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 769px) {
  #wrap .stage {
    display: flex;
  }
  #wrap .stage .rank01,
  #wrap .stage .rank02,
  #wrap .stage .rank03,
  #wrap .stage .rank04 {
    width: 65%;
  }
  #wrap .stage .rank01 .total,
  #wrap .stage .rank02 .total,
  #wrap .stage .rank03 .total,
  #wrap .stage .rank04 .total {
    padding: 0.3em 1.5em;
  }
  #wrap .stage .reduction {
    width: 35%;
    margin-top: 0;
  }
  #wrap .stage .reduction .rate {
    width: 85%;
  }
  #wrap .stage .point {
    display: none;
  }
}
#wrap .container {
  padding: 30px 5px;
}
#wrap .container p {
  padding-left: 10px;
  padding-right: 10px;
}
#wrap h2 {
  font-size: 1.2em;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: bold;
}
#wrap h3 {
  font-weight: bold;
}
#wrap h4 {
  font-weight: bold;
  border-bottom: 1px dotted #ce7234;
  border-left: 3px solid #ce7234;
  padding-left: 5px;
  margin-bottom: 10px;
}
#wrap h5 {
  font-weight: bold;
  border: 1px solid #f0d5c2;
  padding: 7px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
#wrap .current {
  margin: 0 10px;
  display: flex;
  padding: 7px 10px;
  background: #f0d5c2;
  border: 1px solid #f0d5c2;
  border-radius: 5px;
}
#wrap .current li {
  margin-right: 10px;
}
#wrap .current li:last-child {
  margin-right: 0;
}
#wrap .current .display_off {
  opacity: 0.12;
}
#wrap .screen {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 1;
}
#wrap .screen img {
  opacity: 0;
}
#wrap .newer {
  padding: 40px 15px 10px;
}
#wrap .card {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  margin-bottom: 20px;
  display: flex;
}
#wrap .card .cardImg {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 0 0 4px;
}
#wrap .card .description {
  padding: 15px;
  text-align: center;
  width: 60%;
}
#wrap .card .description h6 {
  font-weight: bold;
  font-size: 1.1em;
  color: #ce7234;
}
#wrap .card .description ul {
  margin-top: 10px;
}
#wrap .card .read-more {
  margin-top: 10px;
}
#wrap .card .read-more a {
  display: block;
  padding: 0.5em;
  color: #333;
  border: 1px solid #333;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
}
#wrap .card .read-more a i {
  color: #ce7234;
}
#wrap .card .read-more a:hover, #wrap .card .read-more a:active {
  background: #f0d5c2;
  border: 1px solid #f0d5c2;
}
#wrap .card .read-more a:hover i, #wrap .card .read-more a:active i {
  color: #333;
}
#wrap .service {
  display: flex;
  justify-content: space-between;
}
#wrap .service li {
  width: 32%;
}
#wrap .condition dt {
  color: #b30000;
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
}
#wrap .condition table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: auto;
  border: 1px solid #000;
}
#wrap .condition table img {
  width: 75%;
}
#wrap .condition table tr {
  border-bottom: 1px dotted #333;
  font-weight: bold;
}
#wrap .condition table th,
#wrap .condition table td {
  padding: 0.5em;
  border-right: 1px dotted #333;
  text-align: center;
}
#wrap .condition table thead tr {
  background-color: #000;
  color: #fff;
}
#wrap .condition table thead th {
  border-right: 1px dotted #fff;
}
#wrap .condition table tbody tr:nth-of-type(2n) {
  background: #eee;
}
#wrap .condition table tbody th {
  width: 40%;
}
#wrap .condition .maru::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/maru-b5f50a2accd7e8d99bd34d17700f338f57db3c3e3aa0fb5ac1c7a5b8ad982a5d.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#wrap .condition .sankaku::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/sankaku-babfac5ddb551a45b4eea83e46d5b517fc06fc4c1c7d84f96865ebb3cf7464b9.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#wrap .condition .batsu::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/batsu-35b59b981185ab3ad945d8827c3c8f0cf612bbb7dd829ac9b5ff1156ff835db6.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#wrap .condition .condition_detail {
  font-size: 0.85em;
  display: flex;
  flex-direction: column-reverse;
}
#wrap .line_cnt {
  position: relative;
}
#wrap .line_btn {
  position: absolute;
  display: block;
  top: 79%;
  width: 85%;
  margin-left: 7.5%;
}
@media (min-width: 769px) {
  #wrap .line_cnt {
    width: 570px;
    margin: 0 auto;
  }
  #wrap .line_btn {
    position: absolute;
    display: block;
    top: 71%;
    width: 46%;
    margin-left: 2.5%;
  }
}
#wrap .information {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
#wrap .information dt {
  padding-top: 10px;
  padding-bottom: 5px;
}
#wrap .information dt:first-of-type {
  padding-top: 0;
}
#wrap .information dt::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06a";
  font-weight: 900;
  padding-right: 5px;
  color: #ce7234;
}
#wrap .information dd {
  border-bottom: 1px dotted #ce7234;
  padding-bottom: 10px;
}

@media (min-width: 769px) {
  #wrap {
    width: 960px;
    /*------------------- お知らせ -------------------*/
  }
  #wrap .topMainVisual {
    background: #fff;
  }
  #wrap .topMainVisual .imgContainer {
    width: 480px;
    margin: 0 auto;
  }
  #wrap .screen img {
    opacity: 0.85;
  }
  #wrap .newer {
    padding: 60px 50px 10px;
  }
  #wrap .newItem {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  #wrap .products {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 10px;
  }
  #wrap .card {
    width: 270px;
    flex-direction: column;
    justify-content: space-between;
  }
  #wrap .card .cardImg {
    width: 100%;
    height: 180px;
    border-radius: 4px 4px 0 0;
  }
  #wrap .card .description {
    padding: 10px;
    width: 100%;
  }
  #wrap .container {
    margin: 0 auto;
    width: 600px;
  }
  #wrap .service li {
    width: 28%;
  }
  #wrap .condition table img {
    width: 30%;
  }
  #wrap .condition table tbody th {
    width: 30%;
  }
  #wrap .condition .condition_detail {
    display: flex;
    flex-direction: row-reverse;
  }
  #wrap .condition .condition_detail li {
    margin-right: 15px;
  }
  #wrap .condition .condition_detail li:first-child {
    margin-right: 0;
  }
}
