@charset "UTF-8";
/* bootstrap */
/* @import "extra/bootstrap-sprockets";
/* @import "extra/bootstrap";

/* common */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  padding: 0;
}

html {
  height: 100%;
  font-size: 62.5%;
  background: #F3F3F3;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Arial', sans-serif;
  word-break: break-word;
  color: #222222;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 600px;
  margin: auto;
  background: #FFFFFF;
}

a {
  color: #88AA2E;
  text-decoration: none;
}

.sass-sample {
  font-size: 14px;
  font-size: 1.4rem;
}

input:focus, textarea:focus {
  border: 1px solid #88AA2E;
  outline: none;
}

input, textarea {
  font-family: 'Arial', sans-serif;
}

.common__title {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  margin: 50px 0 20px;
  font-weight: normal;
  flex-grow: 1;
  white-space: nowrap;
}

.common__title.common__title-search-items {
  margin: 10px 0 20px;
}

.common__title {
  display: flex;
  align-items: center;
  /* 垂直中心 */
  justify-content: center;
  /* 水平中心 */
}

.common__title:before, .common__title:after {
  border-top: 1px solid #88AA2E;
  content: "";
  width: 100%;
}

.common__title:before {
  margin-right: 0.8em;
  /* 文字の右隣 */
}

.common__title:after {
  margin-left: 0.8em;
  /* 文字の左隣 */
}

.common__comment {
  margin-bottom: 20px;
}

.common__button-main {
  box-sizing: content-box;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  display: inline-block;
  background: #88AA2E;
  border: none;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc( 100% - 20px );
  padding: 14px 10px;
  font-weight: bold;
  border-radius: 100px;
}
.common__button-main:hover {
  background: #7A9D1F;
}
.common__button-main.add_recurring {
  background-color: #3F520C;
}
.common__button-main.add_recurring:hover {
  background-color: #567010;
}

.common__button-attention {
  box-sizing: content-box;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  display: inline-block;
  background: #ED4E1C;
  border: none;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc( 100% - 20px );
  padding: 14px 10px;
  font-weight: bold;
  border-radius: 100px;
}
.common__button-attention:hover {
  background: #E23B07;
}

.common__button-gray {
  box-sizing: content-box;
  line-height: 1;
  text-align: center;
  display: inline-block;
  background: #999999;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc( 100% - 20px );
  padding: 14px 10px;
  font-weight: bold;
  border-radius: 100px;
}
.common__button-gray:hover {
  background: #8D8D8D;
}

.common__button-black {
  box-sizing: content-box;
  line-height: 1;
  text-align: center;
  display: inline-block;
  background: #222222;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc( 100% - 20px );
  padding: 14px 10px;
  font-weight: bold;
  border-radius: 100px;
}
.common__button-black:hover {
  background: #666666;
}

.common__button-disabled {
  box-sizing: content-box;
  line-height: 1;
  text-align: center;
  display: inline-block;
  background: #F3F3F3;
  border: none;
  color: #999999;
  font-size: 16px;
  font-size: 1.6rem;
  width: calc( 100% - 20px );
  padding: 14px 10px;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #E3E3E3;
}

.common__buttonarea {
  margin: 20px 0 30px;
}
.common__buttonarea a, .common__buttonarea button {
  margin-top: 10px;
}

.common__error {
  color: #ED4E1C;
  margin: 10px 0 20px;
  font-weight: bold;
}

.common__error-form {
  border: 1px solid #ED4E1C !important;
  background: #FFDBD0;
}

.common__message-info {
  background: #E4F0B7;
  padding: 15px;
  color: #88AA2E;
  margin-bottom: 20px;
}

.common__message-error {
  background: #FFDBD0;
  padding: 15px;
  color: #ED4E1C;
  margin-bottom: 20px;
}

.common__hr {
  border-top: 1px solid #E3E3E3;
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin: 0;
}

.common__list-check {
  float: left;
  position: relative;
  width: 30px;
  display: grid;
  place-items: center;
  text-align: center;
}
.common__list-check input[type=checkbox] {
  display: block;
  border: 1px solid #E3E3E3;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 3px;
  z-index: 1;
}
.common__list-check input[type=checkbox]:checked + label {
  background: #E4F0B7;
}
.common__list-check label {
  background: #F3F3F3;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  display: block;
}
.common__list-check label:before {
  display: none;
}
.common__list-check label:after {
  left: 12px;
  z-index: 1;
}

.container {
  position: relative;
  box-sizing: border-box;
  max-width: 600px;
  min-height: calc( 100vh - 142px );
  margin: 0 0 30px;
  padding: 57px 10px 0;
}
.container.container_short_padding_top {
    padding-top: 21px !important;
}

.notfound__title {
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  margin: 80px 0 10px;
  font-weight: bold;
}

.notfound__question {
  font-size: 80px;
  font-size: 8rem;
  text-align: center;
  color: #E4F0B7;
  font-weight: bold;
}

.notfound__content {
  text-align: center;
  color: #999999;
  line-height: 1.5;
}

details summary:focus {
  outline: none;
}

details[open] summary:focus {
  outline: none;
}

.form__text {
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #E3E3E3;
  padding: 6px 15px;
  border-radius: 100px;
}
.form__text::placeholder {
  color: #DDD;
}

.form__select {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
}
.form__select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 36px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #E3E3E3;
  padding: 0 28px 0 10px;
  border-radius: 100px;
  background: #FFFFFF;
  width: 100%;
}
.form__select:before {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
}

.form__textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 125px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #E3E3E3;
  padding: 10px 15px;
  border-radius: 15px;
}
.form__textarea::placeholder {
  color: #DDD;
}

.form__radio, .form__checkbox {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}
.form__radio:before, .form__checkbox:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -11px;
  width: 20px;
  height: 20px;
  border: 1px solid #E3E3E3;
  content: '';
  background: #FFFFFF;
}

input[type=radio], input[type=checkbox] {
  display: none;
}

.form__radio:before {
  border-radius: 100%;
}
.form__radio:after {
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #88AA2E;
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .form__radio:after {
  opacity: 1;
}

.form__checkbox:before {
  border-radius: 3px;
}
.form__checkbox:after {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #88AA2E;
  border-bottom: 3px solid #88AA2E;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .form__checkbox:after {
  opacity: 1;
}

.form__file-button {
  padding: 10px 15px;
}

.form__file-name {
  margin-left: 10px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.search {
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.search__title {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.search__form-word {
  position: relative;
}
.search__form-word .search__form-input {
  padding-left: 35px;
  width: 100%;
}
.search__form-word:before {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  color: #222222;
}

.search__form-date {
  position: relative;
}
.search__form-date .search__form-input {
  padding-left: 35px;
  width: 100%;
}
.search__form-date:after {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  content: "\f073";
  color: #88AA2E;
}

.search__form-category {
  position: relative;
  width: 100%;
}
.search__form-category select {
  padding-left: 35px;
}
.search__form-category:after {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f787";
  color: #88AA2E;
}

.search__form-farmer {
  position: relative;
  margin-top: 10px;
  width: 100%;
}
.search__form-farmer .search__form-input {
  padding-left: 35px;
}
.search__form-farmer:after {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007";
  color: #88AA2E;
}

.search__form-p_origin {
  position: relative;
  width: 100%;
}

.search__form-p_origin select {
  padding-left: 35px;
}

.search__form-p_origin .search__form-input {
  padding-left: 35px;
}
.search__form-p_origin:after {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f57e";
  color: #88AA2E;
}

.search__form-sort {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.search__form-sort select {
  padding-left: 30px;
}
.search__form-sort:after {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0dc";
  color: #88AA2E;
}

.header {
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  border-bottom: 1px solid #E3E3E3;
  padding: 10px 0;
  position: relative;
  position: fixed;
  background: #FFFFFF;
  z-index: 3;
}

.header__top {
  display: flex;
}

.header__bottom {
  margin-top: 4px;
}

.header__title {
  margin-left: 10px;
}

.header__title-logo {
  display: block;
  width: 30px;
  height: 30px;
  padding: 2px;
}

.header__login {
  display: flex;
  flex-grow: 1;
  align-self: center;
  justify-content: flex-end;
  font-weight: bold;
}

.header__search {
  margin: 0 10px;
  display: flex;
}
.header__search input {
  width: 100%;
}

.header__link {
  font-size: 18px;
  font-size: 1.8rem;
  margin-right: 50px;
  display: flex;
}
.header__link > li {
  display: grid;
  place-items: center;
}
.header__link > li > a {
  padding: 5px 7px;
  color: #222222;
}
.header__link li {
  position: relative;
}

.header__link-notification {
  background: #ED4E1C;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: -2px;
  right: -4px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1;
}

.header__menu {
  position: relative;
  z-index: 5;
  left: 0;
  top: 5px;
  visibility: visible;
  overflow: auto;
  height: auto;
  padding-top: 0;
  opacity: 1;
  float: right;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.header__menu_short_top {
    top:54px !important;
}

.header__menu {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 58px;
  right: 0;
  /* overflow-y: scroll; */
  overflow: hidden;
  height: 100%;
  padding-top: 90px 0 90px 0;
  -webkit-transition: opacity 0.3s ease-in, visibility 0.3s ease-in 0.3s;
  transition: opacity 0.3s ease-in, visibility 0.3s ease-in 0.3s;
  opacity: 0;
  background-color: #FFFFFF;
}

.header__menu nav {
  background: #FFFFFF;
  border-top: 1px solid #E3E3E3;
  height: calc( 100vh - 57px );
  overflow: scroll;
}

.header__menu nav > ul {
  margin-bottom: 50px;
}

.header__menu li {
  display: block;
  margin-left: 0;
}

.header__menu a {
  padding: 1.2em;
}

.header__toggle {
  display: block;
  z-index: 10;
  padding: 0 15px 0 10px;
  position: absolute;
  top: 15px;
  right: 0;
}

.header__menu-icon {
  display: block;
  position: relative;
  float: right;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.header__menu-icon > span {
  display: block;
  position: absolute;
  top: 55%;
  width: 100%;
  height: 0.3em;
  border-radius: 2px;
  margin-top: -2px;
  background-color: #222222;
}

.header__menu-icon > span:before, .header__menu-icon > span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-color: #222222;
}

.header__menu-icon > span:before {
  -webkit-transform: translateY(-0.6em);
  transform: translateY(-0.6em);
}

.header__menu-icon > span:after {
  -webkit-transform: translateY(0.6em);
  transform: translateY(0.6em);
}

#header__menu-icon:checked + .header__toggle .header__menu-icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header__menu-icon:checked + .header__toggle span,
#header__menu-icon:checked + .header__toggle span:before,
#header__menu-icon:checked + .header__toggle span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #222222;
}

#header__menu-icon:checked ~ .header__menu {
  display: block;
  visibility: visible;
  opacity: 1;
  max-width: 600px;
  margin: auto;
}

.header__menu-title {
  background: #E4F0B7;
  font-weight: bold;
  padding: 6px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
}

.header__menu-link {
  font-size: 16px;
  font-size: 1.6rem;
}
.header__menu-link a {
  display: block;
  margin: 0 10px -1px;
  padding: 15px 5px;
  border-bottom: 1px solid #E3E3E3;
  color: #222222;
}

footer {
  clear: both;
  background: #222222;
  padding: 20px;
}

.footer__copyright {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
}

.footer__loginlogout {
  margin-bottom: 100px;
}

.login {
  background: #88AA2E;
  padding: 50px 15px 0;
  color: #FFFFFF;
  min-height: calc( 100vh - 50px );
}

.login__logo {
  margin-bottom: 50px;
}
.login__logo img {
  display: block;
  margin: auto;
}

.login__title {
  font-weight: bold;
  margin: 30px 0 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

.login__form {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 12px 15px;
  max-width: 380px;
  height: inherit;
}

.login__button {
  margin-top: 30px;
  display: block;
}

.login__button-attention {
  text-align: center;
  margin-top: 30px;
}
.login__button-attention a {
  text-decoration: underline;
  font-weight: bold;
  color: #FFFFFF;
}

.login__formarea {
  max-width: 380px;
  margin: auto;
  padding-bottom: 20px;
}

.login__menu {
  text-align: center;
}
.login__menu ul {
  display: inline-block;
}
.login__menu li {
  margin-bottom: 10px;
  text-align: left;
}
.login__menu a {
  color: #FFFFFF;
}
.login__menu a i {
  margin-right: 8px;
}

.login__signup-title:before, .login__signup-title:after {
  border-color: #FFFFFF;
}

.login__signup-button {
  margin-top: 20px;
}

.login__title.attention {
  margin-bottom: 0;
}

.login__title-attention-word {
  margin-bottom: 8px;
}

/* forgotpassword */
.forgotpassword {
  /*width: 100%;*/
  padding: 50px 15px;
  min-height: 100vh;
  background-color: #88AA2E;
  font-family: 'Roboto', sans-serif;
}

.forgotpassword .logo {
  text-align: center;
}

.forgotpassword img {
  width: 90%;
  height: auto;
  margin-bottom: 10%;
}

.forgotpassword .title {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.forgotpassword .form {
  background-color: #EFECEC;
  padding: 50px;
  margin: 0 20px;
}

.forgotpassword .error {
  margin: 10px 0px;
  color: #a00000;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.forgotpassword .email {
  margin: 0 0 14px;
  color: #454545;
}

.forgotpassword .caption {
  display: inline-block;
  font-size: 12px;
  color: #454545;
  letter-spacing: 1px;
}

.forgotpassword .text-email {
  display: inline-block;
  width: 100%;
  height: 30px;
  border: 1px #ababab solid;
  font-size: 1.6rem;
  padding: 0 5px;
}

.forgotpassword .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.forgotpassword .button {
  padding: 8px 8px;
  margin: 0 8px 0 8px;
  background-color: #222222;
  border: none;
  color: #ffffff;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 2px 3px 3px 0px #ccc;
  box-shadow: 2px 3px 3px 0px #ccc;
  height: 35px;
  display: inline-block;
  border-radius: 4px;
}

.forgotpassword .message {
  margin-bottom: 24px;
  text-align: center;
}

.notice {
  margin-top: 20px;
}

.notice a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #ffffff;
  text-align: center;
  height: 1.5em;
  /*opacity: .5;*/
}
.hr-text:before {
  content: '';
  background: linear-gradient(to right, #ffffff, #ffffff, #ffffff);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #ffffff;
  background-color: #88AA2E;
}

.top__mv {
  margin: 0 -10px;
}
.top__mv img {
  width: 100%;
  display: block;
}

.top__search {
  margin-bottom: 40px;
}

.top__search-input {
  background: #E4F0B7;
  border-radius: 5px;
  padding: 15px 10px 10px;
  margin-bottom: 15px;
}
.top__search-input .search__form-input {
  width: 100%;
  margin-bottom: 10px;
}

.top__search-button {
  padding: 12px 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

.top__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 50px 0 20px;
}

.top__title-icon {
  height: 24px;
  margin-right: 10px;
  display: block;
  float: left;
  margin-top: 2px;
}

.top__item {
  overflow: hidden;
  margin-bottom: -10px;
}

.top__item-list {
  width: calc( 50% - 27px );
  border-radius: 5px;
  border: 1px solid #E3E3E3;
  padding: 10px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}
.top__item-list:nth-child(2n) {
  margin-right: 0;
}

.top__item-img {
  width: calc( 100% + 20px );
  height: 130px;
  background-size: cover;
  background-position: center;
  margin: -10px 10px 10px -10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}

.top__item-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.top__item-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  height: 40px;
  overflow: hidden;
  color: #222222;
}

.top__item-producer, .top__item-country {
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 0.4em;
  color: #222222;
  overflow: hidden;
}
.top__item-producer i, .top__item-country i {
  color: #88AA2E;
  margin-right: 5px;
}

.top__item-price {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  margin: 8px 0;
}

.top__item-unit {
  /* font-size: 12px; */
  /* font-size: 1.2rem; */
  color: #222222;
  font-weight: normal;
}

.top__item-button {
  width: calc( 100% - 20px );
  padding: 9px;
  font-size: 13px;
  font-size: 1.3rem;
}

.top__more-link {
  margin: 15px 0 50px;
  text-align: right;
}
.top__more-link:hover {
  text-decoration: underline;
}

.top__category {
  overflow: hidden;
  margin-bottom: 30px;
}

.top__category-list {
  width: calc( 50% - 5px );
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
.top__category-list:nth-child(2n) {
  margin-right: 0;
}
.top__category-list a {
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-weight: bold;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
}
.top__category-list a:hover {
  background: rgba(0, 0, 0, 0.3);
}

.top__item-price-updown-comment {
  font-size: small;
  color: #222222;
}

.priced-up,
.top__item-price-up {
  color: red;
}

.top__item-price-up::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
}

.priced-down,
.top__item-price-down {
  color: blue;
}

.top__item-price-down::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f063";
}

.top__item_price > * {
  display: inline-block;
}

.top__item_price .deleted {
  text-decoration: line-through;
  font-size: smaller;
  opacity: 0.6;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.top__item-order-unit {
  display: block;
}

.top__item .discount-notice {
  font-size: 1.5rem;
  color: #b12704;
  display: block;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 1em;
}

.list__search-conditions {
  font-weight: bold;
}

.list__search-change {
  float: right;
  text-decoration: underline;
}

.list__search-conditions-farmers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.list__search-conditions-farmers-item {
  margin: 2px;
  padding: 2px 8px;
  border: solid 1px #ddd;
  border-radius: 6px;
  width: auto;
}

.list__item {
  overflow: hidden;
  margin-bottom: -10px;
}

.list__item-list {
  padding: 6px 0;
  width: 100%;
  border-top: 1px solid #E3E3E3;
  font-size: 13px;
  font-size: 1.3rem;
}
.list__item-list.label__cancelled {
  background-color: #d3d3d3;
  opacity: 0.5;
}

.list__item-product {
  padding: 0;
  width: 100%;
  border-top: 1px solid #E3E3E3;
  font-size: 13px;
  font-size: 1.3rem;
}

button.all_select_button {
    color: #88AA2E;
    text-decoration: underline;
}

.list__item-check {
    height: 118px;
}

.list__item-img {
  width: 118px;
  height: 118px;
  background-size: cover;
  background-position: center;
  float: left;
  display: block;
}

.list__item-text {
  margin-left: 130px;
  overflow: hidden;
}
.list__item-text_ml160px {
    margin-left: 160px !important;
}

.list__item-info {
  margin-bottom: 4px;
  color: #fefefe;
  font-size: 12px;
  font-size: 1.2rem;
}
.list__item-info.buyer-list {
  margin-left: 40px;
}

.list__item-new {
  display: inline-block;
  margin: 4px 4px 0 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #cf1717;
}

.list__item-recommended {
  display: inline-block;
  margin: 4px 4px 0 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #88aa2e;
}

.list__item-flashsale {
  display: inline-block;
  margin: 4px 4px 0 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: yellow;
  color: #000;
  font-weight: 700;
}

.list__item-flashsale::before,
.list__item-flashsale::after {
  display: inline;
  content: " \f0e7 ";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.list__item-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  max-height: 3em;
  overflow: hidden;
  color: #222222;
}

.list__item-producer, .list__item-country {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #222222;
  overflow: hidden;
}

.list__item-producer i, .list__item-country i {
  color: #88AA2E;
  margin-right: 5px;
}

.list__item-price {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  margin: 8px 0;
}
.list__item-price .deleted {
  text-decoration: line-through;
  font-size: smaller;
  opacity: 0.6;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.list__item-order-unit {
  display: block;
}
.list__item-unit {
  /* font-size: 12px; */
  /* font-size: 1.2rem; */
  color: #222222;
  font-weight: normal;
}

.list__item-stock {
  box-sizing: content-box;
  line-height: 1;
  text-align: center;
  display: inline-block;
  background: #F3F3F3;
  border: none;
  color: #999999;
  font-size: 13px;
  font-size: 1.3rem;
  width: calc( 100% - 20px );
  padding: 9px;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #E3E3E3;
  max-width: 250px;
  float: right;
}

.list__item-button {
  float: right;
  width: calc( 100% - 18px );
  padding: 9px;
  max-width: 250px;
  font-size: 13px;
  font-size: 1.3rem;
}

.history__delivery-fix {
  margin-top: 0 !important;
}

.history__item {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 20px;
}

.history__item-status {
  width: 100px;
  height: 18px;
  font-size: 11px;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 1px solid #ED4E1C;
  color: #ED4E1C;
  display: grid;
  place-items: center;
  font-weight: bold;
  float: left;
}

.history__item-status-completed {
  border-color: #88AA2E;
  color: #88AA2E;
}

.history__item-status-cancelled {
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}

.history__item-order-date {
  color: #999999;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  margin: 3px 0 10px;
}

.history__item-img {
  width: 70px;
  height: 70px;
}

.history__item-text {
  min-height: 70px;
}

.history__item-f-s {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
}

.history__item-price {
  font-size: 12px;
  font-size: 1.2rem;
  float: left;
  margin: 0;
}

.history__item-price-devide {
  color: #999999;
  margin: 0 5px;
}

.detail__list {
  width: 100%;
  border-top: 1px solid #E3E3E3;
  padding: 10px 0;
  font-size: 13px;
  font-size: 1.3rem;
}

.detail__img,
.detail__img img {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.detail__img-left {
  color: #222222;
  font-size: 30px;
  font-size: 3rem;
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}
.detail__img-left:hover {
  opacity: 0.8;
}

.detail__img-right {
  color: #222222;
  font-size: 30px;
  font-size: 3rem;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}
.detail__img-right:hover {
  opacity: 0.8;
}

.detail__title {
  font-weight: bold;
  margin: 5px 0 20px;
  font-size: 20px;
  font-size: 2rem;
  color: #222222;
}

.detail__producer, .detail__country {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222222;
  height: 15px;
  overflow: hidden;
}
.detail__producer i, .detail__country i {
  color: #88AA2E;
  margin-right: 5px;
}

.detail__price {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #222222;
  margin: 20px 0;
}

.detail__price .deleted {
  text-decoration: line-through;
  font-size: smaller;
  opacity: 0.6;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.detail__price-order-unit {
  display: block;
}

.detail__unit {
  /* font-size: 18px; */
  /* font-size: 1.8rem; */
  color: #222222;
  font-weight: normal;
}

.detail__content {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 20px 0;
  word-break: break-word;
  white-space: pre-wrap;
}

.detail__buttonarea {
  background: #E4F0B7;
  border-radius: 5px;
  padding: 20px 15px;
}

.detail__uom {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

.detail__uom-devide {
  margin: 0 8px;
  color: #999999;
}

.detail__value {
  font-weight: bold;
}

.detail__stocks {
  display: block;
  color: #b12704;
  font-size: 1.5rem;
  height: auto;
}

.detail__notice {
  display: block;
  text-align: center;
  color: #b12704;
  font-size: large;
  margin-bottom: 0.5em;
}

.cart__delete {
  float: right;
  text-decoration: underline;
  margin-top: 10px;
}

.cart__formarea {
  background: #F3F3F3;
  border-radius: 5px;
  padding: 15px 10px;
  margin: 10px 0;
  display: flex;
}

.cart__formarea-amount {
  /* width: 140px; */
  margin-right: 10px;
}

.cart__formarea-date {
  flex-grow: 1;
  width: 45%;
}

.cart__formarea-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.cart__formarea-moq {
  font-weight: normal;
  margin-left: 5px;
}

.cart__button-amount {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  float: left;
}

.cart__form-amount {
  width: 5em;
  border-radius: 5px;
  height: 40px;
  float: left;
  margin: 0 5px;
  text-align: center;
}

.cart__select-date {
  width: 100%;
}
.cart__select-date select {
  border-radius: 5px;
  width: 100%;
  height: 40px;
}

.cart__delivery {
  margin: 40px 0 10px;
}
.cart__delivery i {
  color: #ED4E1C;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 5px;
}

.cart__delivery-date {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #ED4E1C;
}

.cart__delivery-fix {
  margin: 40px 0 10px;
}
.cart__delivery-fix i {
  color: #88AA2E;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 5px;
}

.cart__delivery-date-fix {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #88AA2E;
}

.cart__price {
  text-align: right;
}

.cart__subtotal-title {
  font-weight: bold;
  margin-right: 10px;
}

.cart_price-important {
  color: #88AA2E;
  font-size: 20px;
  font-size: 2rem;
}

.cart_price-unit-important {
  /* font-size: 12px; */
  /* font-size: 1.2rem; */
  font-size: smaller;
}

.cart_price-number-important {
  font-weight: bold;
}

.cart__price-add {
  margin: 50px 0 10px;
  border-top: 1px dashed #E3E3E3;
  border-bottom: 1px dashed #E3E3E3;
  padding: 15px 0;
}

.cart__total-title {
  font-weight: bold;
  margin-right: 10px;
  font-size: 22px;
  font-size: 2.2rem;
}

.cart_price-total {
  color: #88AA2E;
  font-size: 30px;
  font-size: 3rem;
}

.cart_price-unit-total {
  /* font-size: 16px; */
  /* font-size: 1.6rem; */
  font-size: smaller;
}

.cart_price-number-total {
  font-weight: bold;
}

.cart__complete-comment {
  text-align: center;
}

.cart__complete-icon {
  text-align: center;
  font-size: 46px;
  font-size: 4.6rem;
  color: #88AA2E;
}

.mylist {
  border-bottom: 1px solid #E3E3E3;
}

.mylist__link-create {
  text-align: right;
  margin-bottom: 20px;
  text-decoration: underline;
}

.mylist__list {
  border-top: 1px solid #E3E3E3;
  padding: 10px 0;
  display: flex;
}

.mylist__list-name {
  margin-bottom: 5px;
}

.mylist__list-date {
  color: #999999;
  font-size: 12px;
  font-size: 1.2rem;
}

.mylist__list-text {
  flex-grow: 1;
}

.mylist__list-button {
  padding: 8px 15px;
  width: auto;
  font-size: 13px;
  font-size: 1.3rem;
  margin: 3px 0 0 5px;
  float: right;
}

.mylist__item {
  border-bottom: 1px solid #E3E3E3;
}

.mylist__item-delete {
  float: right;
  text-decoration: underline;
  margin-top: -25px;
  pointer-events: all;
}

.mylist__edit-name {
  display: flex;
  margin-bottom: 30px;
}

.mylist__edit-name-form {
  flex-grow: 1;
}

.mylist__edit-name-button {
  padding: 8px 0;
  width: 80px;
  margin-left: 5px;
  font-size: 13px;
  font-size: 1.3rem;
}

.mylist__button-add {
  position: sticky;
  position: -webkit-sticky;
  display: block;
  bottom: 64px;
  margin: 40px 0 10px;
  z-index: 2;
}

.mylist__button-back {
  position: sticky;
  position: -webkit-sticky;
  display: block;
  bottom: 10px;
  margin: 10px 0 30px;
  z-index: 2;
}

.mylist__list-check {
  height: 125px;
  margin: 0 10px 0 0;
}

.mylist__create-button {
  margin-top: 20px;
}

.mylist__search-link {
  margin: 30px 0;
  text-align: center;
}
.mylist__search-link p {
  margin-bottom: 5px;
  display: inline-block;
}
.mylist__search-link a {
  display: inline-block;
  text-align: left;
  margin-bottom: 10px;
}

.recurring__dotw_block {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #FFFFFF;
  background-color: #88AA2E;
  text-align: center;
  line-height: 2.3;
  border: solid 2px #88AA2E;
  border-radius: 5px;
  padding: 5px;
}

.recurring__list-button {
  width: auto;
  font-size: 13px;
  font-size: 1.3rem;
  margin: 3px 0 0 5px;
  float: right;
}

.recurring__status_0,
.recurring__status_1,
.recurring__status_2 {
  width: 100px;
  height: 18px;
  font-size: 11px;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 1px solid #ED4E1C;
  color: #ED4E1C;
  display: grid;
  place-items: center;
  font-weight: bold;
  position: absolute;
  right: 0;
}

.recurring__list_name {
  margin-bottom: 5px;
  max-width: 65%;
}

.recurring__status_1 {
  border: 1px solid #88AA2E;
  color: #88AA2E;
}

.recurring__dotw_box {
  margin-top: 20px;
}

.recurring__dotw_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.recurring__dotw_area .recurring__dotw_radio_block {
  display: block;
  width: 30px;
  height: 30px;
  color: #999999;
  text-align: center;
  line-height: 2.3;
  border: solid 2px #E3E3E3;
  border-radius: 5px;
  padding: 5px;
}
.recurring__dotw_area input[type=radio]:checked + label {
  color: #FFFFFF;
  background-color: #88AA2E;
  border: solid 2px #88AA2E;
}

.recurring__setting_box .recurring__setting_item {
  padding: 10px;
}
.recurring__setting_box .recurring__setting_item .mb-10 {
  margin-bottom: 10px;
}

.recurring__buttonarea {
  margin-top: 10px;
}

.recurring__item-place_order {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  height: 36px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #E3E3E3;
  padding: 0 28px 0 10px;
  border-radius: 100px;
  background: #FFFFFF;
  width: 30%;
}

.recurring__quantity_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .recurring__quantity_box {
    flex-direction: column;
  }
}

.recurring__item-price {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  margin: 8px 0;
}

.recurring__item-quantity {
  margin-left: 10px;
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  margin: 8px 0;
}

.recurring__item-delete {
  float: right;
  text-decoration: underline;
  margin-top: 15px;
}

.recurring__item-grayout {
  opacity: 0.1;
}

.invoice__tab {
  display: flex;
  border-bottom: 1px solid #E3E3E3;
  margin: 0 -10px 15px;
  padding: 0 5px;
}
.invoice__tab li {
  margin: 0 5px -1px;
  flex-grow: 1;
  text-align: center;
  width: 100%;
}
.invoice__tab li a {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top: 1px solid #E3E3E3;
  border-left: 1px solid #E3E3E3;
  border-right: 1px solid #E3E3E3;
  height: 36px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 13px;
  font-size: 1.3rem;
  background: #999999;
}

.invoice__tab-selected a {
  background: #FFFFFF !important;
  color: #222222 !important;
}

.invoice__tab-pay-status {
  font-weight: normal;
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  margin-top: -10px;
}

.invoice__search {
  margin-bottom: 30px;
  background: #F3F3F3;
  padding: 15px 10px;
  border-radius: 5px;
  display: flex;
}

.invoice__search-form {
  width: auto;
  border-radius: 5px;
  width: 43%;
}

.invoice__search-button {
  width: 60px;
  border-radius: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 10px 0;
  margin-left: 5px;
}

.invoice__search-label {
  width: 20px;
  display: grid;
  place-items: center;
}

.invoice__list {
  border-top: 1px solid #E3E3E3;
  padding: 10px 0;
}
.invoice__list:last-child {
  border-bottom: 1px solid #E3E3E3;
}

.invoice__list-date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.invoice__list-date strong {
  font-weight: bold;
}

.invoice__list-download {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 8px;
}

.invoice__list-supplier {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: -5px;
}

.invoice__list-price {
  float: right;
  margin-top: -18px;
}

.invoice__list-check {
  height: 86px;
  margin: -10px 10px 0 0;
}

.invoice__select {
  margin-bottom: 20px;
  padding-left: 5px;
}

.settings__box {
  margin: 30px 0;
}
.settings__box p {
  line-height: 1.8;
}

.settings__buttonarea {
  margin: 30px 0;
}
.settings__buttonarea a {
  width: calc( 100% - 20px );
}

.settings__title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 30px 0 10px;
}

.settings__subtitle {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 20px 0 10px;
}

.settings__item-title {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 20px 0 10px;
}

.settings__input {
  width: 100%;
}

.settings__form-label {
  display: inline-block;
  margin-right: 15px;
}

.settings__mail {
  border-bottom: 1px solid #E3E3E3;
}

.settings__mail-list {
  border-top: 1px solid #E3E3E3;
  padding: 10px 0;
  overflow: hidden;
}

.settings__mail-list-name {
  float: left;
  margin-top: 5px;
}

.settings__mail-list-button {
  padding: 8px 15px;
  width: auto;
  font-size: 13px;
  font-size: 1.3rem;
  margin-left: 5px;
  float: right;
}

.clndr {
  padding: 10px 0 20px;
}
.clndr .clndr-controls {
  display: flex;
  margin-bottom: 20px;
  height: 20px;
  overflow: hidden;
}
.clndr .clndr-control-button {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #88AA2E;
  font-size: 14px;
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
}
.clndr .clndr-previous-button {
  visibility: hidden;
  display: inline;
}
.clndr .clndr-previous-button:before {
  visibility: visible;
  content: "\f053";
  display: block;
}
.clndr .clndr-next-button {
  visibility: hidden;
  display: inline;
}
.clndr .clndr-next-button:before {
  font-size: 14px;
  font-size: 1.4rem;
  visibility: visible;
  content: "\f054";
  display: block;
}
.clndr .month {
  flex-grow: 1;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.clndr .clndr-table {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.clndr .header-days {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}
.clndr .header-day {
  padding-bottom: 10px;
}
.clndr .day-contents {
  height: calc( 100vw / 7 - 16px );
  max-height: 73px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 5px;
  border: 2px solid #FFFFFF;
}
.clndr .past {
  color: #999999;
}
.clndr .last-month, .clndr .next-month {
  color: #F3F3F3;
}
.clndr .today {
  font-weight: bold;
}
.clndr .today .day-contents {
  color: #ED4E1C !important;
}
.clndr .delivery {
  border: 2px solid #88AA2E;
}
.clndr .order {
  border: 2px solid #88AA2E;
  background: #88AA2E;
  color: #FFFFFF;
}

.clndr__notes {
  border: 1px solid #E3E3E3;
  border-radius: 3px;
  padding: 10px 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.clndr__notes-delivery {
  padding-left: 30px;
  margin-bottom: 10px;
}
.clndr__notes-delivery:before {
  position: absolute;
  left: 22px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #88AA2E;
}

.clndr__notes-order {
  padding-left: 30px;
  margin-bottom: 10px;
}
.clndr__notes-order:before {
  position: absolute;
  left: 22px;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #88AA2E;
  border-radius: 50%;
}

.ui-datepicker {
  border: 1px solid #E3E3E3;
  background: #FFFFFF;
  width: 280px;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.ui-datepicker-header {
  display: flex;
  margin: 10px 0 20px;
}

.ui-datepicker-title {
  order: 2;
  font-size: 16px;
  font-size: 1.6rem;
  flex-grow: 1;
}

.ui-datepicker-prev {
  order: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #88AA2E;
  font-size: 14px;
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
  visibility: hidden;
  display: inline;
}
.ui-datepicker-prev:before {
  visibility: visible;
  content: "\f053";
  display: block;
}

.ui-datepicker-next {
  order: 3;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #88AA2E;
  font-size: 14px;
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
  visibility: hidden;
  display: inline;
}
.ui-datepicker-next:before {
  font-size: 14px;
  font-size: 1.4rem;
  visibility: visible;
  content: "\f054";
  display: block;
}

.ui-icon {
  display: none;
}

.ui-datepicker-calendar {
  width: 100%;
}
.ui-datepicker-calendar td {
  height: 40px;
  font-size: 16px;
  font-size: 1.6rem;
  vertical-align: middle;
}
.ui-datepicker-calendar td a {
  color: #222222;
}
.ui-datepicker-calendar thead {
  font-size: 12px;
  font-size: 1.2rem;
}

.notification__list {
  position: relative;
}
.notification__list a {
  display: block;
  padding: 10px 10px 0;
}
.notification__list:after {
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #88AA2E;
  content: "\f054";
  position: absolute;
  top: calc( 50% - 9px );
  right: 15px;
}

.notification__list-unread {
  background: #E4F0B7;
}

.notification__list-content {
  color: #222222;
  font-size: 16px;
  font-size: 1.6rem;
  height: 60px;
  overflow: hidden;
  margin-bottom: 5px;
  padding-right: 20px;
}
.notification__list-content strong {
  font-weight: bold;
}

.notification__list-date {
  color: #999999;
  font-size: 12px;
  font-size: 1.2rem;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 10px;
}

.popup {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc( 100vh - 56px );
  padding-top: 56px;
  background-color: #FFFFFF;
}

.popup__toggle {
  display: block;
  z-index: 10;
  padding: 0 15px 0 10px;
  position: absolute;
  top: 15px;
  right: 0;
}

.popup__menu-icon {
  display: block;
  position: relative;
  float: right;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.popup__menu-icon > span {
  display: block;
  position: absolute;
  top: 55%;
  width: 100%;
  height: 0.3em;
  border-radius: 2px;
  margin-top: -2px;
  background-color: #222222;
}

.popup__menu-icon > span:before, .popup__menu-icon > span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-color: #222222;
}

.popup__toggle .popup__menu-icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup__toggle span,
.popup__toggle span:before,
.popup__toggle span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #222222;
}

.popup__left-menu {
  display: block;
  z-index: 10;
  padding: 0 15px 0 20px;
  position: absolute;
  top: 18px;
  left: 0;
}

.popup__container {
  height: calc( 100vh - 56px );
  overflow: scroll;
  border-top: 1px solid #E3E3E3;
}

.popup__farmer .disabled {
  opacity: 0.5;
  pointer-events: none!important;
  touch-action: none!important;
  background-color: rgba(0,0,0,0.2);
}

.popup__date .btn,
.popup__farmer .btn {
  outline: none;
  display: inline-block;
  color: #fff;
  background: #535353;
  font-weight: bold;
  line-height: 2;
  padding: 0 1em;
  border-radius: 0.4em;
}

.popup__farmer-title {
  padding: 4px 20px;
  color: #88aa2e;
}

.popup__farmer-container {
  padding: 4px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.popup__farmer-item {
  margin: 4px;
  padding: 2px 8px;
  border: solid 1px #ddd;
  border-radius: 6px;
  width: auto;
  cursor: pointer;
}

.popup__farmer-item.popup__farmer-item-inactive {
  display: none!important;
}

.popup__farmer-item.popup__farmer-item-selected {
  background-color: #e4f0b7;
  border: solid 1px #88aa2e;
}

.popup__farmer-decision {
  margin-right: 20px;
  text-align: right;
}

.popup__farmer-decision .btn {
  background-color: #7A9D1F;
}

.popup__farmer-status-text {
  display: inline-block;
  font-weight: 700;
  margin-right: 1em;
}

.popup__farmer-divider {
  background-color: transparent;
  display: block;
  height: .1rem;
  border-width: 0;
  border-top: .1rem solid #e3e3e3;
  line-height: 1.35;
  margin: 1.3rem 0;
}

.modal {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
}

.modal__box {
  position: relative;
  width: calc( 100% - 100px );
  background: #FFFFFF;
  margin-left: 20px;
  margin-right: 20px;
  padding: 60px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .modal__box {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.modal__box-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.modal__box-content {
  margin-top: 20px;
  text-align: center;
}

.modal__box-textarea {
  margin-top: 20px;
}

.modal__box-buttonarea {
  text-align: center;
  margin-top: 20px;
}

.modal__box-button {
  display: block;
  width: 300px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .modal__box-button {
    width: calc( 100% - 30px );
  }
}

.modal__button-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 34px;
  font-size: 3.4rem;
  color: #D3D3D3;
}

/* 20221007 Carousels */

.top__item_carousel {
  position: relative;
}

.top__item_carousel .common__title {
  margin-bottom: 5px;
}

.top__item_carousel .top__item {
  width: auto;
  overflow: auto;
  white-space: nowrap;
  padding: 0.5em 0 1em;
  box-sizing: border-box;
}

.top__item_carousel .top__item-list {
  position: relative;
  display: inline-block;
  float: none;
  width: calc(40% - 1em);
  margin: 20px 0 0 0;
  white-space: normal;
  box-sizing: border-box;
  vertical-align: top;
}

.top__item_carousel .top__item-list + .top__item-list {
  margin-left: 0.5em;
}

.top__item_carousel + .top__more-link {
  margin: 1em 0 0;
}

.top__item_carousel .top__item-title {
  line-height: 20px;
  height: 60px;
}

.top__item_carousel .top__item-producer,
.top__item_carousel .top__item-country {
  line-height: 15px;
  height: 30px;
  font-size: 1.2rem;
}

.top__item-info {
  position: absolute;
  top: 1em;
  left: 0;
  width: 100%;
  z-index: 2;
}

.top__item_carousel .top__item-info {
  top: -25px;
}

.top__item-flashsale {
  display: inline-block;
  margin: 0 4px 4px 0;
  padding: 2px 4px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: yellow;
  color: #000;
  font-weight: 700;
  float: left;
}

.top__item-flashsale::before,
.top__item-flashsale::after {
  display: inline;
  content: " \f0e7 ";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.bgc__dddddd {
    background-color: #DDDDDD;
}

/* delivery date icons */
.delivery_date_icon {
    display: inline-block;
    margin: 4px 0 0 0;
    padding: 3px 4px 1px 4px;
}

.delivery_date_icon.delivery_date_icon_disabled {
    color: #888888;
    background-color: #f3f3f3;
    font-weight: lighter;
}
.delivery_date_icon.delivery_date_icon_enabled {
    color: #ffffff;
    background-color: #5a92af;
    font-weight: bold;
}
.delivery_date_icon.delivery_date_icon_first {
    border-radius: 2px 0 0 2px;
}
.delivery_date_icon.delivery_date_icon_last {
    border-radius: 0 2px 2px 0;
}

.popup__farmer-all-btn {
    color: #222222 !important;
}

.search__form-keyword {
  width: 100% !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  padding: 6px 15px !important;
}

.header__select {
  width: 100%;
  max-width: 130px;
  min-width: 100px;
  height: 36px;
  max-height: 36px;
  min-height: 36px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  
  border: 1px solid #E3E3E3;
  border-left-width: 0;
  border-right-width: 0;
  font-size: 1.4rem;
}

.header__select:before {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
}

.header_search-p_origin {
  width: 100%;
  height: 36px;
  max-height: 36px;
  min-height: 36px;
  padding: 6px;

  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
}

.search__form-icon {
  width: 40px !important;
  min-width: 40px;
  border: 1px solid #E3E3E3;
  border-right-width: 0;
  border-top-left-radius: 100px; border-bottom-left-radius: 100px;
  height: 36px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  cursor: pointer;
}
