/*
 * 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:not(.alpha30) {
  color: #808080;
}

body {
  background: #fff;
  color: #000;
  /* 基本フォントサイズ */
  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: #ff0000;
  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: #ffcccc;
}

.field_with_errors {
  display: contents;
}

/* エラー表示 ここまで */
.form_layout {
  /* カード決済 既存のカード */
}
.form_layout dt {
  margin-top: 35px;
}
.form_layout dd {
  margin-top: 5px;
  /* 生年月日 */
}
.form_layout dd input,
.form_layout dd select {
  height: 40px;
  vertical-align: middle;
  border: 1px solid #808080;
  padding: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
.form_layout dd textarea {
  border: 1px solid #808080;
  padding: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
.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: #eee;
  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 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.input_name li .btnInform {
  display: block;
  width: 100%;
  height: 40px;
  background: #000;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.form_layout dd ul.input_name li .btnInform:hover {
  background: #666;
  color: #808080;
}
.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 .creditStock {
  border-collapse: collapse;
  margin: 0 padding;
  auto: 0;
  width: 100%;
  table-layout: auto;
  border: 1px solid #808080;
}
.form_layout .creditStock tr {
  border-bottom: 1px dotted #808080;
}
.form_layout .creditStock th {
  font-weight: bold;
  background: #eee;
}
.form_layout .creditStock th,
.form_layout .creditStock td {
  padding: 0.5em;
  border-right: 1px dotted #808080;
  text-align: center;
}
.form_layout .creditStock th.choose,
.form_layout .creditStock td.choose {
  display: none;
}

/*------------------- フォームレイアウト ここまで -------------------*/
/*------------------- 買い物かご、注文履歴関連 ここから -------------------*/
.number {
  padding-left: 20px;
  font-size: 0.85em;
}

/* グリッドレイアウト */
.grid_order1 {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: 1fr;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
.grid_order1 .productName {
  order: 2;
  padding: 5px;
  font-weight: bold;
}
.grid_order1 .productImg {
  order: 1;
  border-right: 1px dotted #aaa;
}

.grid_order2 {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: 1fr 1fr;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
.grid_order2 dt {
  border-bottom: 1px solid #aaa;
  border-right: 1px dotted #aaa;
  padding: 5px;
  font-weight: bold;
}
.grid_order2 dd {
  border-bottom: 1px solid #aaa;
  padding: 5px;
}

.detail_product {
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  padding: 5px;
  font-weight: bold;
}

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

.grid_order4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
.grid_order4 dt {
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #aaa;
}
.grid_order4 dd {
  padding: 10px;
  text-align: right;
  border-bottom: 1px solid #aaa;
}
.grid_order4 .total_cost {
  color: #ff0000;
}

/* 定期便への誘導 */
.regular_service {
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  padding: 10px;
  background: #eee;
}
.regular_service .watchOut {
  color: #ff0000;
  font-weight: bold;
}

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

.alert {
  display: block;
  padding: 0.7em;
  background: #eee;
}

select.send_interval {
  vertical-align: middle;
  border: 1px solid #808080;
  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: #eee;
  border-radius: 15px;
}
.before_cancel .balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -14px;
  top: 45%;
  border-left: 14px solid #eee;
  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: #000;
  content: "\f14a";
  font-weight: 400;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 1.5em;
}

/*------------------- 定期便解約コンテンツ ここまで -------------------*/
/*------------------- 購入手続き ここから -------------------*/
/* お届け先の指定 */
.destinationList {
  margin-top: 35px;
}
.destinationList .list_type {
  padding: 20px 10px;
  border-bottom: 1px #808080 dotted;
}
.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:last-child {
  border: none;
}
.destinationList .list_type.selected {
  background: #eee;
}

/* お支払い方法・お届日時指定 */
.payment {
  border-top: 1px #808080 dotted;
}

.pointUse {
  display: flex;
  flex-direction: column;
}

/*------------------- 購入手続き ここまで -------------------*/
/* 確認画面など */
.result {
  margin-top: 30px;
}
.result dt {
  padding: 0.7em;
}
.result dd {
  padding: 0.7em;
  background: #eee;
}
.result .package dt,
.result .package dd {
  padding: 0;
}
.result .package dt:first-child,
.result .package dd:first-child {
  margin-top: 0;
}
.result .package dt {
  margin-top: 10px;
}
.result .package dd {
  font-weight: bold;
}

.result > dt {
  font-weight: bold;
}

.order_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.order_list dt {
  padding: 0.7em 1em;
  width: 30%;
  background: #ccc;
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  border-right: 3px solid #fff;
}
.order_list dd {
  padding: 0.7em 1em;
  width: 70%;
  margin-bottom: 3px;
  background: #eee;
}
.order_list .package dt,
.order_list .package dd {
  padding: 0;
}
.order_list .package dt:first-child,
.order_list .package dd:first-child {
  margin-top: 0;
}
.order_list .package dt {
  margin-top: 10px;
}
.order_list .package dd {
  font-weight: bold;
}

/* ボタンデザイン */
.entryBtn {
  display: block;
  width: 320px;
  font-size: 1.15em;
}

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

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

.btnStyle {
  padding: 1em;
  text-align: center;
  background: #000;
  color: #fff;
  margin: 0 auto;
  text-decoration: none;
}
.btnStyle:hover:not(.alpha30) {
  background: #666;
}

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

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

/* ディスプレイが大きい場合、姓名などのエラーは横に並べる */
@media (min-width: 769px) {
  .errorMess.half {
    flex-direction: row;
    justify-content: space-between;
  }
  .half .errorStyle {
    width: 49%;
  }
}
.cf-turnstile {
  margin-top: 35px;
  margin-bottom: -20px;
}

.btn-turnstile.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ヘッダー&フッターレイアウト */
#top-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
#top-head #mobile-head {
  background: #000;
  height: 56px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
#top-head h1 {
  height: auto;
  width: 130px;
}
#top-head .cart {
  width: 30px;
}

/* Toggle Button */
#nav-toggle {
  top: 14px;
  width: 34px;
  height: 26px;
  cursor: pointer;
  z-index: 101;
}
#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: 11px;
}
#nav-toggle div span:nth-child(3) {
  top: 22px;
}

#global-nav {
  text-align: center;
  background: #eee;
  /*background: rgba(var.$color: var.$pale_color, var.$alpha: 0.95);*/
  width: 100%;
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -500px;
  transition: 0.5s ease-in-out;
}
#global-nav li {
  border-bottom: 1px solid #aaa;
  /* 最後はラインを描かない */
}
#global-nav li a {
  display: block;
  color: #333;
  padding: 1.2em 0;
  text-decoration: none;
}
#global-nav li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* Toggle アニメーション */
.open {
  /* #global-nav スライドアニメーション */
}
.open #nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  transform: rotate(-315deg);
}
.open #global-nav {
  /* #global-nav top + #mobile-head height */
  transform: translateY(556px);
}

/* フッター */
#bottom_foot {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.85em;
  padding: 15px;
  /*address {
    font-size: var.$font_medium;
  }*/
}
#bottom_foot a {
  text-decoration: none;
}
#bottom_foot .phoneNo {
  line-height: 1.5em;
  margin-bottom: 20px;
}
#bottom_foot .phoneNo dt::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/common/navidial-497874d641cc167ab9350ad08cbfab788a79c94bb02131b8d9f8473b3aab054a.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#bottom_foot .foot02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin: 10px 0;
}
#bottom_foot .foot02 li {
  margin-bottom: 5px;
  border-right: 1px #fff solid;
  padding: 0 5px;
}
#bottom_foot .foot02 li:last-child {
  border-right: none;
}

#wrap {
  flex: 1;
  background: #fff;
  width: 100%;
  margin: 0px auto;
  padding: 56px 0 10px;
  line-height: 1.5em;
  /* 共通 */
  /* コンテンツ消去 */
  /*------------------- 位置調整用 -------------------*/
  /* margin-bottom 5px刻み40pxまで */
  /* margin-top 5px刻み35pxまで */
  /* 必須「※」、注釈文字色 */
  /*------------------- EC、ブランドサイト共通レイアウト -------------------*/
  /* ページ内リンクリスト */
  /*------------------- 見出し -------------------*/
  /* カレント */
}
#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 .required,
#wrap .annotation {
  color: #ff0000;
}
#wrap .bold {
  font-weight: bold;
}
#wrap .alpha30 {
  opacity: 0.3;
}
#wrap .disk {
  padding-left: 25px;
}
#wrap .disk li {
  list-style: disc;
}
#wrap .cnt_box {
  border-top: 1px #000 solid;
  padding: 15px 20px;
  margin-bottom: 40px;
  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: "\f138";
  font-weight: 900;
  margin-right: 5px;
}
#wrap .cnt_box .customerInfo {
  background: #eee;
  padding: 1em;
}
#wrap .cnt_box .customerInfo dt {
  font-weight: bold;
}
#wrap .faq_style dt,
#wrap .faq_style dd {
  position: relative;
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#wrap .faq_style dt {
  border-bottom: 1px #808080 dotted;
  font-weight: bold;
}
#wrap .faq_style dt::before {
  content: "Q.";
  display: block;
  position: absolute;
  left: 0px;
  font-size: 1.3em;
  font-weight: bold;
}
#wrap .faq_style dd {
  border-bottom: 1px #808080 solid;
  margin-bottom: 20px;
}
#wrap .faq_style dd:last-child {
  border: none;
  margin-bottom: 0;
}
#wrap .faq_style dd::before {
  content: "A.";
  display: block;
  position: absolute;
  left: 0px;
  font-size: 1.3em;
  font-weight: bold;
}
#wrap .borderTop {
  border-top: 1px #808080 solid;
}
#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 #808080 solid;
  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: "\f054";
  font-weight: 900;
  right: 0.5em;
}
#wrap .PageLinkList_B ul li::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  right: 0.5em;
}
#wrap .container {
  padding-top: 30px;
}
#wrap h2 {
  font-size: 1.3em;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 25px;
  font-weight: bold;
  /* タイトル前アイコン*/
}
#wrap h2::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/assets/common/vionearxmark-be6ba035c303db2d7381108db30957a97e0351dd182a044afceda4c9cbc73e59.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}
#wrap h3 {
  font-size: 1.15em;
  /*font-weight: bold;*/
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 5px;
}
#wrap h4 {
  font-weight: bold;
}
#wrap .current {
  position: relative;
  margin: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#wrap .current::after {
  position: absolute;
  content: "";
  width: 98%;
  border: 2px solid #eee;
  z-index: 1;
}
#wrap .current .circle_on,
#wrap .current .circle_off {
  z-index: 2;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}
#wrap .current .circle_on {
  color: #fff;
  font-weight: bold;
  background: #000;
}
#wrap .current .circle_off {
  background: #eee;
}

@media (min-width: 769px) {
  #wrap {
    width: 960px;
  }
  #wrap .container {
    margin: 0 auto;
    width: 600px;
  }
}
