@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
.admin-bg-color {
  background: #000000;
}

.admin-color {
  color: #000000;
}

.admin-border-color {
  border-color: #000000;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #414141;
  min-height: 100vh;
}

ul {
  list-style: none;
}

.is-block {
  display: block;
}

.is-hide {
  display: none;
}

.f-s-16 {
  font-size: 16px;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.fixed-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.text-main-color {
  color: #f59e0b;
}

.bg-main-color {
  background: #f59e0b;
}

.bg-main-color2 {
  background: #F2F5F3;
}

.user-img-wrap {
  position: relative;
}

.thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.mypage-wrap {
  background: #fff;
  text-align: center;
}

.toggle-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.toggle-label {
  width: 75px;
  height: 42px;
  background: #ccc;
  position: relative;
  display: inline-block;
  border-radius: 46px;
  transition: 0.4s;
  box-sizing: border-box;
}
.toggle-label:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.toggle-input:checked + label {
  background-color: #4BD865;
}
.toggle-input:checked + label:after {
  left: 40px;
}

.toggle-switch {
  position: relative;
  width: 75px;
  height: 42px;
  margin: auto;
}

.twitter_icon {
  background: #1da1f2;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
  display: block;
}

.cart-flow {
  position: relative;
  display: inline-block;
  margin: 0 15px 4px 0;
  padding: 0 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  color: #555;
  background: #e5e7eb;
}
.cart-flow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 15px solid #e5e7eb;
}

.cart-active {
  position: relative;
  display: inline-block;
  margin: 0 15px 4px 0;
  padding: 0 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  color: #555;
  background: #f59e0b;
  color: #fff;
}
.cart-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -20px;
  border: 20px solid transparent;
  border-left: 15px solid #f59e0b;
}

.main-preview-thumbnail-video video, .main-preview-thumbnail-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: relative;
}

.swiper-pagination-bullet {
  background-color: #f59e0b;
  margin: 0 4px;
}

.small-main-btn {
  background: #f59e0b;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 4px;
}
.small-main-btn:hover:before {
  position: absolute;
  content: "";
  display: block;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.regular-main-btn {
  background: #f59e0b;
  color: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 4px;
}
.regular-main-btn:hover:before {
  position: absolute;
  content: "";
  display: block;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.disabled-small-main-btn {
  background: #F2F5F3;
  color: #555;
  padding: 6px 20px;
  cursor: not-allowed;
}

.small-sub-btn {
  background: #5A7C6D;
  color: #fff;
  padding: 6px 20px;
  position: relative;
  border-radius: 4px;
}
.small-sub-btn:hover:before {
  position: absolute;
  content: "";
  display: block;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.main-tag {
  background: #f59e0b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

.search-nav-content {
  position: fixed;
  top: 60px;
  background: #F2F5F3;
  width: 100%;
  left: 0;
}

.max-h-0 {
  max-height: 0;
}

.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border-color: #d2d6dc;
  border-width: 1px;
  border-radius: 0.375rem;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  font-size: [object Object];
  line-height: 1.5;
}

@media only screen and (min-width: 480px) {
  .xs-block {
    display: block;
  }
}
