@charset "UTF-8";
/* 色 */
/* メインカラー */
/* ビバリスタカラー */
/* ブランドカラー */
/* ボタンカラー */
/* テキストカラー */
* {
  box-sizing: border-box;
}

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

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

/* ページ内リンク位置調整 */
a.anchor {
  display: block;
  padding-top: 85px;
  margin-top: -85px;
}

body {
  background: #e7f6fd;
  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;
}

/* フォントサイズ */
/* 商品ページ用 */
/*------------------- ブランドサイトトップメインビジュアル -------------------*/
.mv {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.mv .mvDescription {
  padding: 20px;
}
.mv .mvDescription dt {
  font-size: 1.2em;
  font-weight: bold;
  color: #ef5285;
  margin-bottom: 20px;
}
.mv .mvDescription dd:last-child {
  font-size: 0.85em;
  margin-top: 5px;
}
.mv .mvDescription p {
  text-align: justify;
  line-height: 1.8em;
}
.mv .mvDescription .price {
  font-size: 1.2em;
  font-weight: bold;
}
.mv .mvDescription ul.spec {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85em;
}
.mv .mvDescription ul.spec li {
  margin-right: 10px;
  background: #faf6cb;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 15px;
}

/*------------------- 商品ページ詳細 -------------------*/
/* 購入 */
.purchase {
  padding: 15px 10px;
  /* 通常購入 
  .purchaseBox_A {
    margin-bottom: 30px;
    dt {
      background: $border_color;
      border: 1px solid $border_color;
    }
    dd {
      border-left: 1px solid $border_color;
      border-right: 1px solid $border_color;
      border-bottom: 1px solid $border_color;
      em {
        font-weight: bold;
      }
    }
    .purchaseBtn_A {
      a {
        display: inline-block;
        position: relative;
        padding: 10px 30px;
        color: $btn_txt_off;
        border: 1px solid $btn_border;
        background: linear-gradient(top, $btn_light, $btn_deep);
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
        border-radius: 5px;
        &:hover {
          background: linear-gradient(bottom, $btn_light, $btn_deep);
          color: $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: center;
  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: #faf6cb;
  border: 1px solid #a5dff9;
}
.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 #a5dff9;
  border-right: 1px solid #a5dff9;
  border-bottom: 1px solid #a5dff9;
}
.purchase .purchaseBox_A dd em {
  font-weight: bold;
  color: #ef5285;
}
.purchase .purchaseBox_A .purchaseBtn_A {
  display: none;
}
.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(top, #a3a3a3, #333);
  border-radius: 5px;
}
.purchase .purchaseBox_A .purchaseBtn_A a:hover {
  background: linear-gradient(bottom, #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: #64c8f4;
  height: 60px;
  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: 130px;
  margin: 0 auto;
}
#top-head .cart {
  visibility: hidden;
  width: 35px;
}

/* Toggle Button */
#nav-toggle {
  visibility: hidden;
  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: #FFF;
  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: 60px;
  height: 100vh;
  opacity: 1;
  position: fixed;
}

/* フッター */
#bottom_foot {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #e7f6fd;
  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 {
  display: none;
  line-height: 1.5em;
  padding: 20px;
}
#bottom_foot .phoneNo dt {
  font-size: 1.5em;
  font-weight: bold;
}
#bottom_foot .phoneNo dt::before {
  content: "";
  display: inline-block;
  background-image: url(../images/common/navidial_color.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: 150px;
  }
  #bottom_foot .phoneNo {
    border: none;
  }
  #bottom_foot .foot02 {
    /*margin-top: 10px;*/
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*border-bottom: 1px solid $sub_color;*/
    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: 60px 0 10px;
  line-height: 1.5em;
  /* 共通 */
  /* コンテンツ消去 */
  /*------------------- 位置調整用 -------------------*/
  /* margin-bottom 10px刻み40pxまで */
  /* margin-top 5px刻み35pxまで */
  /* 必須「※」、注釈文字色 */
  /*------------------- 共通レイアウト -------------------*/
  /*------------------- よくあるご質問ここから -------------------*/
  /* アコーディオン */
  /*------------------- よくあるご質問ここまで -------------------*/
  /*------------------- 会員規約、個人情報保護方針、特商法レイアウト -------------------*/
  /*------------------- 見出し -------------------*/
  /* カレント */
  /*------------------- 新着商品 -------------------*/
  /* カードレイアウト */
  /*------------------- 混雑状況 -------------------*/
  /*------------------- お知らせ -------------------*/
}
#wrap .container {
  padding: 30px 5px;
}
#wrap .container p {
  padding-left: 10px;
  padding-right: 10px;
}
#wrap .invisible {
  display: none;
}
#wrap .blank {
  visibility: hidden;
}
#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_10 {
  margin-left: 10px;
}
#wrap .mgn_left_20 {
  margin-left: 20px;
}
#wrap .mgn_left_50 {
  margin-left: 50px;
}
#wrap .mgn_btm_10 {
  margin-bottom: 10px;
}
#wrap .mgn_btm_20 {
  margin-bottom: 20px;
}
#wrap .mgn_btm_30 {
  margin-bottom: 30px;
}
#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: 25px;
}
#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 #a5dff9;
  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: #ef5285;
}
#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 #999;
  padding-bottom: 30px;
}
#wrap .accordion .category {
  border: 1px solid #a5dff9;
  border-radius: 5px;
  padding: 10px;
  font-weight: bold;
  position: relative;
}
#wrap .accordion .category:hover {
  background: #faf6cb;
}
#wrap .accordion .category::after {
  color: #ef5285;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  right: 0.7em;
  font-size: 1.1em;
}
#wrap .accordion .active {
  background: #faf6cb;
}
#wrap .accordion .active::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f139";
  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:last-child {
  margin-bottom: 0;
}
#wrap .number_box ol li ul {
  list-style: circle;
  margin-left: 1.5em;
}
#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: #faf6cb;
  padding: 7px 10px;
  border: 1px solid #a5dff9;
  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 #a5dff9;
  border-right: 1px solid #a5dff9;
}
#wrap .trade_list dd:last-child {
  border-bottom: 1px solid #a5dff9;
  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 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 #ef5285;
  border-left: 3px solid #ef5285;
  padding-left: 5px;
  margin-bottom: 10px;
}
#wrap h5 {
  font-weight: bold;
  border: 1px solid #a5dff9;
  padding: 7px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
#wrap .current {
  margin: 0 10px;
  display: flex;
  padding: 7px 10px;
  background: #faf6cb;
  border: 1px solid #a5dff9;
  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: 60px;
  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 #ccc;
  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: #ef5285;
}
#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: #fff;
  border: 1px solid #64c8f4;
  background: #64c8f4;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
}
#wrap .card .read-more a i {
  color: #faf6cb;
}
#wrap .card .read-more a:hover, #wrap .card .read-more a:active {
  border: 1px solid #a5dff9;
  background: #faf6cb;
  color: #333;
}
#wrap .card .read-more a:hover i, #wrap .card .read-more a:active i {
  color: #333;
}
#wrap .condition dt {
  color: #b30000;
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
}
#wrap .condition table {
  border-collapse: collapse;
  background: #fff;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: auto;
  border: 1px solid #ccc;
}
#wrap .condition table img {
  width: 75%;
}
#wrap .condition table tr {
  border-bottom: 1px dotted #999;
  font-weight: bold;
}
#wrap .condition table th,
#wrap .condition table td {
  padding: 0.5em;
  border-right: 1px dotted #999;
  text-align: center;
}
#wrap .condition table thead tr {
  background-color: #333;
  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(../images/common/maru.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(../images/common/sankaku.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(../images/common/batsu.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 .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: #ef5285;
}
#wrap .information dd {
  border-bottom: 1px dotted #ef5285;
  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;
  }
}/*# sourceMappingURL=layout.css.map */