html {
  scroll-padding-top: 60px;
}

body {
  padding-top: 57px;
}

/** search-box **/
.fade-up-sb {
  transform: translateY(-200px);
  transition: all .5s ease-out;
}
.sb {
  position: fixed;
  z-index: 9999;
  bottom: -135px;
  left:0;
  width: 100%;
  height: 80px;
  opacity:1;
  background: #fff;
  transition: all .5s ease-out;
}
.sb-inner  {
  position:relative;
  top:0;
  left:0;
  background: #fff;
  width: 100%;
  box-shadow: 0px 1px 30px -3px rgba(0,0,0, .2);
}

.close-sb {
  width: 50px;
  height: 50px;
  background: #191919;
  position: absolute;
  top: -50px;
  right: 0px;
  float: right;
}
.close-sb img {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  padding: 5px;
}
#form2{
  position:relative;
  width: 100%;
  height: 60px;
  margin-bottom:0px;
  background: #fff;
}
#sbox2{
height:40px;
 width: calc(100% - 75px);
padding:0 0 0 25px;
position:absolute;
left:25px;
top: 20px;
border-radius:2px;
outline:0;
background:#eee;
-webkit-appearance: none;
  border:none;
}
#sbtn2{
height:50px;
position:absolute;
 right:25px;/*アイコン左右の位置調整*/
top: 15px;
background:none;
color:#2d2d2d;
border:none;
font-size:15px;/*アイコンサイズ*/
}
#sbtn5:hover{
color:#7fbfff;
}
.ph::placeholder {
  font-size: 12px;
}

@charset "utf-8";
* {

}
html, body {
  height: 100%;
}
#top {
  height: 100%;
}
/** ↓全体↓ **/
.wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display:block;
}

p {
  margin: 0;
}

#inner {
  width: 100%;
  margin: 0 auto;
}
.inner-25 {
  padding: 0 25px;
}
.section-title {
  text-align: center;
  font-size: 23px;
  padding: 0;
  letter-spacing: 2px;
  font-weight: lighter;
  font-family: 'Roboto';
  color: #191919;
  margin:0;
  line-height: 23px;
  height: 23px;
}
.section-sub-title {
  text-align: center;
  font-size: 12px;
  padding: 0 0 15px 0;
  letter-spacing: px;
  margin:0;
  font-weight: 100;
  font-family: "Noto Sans JP";
}
.bold {
  font-weight: bold;
}
.lighter {
  font-weight: lighter;
}
.roboto {
  font-family: 'Roboto', sans-serif;
}
.sans {
  font-family: sans-serif;
}
.lex {
  font-family: 'Lexend', sans-serif;
}
.noto {
  font-family: "Noto Sans JP";
}
.lato {
  font-family: 'Lato', sans-serif;
}
/** ↑共通↑ **/

/** ↓header↓ **/
#header {
  width: 100%;
  height: 50px;
  top: 0px;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  position: fixed;
}

.header-inner {
  position: relative;
  top: 0;
}

/** Logo **/
.header-logo a{
  height: 50px;
  text-align: center;
  color : #fff;
}

.header-logo img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  width: 200px;
  height: 50px;
  text-align: center;
  z-index: 99999;
  object-fit: cover;
}
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
/** Bar **/

#menu-bar {
  z-index:99999;
  background-color: #fff;
  position: fixed;
  left: 0;
  opacity: 1;
  bottom: 0px;
  width: 100%;
  box-shadow: 0px 1px 30px -3px rgba(0,0,0, .2);
  transition-duration: .5s;
  backdrop-filter: blur(12px);
}
.menu-bar-inner {
  margin: 10px 0 15px 0;
  position: relative;
  top:0;
}
.global-nav {

}
.nav-list {
  /* display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse; */
  display: flex;
  padding: 0;
  list-style: none;
  text-align: center;
}
.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin:10px 0; */
  flex: 1;
}
.nav-border {
  border-right: solid 0.7px #2d2d2d;
}
.nav-border:last-child {
  border-right: transparent;
}
.nav-item a {
  text-decoration: none;
}
.nav-item img{
  display: block;
  margin: 0 auto;
  padding-bottom: 3px;
}
.nav-item span {
  display: block;
  font-size: 10px;
  color: black;
  letter-spacing: 1.5px;
  padding-top: 2px;
  padding-left: 2px;
}

/** Modal **/
.modal {
  position: absolute;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
    pointer-events: none;
  transition: all 0.5s ease-out;
}
.modal-inner {
  padding-top: 75px;
}
.modal-item-inner {
  margin:0 25px;
  z-index: 999;
  background: #fff;
  height: 100%;
}
.modal-logo img{
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform : translate(-50%,0%);
  transform : translate(-50%,0%);
  width: 200px;
  height: 50px;
  text-align: center;
  z-index: 99999;
  object-fit: cover;
}
/** Modal 動き**/
.fade-up {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50px);
  transition: all 0.5s ease-out;
}

.display-none {
  display: none;
  position:absolute;
  top:0;
  transition: all 0.5s ease-out;
}
.bar-down {
  transform: translateY(70px);
  transition: all 0.5s ease-out;
}

.close-modal {
  width: 50px;
  height: 50px;
  background: #191919;
  position: absolute;
  top: 0;
  right: 0;
  float: right;
}
.close-modal img {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  width: 40px;
  padding: 5px;
}
.modal-item {
  width: 100%;
  padding: 8px 0 12px 0;
  border-bottom:1px solid #ebebeb;
}
.modal-item a {
  color: #2d2d2d;
  font-size: 12px;
  letter-spacing: 1px;
  padding-left: 25px;
  text-transform: uppercase;

}
.modal-item-cate {
  letter-spacing: 1px;
  color: black;
  padding: 4px 0 5px 0;
}


.modal_wrap {
  position:absolute;
  top:0;
  left: 0;
  z-index:99899;
}
.cb {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  align-self: flex-start;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4em;
  transform: translateY(0px);
  transition: 0.5s;
  position:absolute;
  bottom: 0;
  left: 0;
  z-index:999999;
}
.close_button {
  position: absolute;
  top: -40px;
  left: calc(50% - 25px);
  transform: translateX(0%);
  -webkit- transform: translateX(0%);
  transform: translateY(0%);
  -webkit- transform: translateY(0%);

}
.close-btn {
  width: 40px;
}
.modal-frame {
  position:relative;
  top:0;
  left: 0;

}
.modal-white {
  padding: 25px;
  position:relative;
  bottom:0;
  left: 0;
  background: #fdfdff;
  z-index:99998;
}
.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: translateY(-65px);
}
/** footer **/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer {
  position: relative;
  background-color: #d3d3d3	;
  z-index: 999;
  padding-bottom: 65px;
}

#footer .footer-logo {
  text-align: center;
  padding: 0;
  margin: 0;
}

#footer .footer-logo a {
  display: inline-block;
}

#footer .footer-logo img {
  width: 200px;
  height: 50px;
  object-fit: cover;
  padding-top:5px;
}
.footer-nav-title {
  display: block;
  padding: 10px 0;
  letter-spacing: .5px;
  color: #fafafa;
  font-size: 15px;
  font-weight: 600;
}
.footer-nav {
  padding: 0 25px;
}

.footer-nav a,.footer-nav a {
  display: block;
  padding: 8px 0;
  letter-spacing: .5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.cpt {
  font-size: 10px;
  letter-spacing: 1px;
  text-align:center;
  padding: 5px 0;
  color: #fff;
}



/** banner-section**/
#banner-section{
  background: #fdfdff;
}
.category-inner {
  padding: 20px 25px 10px;
}
.category-item {
  position: relative;
  padding: ;
  color:  #2d2d2d;
  margin:  8px 0;
  width: calc(50% - 10px);
  background: #fdfdff;
  box-sizing: border-box;
}
.flex-item {
  position: relative;
  padding: 0px 0px 45px 0px;
  color:  #2d2d2d;
  margin:  10px 0;
  width: calc(50% - 10px);
  background: #fff;
  box-sizing: border-box;
}
.flex-item-inner {
  padding: 0 10px;
}
.flex-item:nth-child(odd) {
  margin-right: 20px;
}
/*-------------------------------------------
デフォルトスタイルをリセット
-------------------------------------------*/

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}
a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

button, html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}


button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td, th {
  padding: 0;
}

/*-------------------------------------------
共通
-------------------------------------------*/
body {
  background-color: #fff;
  color: #212121;
  font-size: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
}

a {
  text-decoration: none;
  color: #2b98f2;
}
a:active {
  background: rgba(0, 0, 0, 0.1);
}

p {
  line-height: 1.5rem;
  margin: 0;
}



img {
  max-width: 100%;
  height: auto;
}

.u-wrap {
  text-align: center;
  vertical-align: middle;
  zoom: 1;
}
.u-wrap img {
  vertical-align: bottom;
}

.u-cf:before {
  content: "";
  display: table;
}
.u-cf:after {
  content: "";
  display: table;
  clear: both;
}

/*
 * layout
 */
.outer {
  overflow-x: hidden;
  max-width: 100%;
  height: auto;
}

.wrapper {
  position: relative;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.section {

}

.section__inner {
  padding: 25px;
}

/* ツールバー */
.toolbar {
  border-bottom: solid 1px #e0e0e0;
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

.toolbar__inner {
  margin: 0;
  padding: 0;
}

.toolbar__item {
  list-style: none;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.toolbar__item a {
  color: #212121;
  padding: 0 20px;
  height: 60px;
  display: table;
}
.toolbar__item a .u-wrap {
  display: table-cell;
}
.toolbar__item a i {
  vertical-align: middle;
}

.toolbar__item--menu {
  float: left;
}
.toolbar__item--menu span {
  margin: 0 0 0 8px;
  vertical-align: middle;
  font-size: 85.71429%;
  font-weight: bold;
}

.toolbar__item--cart {
  float: right;
}
.toolbar__item--cart .toolbar__item__count {
  font-weight: bold;
  margin: 0 0 0 4px;
  vertical-align: middle;
}
.toolbar__item--cart .toolbar__item__count--in {
  color: #ff5722;
}

/* ヘッダー */
.section--shopname {
  padding-top: 65px;
}

.shopname {
  text-align: center;
  margin: 0;
  font-size: 114.28571%;
}
.shopname a {
  font-weight: bold;
  color: #212121;
  display: block;
}

/* フッター */

.linklist {
  padding: 0;
  margin: 0;
}

.linklist__item {
  border-bottom: solid 1px #e0e0e0;
  list-style: none;
}
.linklist__item a {
  display: table;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 20px;
  color: #212121;
}
.linklist__item a span {
  display: table-cell;
  vertical-align: middle;
}

.linklist__item--point {
  background: #212121;
}
.linklist__item--point a {
  color: #fff;
}

.linklist__item__text {
  width: 80%;
  height: auto;
}

.linklist__item__icon {
  width: 10%;
  height: auto;
  text-align: right;
}

.section--sns {
  text-align: center;
}

.snslink {
  text-align: center;
  margin: 0 3px 0;
  color: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-table;
  width: 44px;
  height: 44px;
}
.snslink i {
  display: table-cell;
  vertical-align: middle;
}

.snslink--twitter {
  background: #00acee;
}

.snslink--facebook {
  background: #3b579d;
}

.snslink--instagram {
  background: #393939;
}

.snslink--google {
  background: #d95333;
}

.snslink--pinterest {
  background: #c9232d;
}

.section--address {
  text-align: center;
}

.copyright {
  margin: 0 0 20px;
  font-size: 85.71429%;
}

.powered {
  font-size: 85.71429%;
  color: #212121;
}
.powered img {
  width: 190px;
  margin: 0 0 -3px 3px;
}

/* ドロワー */
.drawer.open {
  left: 0;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 280px;
  height: 100%;
  background: #fff;
  color: #212121;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.drawer__item--close {
  padding: 20px;
  text-align: right;
}
.drawer__item--close a {
  color: #212121;
}

.drawer__item {
  border-bottom: 1px solid #e0e0e0;
}

.drawer__item__name {
  font-size: 100%;
  font-weight: normal;
  display: table;
  line-height: 1;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 30px 20px;
  color: #212121;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.drawer__item__name__text {
  width: 70%;
  vertical-align: middle;
}

.drawer__item__name__icon--left {
  width: 15%;
  display: table-cell;
  vertical-align: middle;
}

.drawer__item__name__icon--right {
  width: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.drawer__item--accordion ul {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}
.drawer__item--accordion .linklist__item {
  border: none;
}
.drawer__item--accordion .linklist__item a {
  padding: 10px 20px;
}

.u-ac--active {
  border-bottom: 1px solid #e0e0e0;
}

/*
 * top
 */
.u-hidden {
  display: none !important;
}
.moreinfo {
  overflow: hidden;
  max-height: 70px;
}
.u-moreinfo--active {
  max-height: none;
}
.section--info .button--more {
  margin: 20px auto 0;
}
.section--info .button--more span {
  margin: 0 5px 0 0;
}

/*
 * product
 */
.linklist--breadcrumb .linklist__item__icon {
  width: 6%;
  text-align: left;
}

.prices {
  margin: 0 0 20px;
}

.price {
  font-size: 128.57143%;
  font-weight: bold;
}

.price--regular {
  text-decoration: line-through;
  color: #aaa;
}

.price--rate {
  color: #f44336;
}

.taglist {
  margin: 0 0 20px;
}
.taglist p {
  margin: 0 0 10px;
}
.taglist .button--tag {
  margin: 0 6px 10px 0;
}

.description {
  margin: 0 0 20px;
}

.buy__inner {
  margin: 0 0 20px;
}

.stock_error {
  font-weight: bold;
  text-align: center;
  color: #f44336;
}

.table {
  width: 100%;
  height: auto;
}

.table--bordered {
  font-size: 85.71429%;
  border-top: 1px solid #ddd;
}
.table--bordered th {
  font-weight: normal;
  width: 50%;
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.table--bordered td {
  width: 50%;
  text-align: center;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
}

.otherlist {
  padding: 0;
  list-style: none;
}

.share {
  width: 88px;
  float: left;
  text-align: center;
  margin: 10px 0 0;
}

.imagelist.slick-slider {
  margin: 0 0 50px;
}
.imagelist.slick-slider .slick-slide {
  padding: 0 40px;
  text-align: center;
}

.u-oneimage {
  padding: 0 !important;
}

/*
 * product-list
 */
.boxlist {
  list-style: none;
  padding: 0 10px 20px;
  margin: 0;
}

.box {
  display: block;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
}
.box .box__inner {
  display: block;
  padding: 10px 10px 6px;
  word-wrap: break-word;
}
.box .box__image {
  display: block;
  margin: 0px;
  text-align: center;
  position: relative
}
.box .box__image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.box .box__image--rank-1:before {
  border: 10px solid transparent;
  border-top: 10px solid #ffeb3b;
  border-left: 10px solid #ffeb3b;
}
.box .box__image--rank-2:before {
  border: 10px solid transparent;
  border-top: 10px solid #e0e0e0;
  border-left: 10px solid #e0e0e0;
}
.box .box__image--rank-3:before {
  border: 10px solid transparent;
  border-top: 10px solid #8d6e63;
  border-left: 10px solid #8d6e63;
}
.box .box__image--rank-none:before {
  border: none;
}
.box .box__name {
  margin: 0 0 5px;
  color: #212121;
}
.box .box__price {
  font-weight: bold;
  margin: 0 0 5px;
  color: #212121;
}
.box .box-price__soldout {
  margin: 0 0 5px;
  color: #f44336;
}
.box .box__caption {
  font-size: 85.71429%;
  color: #999;
  line-height: 1rem;
}

.u-tile:nth-child(odd) {
  clear: left;
}

.section--slide h2, .section--main h2 {
  padding: 20px 20px 0;
}

.section--together .box {
  width: 33.33%;
}

.slidelist {
  margin: -10px 0 10px !important;
}
.slidelist .slick {
  padding: 0;
}
.slidelist .slick-list {
  padding: 0 10px;
}
.slidelist .slick-slide {
  padding: 0;
}
.slidelist .slide__inner {
  display: block;
  padding: 10px 10px 5px;
  word-wrap: break-word;
}
.slidelist .slide__image {
  display: block;
  margin: 0 0 5px;
  text-align: center;
  position: relative;
}
.slidelist .slide__image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.slidelist .slide__image--rank-1:before {
  border: 8px solid transparent;
  border-top: 8px solid #ffeb3b;
  border-left: 8px solid #ffeb3b;
}
.slidelist .slide__image--rank-2:before {
  border: 8px solid transparent;
  border-top: 8px solid #e0e0e0;
  border-left: 8px solid #e0e0e0;
}
.slidelist .slide__image--rank-3:before {
  border: 8px solid transparent;
  border-top: 8px solid #8d6e63;
  border-left: 8px solid #8d6e63;
}
.slidelist .slide__image--rank-none:before {
  border: none;
}
.slidelist .slide__name {
  font-size: 85.71429%;
  line-height: 1.2rem;
  margin: 0 0 5px;
  color: #212121;
}
.slidelist .slide__price {
  font-size: 85.71429%;
  line-height: 1.2rem;
  font-weight: bold;
  margin: 0 0 5px;
  color: #212121;
}
.slidelist .slide__price--soldout {
  color: #f44336;
}

.slick-list {
  padding: 0 10px;
}


.sort {
  text-align: center;
}

.pager {
  padding: 0px;
}

.rest {
  text-align: center;
  margin: 20px 0 35px;
}
.rest span {
  font-size: 114.28571%;
  font-weight: bold;
}

.pager__prev {
  float: left;
  line-height: 1;
  margin: 0px;
}
.pager__next {
  float: right;
  line-height: 1;
  margin: 0px;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}

.subs_title {
  padding: 0 20px 20px;
  border-bottom: solid 1px #e0e0e0;
}

.section--list .boxlist {
  padding: 10px 10px 0;
  margin: 0;
}

.freespace01 {
  margin: 0 0 20px;
  font-size: 85.71429%;
}

.freespace02 {
  font-size: 85.71429%;
}

/*
 * 特商法・その他
 */
.deflist {
  margin: 0;
}

.deflist__title h3 {
  margin: 10px 0 2px;
}

.deflist__body {
  margin: 0 0 15px;
  font-size: 85.71429%;
}

.section--privacy p {
  font-size: 85.71429%;
}

.section--search .button {
  float: right;
}

.section--push ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 85.71429%;
}

/*
 * パーツ
 */
.slick-slide img {
  margin: 0 auto;
}

.button {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  border: none;
  display: inline-block;
}



.button--orange {
  background: #ff5722;
  color: #fff;
}

.button--line {
  border: 1px solid #2d2d2d;
  color: #2d2d2d;

}

.button--more {
  width: 50%;
  display: block;
  margin: 0 auto 10px;
  padding: 5px;
}

.button--sort {
  font-size: 71.42857%;
  padding: 5px 8px;
  width: 30%;
}

.button--tag {
  font-size: 71.42857%;
  padding: 5px 8px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.button--small {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 100%;
  padding: 10px 14px;
  width: 25%;
  line-height: 1;
    border: 1px solid #2d2d2d;
  color: #2d2d2d;
}

.button--medium {
  font-size: 100%;
  padding: 13px 0;
  margin: 10px 0;
  width: 100%;
  line-height: 1;
    border: 1px solid #2d2d2d;
  color: #2d2d2d;
}

.button--large {
  font-size: 114.28571%;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
}
.button--disabled {
  border: 1px solid #b4b4b4;
  color: #b4b4b4;

}
input[type="text"].keyword {
  font-size: 85.71429%;
  background: #fff;
  color: #212121;
  padding: 0 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="text"].keyword--small {
  width: 68%;
  height: 44px;
}
input[type="number"].buy__num, input[type="text"].buy__num {
  padding: 8px 10px;
  width: 15%;
}
input[type="text"].buy__name-title {
  padding: 8px 10px;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pulldown {
  width: 100%;
  height: 44px;
  background: #fff;
  margin: 0 0 15px;
  border: 1px solid #bdbdbd;
}

/*
 * モーダル
 */
.modal__content {
  position: absolute;
  z-index: 9999;
  display: none;
  width: 75%;
  margin: 0;
  padding: 10px 20px;
  background: #fff;
}

.overlay {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.modal__close {
  font-size: 114.28571%;
  display: block;
  width: 100%;
  text-align: right;
  color: #212121;
}
/** 強制css **/
.p-shop__title {
  color: black;
}

/**newCSS**/

#contents {
  display: block !important;
}

/* #menu-bar {
position: initial;
} */

.menu-bar-inner {
  margin: 0;
	 padding: 10px 0 15px 0;
    position: fixed;
  background-color: #d3d3d3;
  top: 0;
  z-index: 9999;
}

/* body {
padding-top:40px;
} */

#header {
top: 60px;
}

.modal {
  top: -100px;
}
.modal-item-inner {
  margin: 0;
}
.menu-bar-inner {
    top: auto;
    z-index: 9999;
    bottom: 0;
    width: 100%;
}
.l-header-search__input input {
    box-sizing: border-box;
    padding-right: 60px;
    width: 80%;
    height: 40px;
    border: none;
    background: transparent;
}
.l-header-search__contents.js-mega-menu-contents{
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
  z-index:9999999999;
}
.l-header-search__input {
    flex: 1;
    border-bottom: 1px solid #7d7d7d;
}
#header {
    top: 40px;
}
.close-modal {
    top: 50px;
}
.modal {
    top: 50px !important;
}


/* 20240404追記 */
header.h_new {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
}
header.h_new .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
}
header.h_new .wrapper .h_logo {
  max-width: 180px;
}
header.h_new .wrapper .h_logo a {
  display: block;
}
header.h_new .wrapper .nav_box {
  display: flex;
}
header.h_new .wrapper .nav_box .general_box {
  margin-right: 18px;
}
header.h_new .wrapper .nav_box .general_box .icon {
  max-width: 20px;
  margin: auto;
}
header.h_new .wrapper .nav_box .general_box.cart_box .icon {
  max-width: 22px;
}
header.h_new .wrapper .nav_box .general_box.search_box .icon {
  max-width: 19px;
}
header.h_new .wrapper .nav_box .general_box .login_text {
  font-size: 10px;
  color: #747474;
  line-height: 1;
}
header.h_new .wrapper .nav_box .general_box.open-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}
header.h_new .wrapper .nav_box .general_box.open-modal span {
  display: block;
  width: 25px;
  height: 2.8px;
  border-radius: 30px;
  background-color: #747474;
}
header.h_new .wrapper .nav_box .general_box.open-modal span:nth-child(2) {
  margin: 4px 0;
}
.l-header-search__contents.js-mega-menu-contents {
  display: none;
  top: 55px;
}
.l-header-search__contents.js-mega-menu-contents.active {
  display: block;
}
.chat_floating {
  position: fixed;
  bottom: 60px;
  right: 5px;
  max-width: 85px;
}
.category_accordion,
.group_accordion {
  padding: 8px 0 12px;
  border-bottom: 1px solid #ebebeb;
}
.category_accordion .item-search,
.group_accordion .item-search {
  display: none;
  margin-top: 12px;
  border-top: 1px solid #ebebeb;
  border-bottom: transparent;
}
.category_accordion .category_accordion_btn,
.group_accordion .group_accordion_btn {
  font-size: 12px;
  padding-left: 25px;
}

.sp_menu.modal {
position: fixed;
}