@charset "UTF-8";

/*----------------------------------------*/
/* ↓↓↓↓↓ 共通部品 ↓↓↓↓↓ */
/*----------------------------------------*/
html, body {
  scroll-padding-top: 120px;
}
body{
  font-size:1.6rem;
}
h1 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  border-bottom: 3px solid #000;
  font-size: 3rem;
  margin-bottom:25px;
}
h3 {
  font-size: 32px;
  line-height: 1;
}
a{
  text-decoration: none;
}
.wrapper--1350 {
  position: relative;
  max-width: 1350px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.sp {
  display: none;

  @media only screen and (max-width: 768px){
    display: block;
  }
}
.pc {
  display: block;

  @media only screen and (max-width: 768px){
    display: none;
  }
}

/*--> タイトル部分の共通デザイン */
/* 緑文字、ドット下線 */
.title_basecolor_dot{
  font-size:2rem;
  margin-bottom:20px;
  font-weight:700;
  padding-bottom: 5px;
  border-bottom: 2px dotted var(--base-color);
  line-height:1.3;
}

/* 濃い灰色文字、緑下線 */
.title_gray_gl{
  color:#333;
  padding:8px;
  font-size: 1.8rem;
  margin-bottom:30px;
  font-weight: 700;
  border-bottom:1px solid var(--base-color);
  position: relative; /*positionをabsoluteに指定*/

  @media only screen and (max-width: 767px) {
    margin-bottom:15px;
  }

  &::after {
    position: absolute; /*positionをabsoluteに指定*/
    content: "";
    background-color: var(--base-color); /*下線の色*/
    width: 95px; /*線の幅*/
    height: 5px; /*線の太さ*/
    bottom: -1px; /*線のタテ位置*/
    left:0px;
  }
}

/*--> テキストの取り消し線 */
.text-through{
  position: relative;

  &:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
}

/*--> 色設定 */
:root {
  /* オレンジ系 */
  /* --base-color: #FF6928;
  --base-pale-color: #ff834d;
  --base-light-color: #fef1ea; */

  /* 赤茶 */
  /* --base-color: #851f24;
  --base-pale-color: #9b3134;
  --base-light-color: #f5e5e6; */

  /* 濃い緑 */
  /* --base-color: #167324;
  --base-pale-color: #289338;
  --base-light-color: #e8f7ea; */

  /* 明るい緑 */
  /* --base-color: #2EBA92;
  --base-pale-color: #58ccab;
  --base-light-color: #dff2ec; */

  /* 優しい青 */
  --base-color: #5390ff;
  --base-pale-color: #72a5ff; 
  --base-light-color: #eef4ff;
}

/*--> ラベル */
.label_wrap{
  display: flex;
  gap:5px;
  flex-wrap: wrap;
  margin-bottom:5px;
}
& *[class^="label_"]:not(*[class="label_wrap"]){
  font-size:1.2rem;
  padding:5px 8px !important;
  border-radius: 4px;
}
& .label_lightgreen{
  background-color: #83ce3a;
  color:#fff;
}
& .label_orange{
  background-color: #ff9100;
  color:#fff;
}
& .label_lightblue{
  background-color: #3cc9d3;
  color:#fff;
}
& .label_blue{
  background-color: #1832c7;
  color:#fff;
}
& .label_green{
  background-color: #508b41;
  color:#fff;
}
& .label_pink{
  background-color: #ff92cebd;
}


/*----------------------------------------*/
/* ヘッダー */
/*----------------------------------------*/
/*--> レイアウトボックスの指定 */
.header {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  z-index: 150;

  @media only screen and (max-width: 767px){
    margin-top:5px;
  }
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .5rem 0;
}
.header_left {
  display: flex;
  align-items: center;
  column-gap: 20px;
  
  @media only screen and (max-width: 959px) {
    column-gap: 10px;
  }
}
.header_right {
  margin-left: auto;
  
  & > div:first-child{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;;
  }
}
/*--> 文字サイズ */
.headerSize {
  display: flex;
  align-items: center;
  column-gap: 10px;

  @media only screen and (max-width: 959px) {
    display: none;
  }

  & p {
    font-size: 1.2rem;
  }

  & li{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 3px;
    color: #000;
    font-size: 1.4rem;
  }
  
  & li.active {
    background-color: var(--base-color);
    color: #fff;
  }
}
/*--> ハンバーガーメニュー */
.headerHumberger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 24px;
  height: 20px;

  @media only screen and (max-width: 959px) {
    display: flex;
  }
}
.headerHumberger span {
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 5px;
}
/*--> ヘッダーメニュー */
/* スマホ用 */
.headerNav_sp {
  position: fixed;
  top: 0;
  display: flex;
  align-items: flex-start;
  right: 100%;
  width: 80%;
  padding: 1rem;
  background-color: #fff;
  z-index: 1000;

  &.active {
    right: 20%;
    transition: .4s;

    & .headerNav_close {
      display: block;
    }

  }
  & ul {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    
    & li {
      position:relative;

      & a {
        box-sizing: border-box;
        display: block;
        padding: 1.5rem 1rem;
        background-size: 5px;
        border-bottom: 1px solid #DDDDDD;
        color: #000;
        font-size: 1.4rem;

        &::after{
          font-family: "Material Icons";
          position: absolute;
          right:5px;
          top: 50%;
          transform: translateY(-50%);
          content: "\e5df";
          font-size:2rem;
        }
      }
    }
  }
  
  & .headerNav_close{
    display: none;
    position:absolute;
    right:-50px;
    top:10px;
    font-size:3rem;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0009;
  z-index: 800;
  display:none;
  
  & .icon_close{
    font-size:3rem;
    position:absolute;
    right:30px;
    top:10px;
  }
}

/* PC用 */
.headerNav_pc{
  font-size:1.9rem;
  column-gap: 40px;
  height:60px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  border-bottom:1px solid #816C67;
  background-color: #F7F6F4;
  /* background-color: #F6EEDD; */
  padding-top:5px;
  padding-bottom:5px;
  
  @media only screen and (max-width: 959px) {
    column-gap: 30px;
  }
  @media only screen and (max-width: 768px){
    display:none;
  }
  & *[class^="icon_"] {
    border-radius: 30px;
    color:#816C67;
    padding-left:1.6em;

    &:hover{
      opacity:0.8;
    }
    &::before{
      color:#816C67;
      transform: scale(1.6);
    }
  }
}

/*--> ロゴ */
.headerLogo{
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;

  @media only screen and (max-width: 767px){
    margin-right: 10px;
  }
  @media only screen and (max-width: 480px){
    margin-right: 0px;
  }

  & img{
    display: block;
  }
  & .headerLogo_link {
    display: block;
    width: 120px;

    @media only screen and (max-width: 767px) {
          width: 80px;
    }
  }
}
/*--> 商品数 */
.headerCount{
  @media only screen and (max-width: 767px) {
    display: none;
  }

}
.headerCount_text {
  font-size: 1.5rem;

  & .text-red{
    font-size: 1.7rem;
  }
}
/*--> サイト概要 */
.headerDescription{
  display:flex;
  align-items: flex-end;

  @media only screen and (max-width: 767px) {
    display: none;
  }
  
}
.headerDescription_text {
  font-size: 1.3rem;

  @media only screen and (max-width: 1200px) {
    display: none;
  }

  & .text-blue{
    font-size: 1em;
    color:#387cc6;
  }
}
/*--> ログイン、ログアウト、マイページ */
.headerLogin{
  display:none;
}
.headerLogin.active{
  display:flex;
  column-gap: 20px;
}
.headerLogin form{
  padding:0px;
}
.headerLogin button{
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  padding: .5rem 1.25rem;
  border-radius: .3rem;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
  transition: .4s;

  @media only screen and (max-width: 768px) {
    flex-direction: column;
    padding: 0;
    color: #000;
    font-size: 1rem;
  }

  & *[class^="icon_"]{
    margin-right:5px;
    font-size: 1.3rem;
    
    @media only screen and (max-width: 768px) {
      color:#000;
      font-size: 1.2rem;
      padding-left:0px;
      height:50px;
      padding-top:33px;
      position:relative;
      margin-right:0px;

      &::before{
        left:50%;
        transform:translateX(-50%) scale(1);
        font-size:2.5em;
        top:-3px;
      }
    }
  }

}
#headerLogin button {
  background-color: var(--base-color);
  border: 1px solid var(--base-color);

  @media only screen and (max-width: 768px) {
    background-color: #fff;
    border: none;
  }
}
#headerLogout button {
  background-color: #aaa;
  border: 1px solid #aaa;

  @media only screen and (max-width: 768px) {
    background-color: #fff;
    border: none;
    font-size:1.2rem;
  }

  &:hover{
    opacity: .8;
  }
}
#headerUsername{
  text-align:right;
  font-size:1.4rem;
  margin-top:5px;

  @media only screen and (max-width: 480px) {
    font-size:1.3rem;
    white-space: nowrap;
  }

}

/*--> カート */
.headerCart {
  @media only screen and (max-width: 768px) {
    flex-direction: column;
    padding: 0;
    color: #000;
    font-size: 1rem;
  }
  & *[class^="icon_"]{
    margin-right:5px;
    font-size: 1.3rem;
    
    @media only screen and (max-width: 768px) {
      color:#000;
      font-size: 1.2rem;
      padding-left:0px;
      height:50px;
      padding-top:33px;
      position:relative;
      margin-right:10px;

      &::before{
        left:50%;
        transform:translateX(-50%) scale(1);
        font-size:2.5em;
        top:-3px;
      }
    }
  }


  & img{
    display: block;
    width: auto;
    height: 20px;
    margin: 0 0 .5rem;
  }

  & span:not(:empty) {
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: #e83b2d;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    z-index: 1;

    @media only screen and (max-width: 768px) {
      top: 10px;
    }
    @media only screen and (max-width: 480px){
      top: 5px;
    }

  }
}
/*----------------------------------------*/
/* グローバルメニュー */
/*----------------------------------------*/
.headerGrobalmenu{
  position:sticky;
  z-index:700;
  top:-1px;
  margin-bottom:30px;

  @media only screen and (max-width: 768px) {
    margin-bottom: 0px;
  }
}
.headerSearch {
  background-color: #333;

  @media only screen and (max-width: 768px) {
    margin-bottom: 10px;
    background-color: #757575;
  }
}
.headerSearch_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;

  @media only screen and (max-width: 768px) {
    padding: .5rem 0;
  }
}
/* 検索窓 */
.headerSearch_form {
  display: flex;
  width: calc(100% - 170px);

  @media only screen and (max-width: 768px) {
    flex-wrap: wrap;
    width: 100%;
  }

  & .search_select {
    cursor: pointer;
    width: 140px;
    height: 40px;
    padding: 0 1.5rem;
    background: url(../img/caret-down-solid.svg) center right 1rem no-repeat, radial-gradient(#fff, #EAEAEA);
    border-right: 1px solid #707070;
    border-radius: .5rem 0 0 .5rem;
    font-size: 1.3rem;
    -webkit-appearance: none;
    appearance: none;

    @media only screen and (max-width: 768px) {
      height: 30px;
      margin-right: 2rem;
      margin-bottom: .5rem;
      border-radius: 3px;
    }

    & option,optgroup{
      font-size:1em;
    }
  }
  
  & .search_input {
    position: relative;
    width: calc(100% - 196px);
    height: 40px;
    background: #FFFFFF;

    @media only screen and (max-width: 768px) {
      width: calc(100% - 56px);
      height: 30px;
      border-radius: 3px 0 0 3px;
    }

    & input {
      height: 100%;
      width:100%;
      padding: 0 1.5rem;
      border: none;
      box-shadow: none;
      border-radius: 0;
      font-size: 1.4rem;
      box-sizing: border-box;
      background-color: #fff;
      line-height: 1.5;

      @media only screen and (max-width: 768px) {
        padding: 0 1rem;
        font-size: 1.3rem;
      }
    }
  }
  

  .search_detail_btn {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    padding:8px 10px;

    @media only screen and (max-width: 768px) {
      position:relative;
      top:auto;
      transform: none;
      right: 0;
      padding:0px 10px;
      height:30px;
    }
  }

  & .search_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 40px;
    background-color: var(--base-color);
    border-radius: 0 .5rem .5rem 0;
    transition: .4s;
  
    @media only screen and (max-width: 768px) {
      height: 30px;
    }
  
    &:hover{
      background-color: var(--base-pale-color);
    }
  
    & .icon_search{
      font-size:2.5rem;
  
      @media only screen and (max-width: 768px) {
        font-size:2rem;
      }
    }
  }
}
/* カートボタン */
.headerSearch_cart {
  width: 170px;
  
  & .search_cart {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 40px;
    margin-left: auto;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #EAEAEA 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #DDDDDD;
    border-radius: .5rem;
    font-size: 1.3rem;
    line-height: 1;
    color: #000;

    & .icon_shoppingcart{
      font-size:13px;
      color:#000;

      &::before{
        color:#ff0000;
        transform: scale(1.5);
      }
    }
  }

  & #search_cart_count {
    display: inline-block;
    margin: 0 .5rem;
    color: red;
    font-size: 2.1rem;
    font-weight: 700;
  }
}

/*----------------------------------------*/
/* 詳細検索（モーダル） */
/*----------------------------------------*/
#modal_search{
  display:none;
}
.blocker{
  z-index: 1000;
}
.modal {
  max-width: 560px;
  padding:0px;
  overflow: hidden;
  display:none;
}
.modal_header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #345aa0;

  & h3{
    padding-left: 1rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight:normal;
    border-radius: 8px;
  }
}
.close-modal{
  display:none !important;
}
.modal_contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 2rem;
  background-color: #fafafa;

  & li{
    box-sizing: border-box;
    width: calc(50% - .5rem);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #DDDDDD;
  }

  & dt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 .5rem;
    font-weight: 700;
    font-size: 1.2rem;
  }

  & .range{
    display: flex;
    cursor: pointer !important;
    align-items: center;
    vertical-align: middle;
    flex-wrap: nowrap;

    & >div{
      display: inline-block;

      & label{
        font-size:1.6rem;
        display: inline-block;
        padding: 5px;
        color:#000;
      }
    }
  }

  @media only screen and (max-width: 767px) {
    flex-flow: column;

    & li{
      width:100%;
    }
  }

}
.modal_search_key,
.modal_search_code,
.modal_search_price{
  & input[type="text"],
  & input[type="number"]{
    display: inline-block;
    width: 100%;
    padding: .2rem .5rem;
    font-size: 1.4rem;
    box-sizing: border-box;
    border: 1px solid #aaa;
    border-radius: 4px;
    background-color: #fff;
    line-height: 1.5;
  }
}
.modal_search_price{
  & dd >div{
    display: flex;
    align-items: center;
  }

  & p{
    font-size: 1.6rem;
  }
}
.modal_footer{
  display: flex;
  flex-wrap: wrap;
  padding: 0 2rem 2rem 2rem;
  align-items: center;
  justify-content: space-between;
  
  & a{
    font-size:1.4rem;
    color:#1976D2;
  }
  & .btn{
    font-size:1.4rem;
  }
}

/*----------------------------------------*/
/* カートに入れる（モーダル） */
/*----------------------------------------*/
#modal_cart{
  & .modal_header{
    padding:10px;

    & h3{
      font-size:1.6rem;
    }
  }
  & .icon_close{
    font-size:2rem;
  }

  & h4{
    box-sizing: border-box;
    margin: 1rem 0 1.5rem;
    padding: 1rem;
    background-color: #eee;
    font-size: 1.8rem;
    font-weight: 700;
    width:100%;
  }

  & .cartBtns{
    justify-content: center;
    margin-bottom:0px;
    gap:20px;
    flex-wrap: wrap;

    @media only screen and (max-width: 959px) {
      width:100%;
    }
  }
}

/*----------------------------------------*/
/* main */
/*----------------------------------------*/
/* 2段組みのメイン（右側） */
.main_right {
  box-sizing: border-box;
  display: block;
  width: calc(100% - 200px);
  min-height: calc(100vh - 270px);
  padding-left: 2rem;

  @media only screen and (max-width: 959px) {
    width: 100%;
    padding: 0;
  }
}

/*----------------------------------------*/
/* フッター */
/*----------------------------------------*/
.footer{
  & .footer_nav {
    position: relative;
    border-top: 1px solid #DDDDDD;

    & ul {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 0;
      column-gap: 10px;
    
      @media only screen and (max-width: 767px) {
        padding:2.5rem 0;
        flex-wrap: wrap;
      }

      & li{
        & a {
          color: #000;
          font-size: 1.4rem;
        }
      }
    }

    & #pagetop {
      right: 2rem;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      box-shadow: 0 3px 6px #00000029;
      background-color: var(--base-color);
      display: flex;
      align-items: center;
      justify-content: center;
    
      & .icon_arrowUp{
        font-size:36px;

        &::before{
          color:#fff;
          padding-top:3px;
        }
      }

      & img {
        width: 100%;
        height: auto;
      }
    }
  }

  & .footer_bottom {
    padding: 1.5rem 0;
    background-color: #333;
    color: #fff;
    text-align: center;

    & p{
      font-size: 1.1rem;
    }
  }
  
}
/*----------------------------------------*/
/* サイドバー */
/*----------------------------------------*/
aside{
  padding-bottom:30px;
  width:200px;

  @media only screen and (max-width: 959px) {
    display:none;
    width:auto;
  }
}
/* カテゴリ検索（ツリーメニュー） */
#categoryNav {
  display: flex;
  flex-direction: column;
  z-index: 10;

  & #categoryNavE {
    box-sizing: border-box;
    width: 200px;
    margin-bottom:20px;
    
    @media only screen and (max-width: 959px) {
      display: none;
    }
  }
}

.side_header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem;
  background-color: var(--base-color);

  & h3 {
    padding-left: 1rem;
    color: #fff;
    font-size: 1.4rem;
  }

  & .btn {
    height: 20px;
    padding: 0 .5rem;
  }
}

.side_body {
  & .sideList_item {
    position: relative;
    border: 1px solid #DDDDDD;
    border-top: none;
    z-index: 10;
  
    & > a {
      box-sizing: border-box;
      display: block;
      padding: 1rem 2rem 1rem 1rem;
      background-color: #fafafa;
      color: #000;
      font-size: 1.4rem;
      transition: background-color;
  
      &::after{
        font-family: "Material Icons";
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%); 
        content: "\e5df";
        font-size:2rem;
      }
    }
  
    &:hover>ul {
      display: block;
    }
    &:hover>a {
      background-color: var(--base-pale-color);
      color: #fff
    }
  
    & ul {
      box-sizing: border-box;
      position: absolute;
      top: -1px;
      left: 100%;
      width: max-content;
      display: none;
      padding-top: 1rem;
      background-color: #fff;
      border: 1px solid #DDDDDD;
      border-left: none;
      box-shadow: 0 0 10px #ddd;
      z-index: -1;
  
      & li{
        position: relative;
      
        &:last-of-type a {
          margin-bottom: 1rem;
        }
      
        &:hover>ul {
            display: block;
        }
      
        &:hover>a {
          background-color: var(--base-pale-color);
          color: #fff;
        }
      
        & >a {
          display: block;
          padding: .5rem 1.5rem;
          color: #000;
          font-size: 1.3rem;
        }
      }
    }
  }
}

/* バナー */
.sideBanner{
  border:1px solid #c3b0ac;
  margin-bottom:20px;
  
  &:hover{
    opacity: .8;
  }
  @media only screen and (max-width: 959px) {
    display: none;
  }

  & img{
    vertical-align:top;
  }
}

/* ガイド */
.sideGuide{
  border:1px solid #DDDDDD;
  margin-bottom: 20px;
  
  @media only screen and (max-width: 959px) {
    display: none;
  }

  & h3{
    background-color: var(--base-color);
    font-size:1.4rem;
    padding:5px;
    color:#fff;
  
  }
  & ul{
    padding:10px;
  }
  & li{
    font-size:1.4rem;
    position: relative;
    padding-left:15px;
    &:not(:last-child){
      margin-bottom:5px;
    }

    &::before {
      position: absolute;
      top: 50%;
      left: 0px;
      transform: translateY(-50%);
      width: 0px;
      height: 0px;
      border: 0.3em solid transparent;
      border-left: 0.4em solid var(--base-color);
      content: "";
    }
  }
  & a{
    color:#000;

    &:hover{
      color:var(--base-color);
      text-decoration: underline;
    }
  }
}
/* 絞り込み検索 */
.sideChange{
  margin-bottom: 5px;

  & a{
    cursor: pointer;
    box-sizing: border-box;
    display: block;
    padding: .5rem;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #EAEAEA 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #EAEAEA;
    border-radius: 3px;
    font-size: 1.4rem;
    text-align: center;
    color: #000;

    & span{
      color:#000;
      font-size:2rem;
    }
  }
}
.sideDetail {
  box-sizing: border-box;
  padding: 1rem;
  background-color: #fafafa;
  
  & dl {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #DDDDDD;

    & dt{
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 .5rem;
      font-weight: 700;
      font-size: 1.2rem;
    }

    & dd{
      font-size: 1.6rem;

      & .sideDetail_checkbox {
        display: flex;
        flex-direction: column;
        max-height: 120px;
        overflow: auto;
      
        & label {
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          margin: 0 2rem 0.5rem 0;

          & span {
            font-size: 1.2rem;
          }
        }
      }

      & p{
        font-size: 1.2rem;
      }
    }
  }

  & input{
    padding: .2rem .5rem;
  }

  /* レンジバー */
  & .slider-lower, .slider-upper {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    height: 8px;
    border-radius: 8px;
    padding:0px;
  }
  & .multi-slider ::-webkit-slider-thumb {
      pointer-events: auto;
  }
  & .multi-slider {
      display: grid;
      padding: 8px;
      width: 100%;
      /* thumb以外の操作を無効にする */
      pointer-events: none;
  }
  & .slider-lower, .slider-upper {
      grid-column: 1;
      grid-row: 2;
  }
  & .slider-lower {
      z-index: 1;
  }
}


/*----------------------------------------*/
/* その他共通パーツ */
/*----------------------------------------*/
/* 商品画像（デフォルト表示） */
.product_image {
  position: relative;
  display: block;
  width: 100%;
  height:auto;
  overflow: hidden;
}
.product_image_wrap, .product_image_wrap_static {
  display: block;
  top: 0;
  left: 0;
  width: 100%;

  & img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .4s;
	aspect-ratio: 1 / 1;
  }
  
  &:hover img {
    transform: scale(1.2)
  }
}
.product_image_wrap_static:hover img {
  transform: none;
}

/* 商品一覧テーブル */
.productListTable{
  box-sizing: border-box;
  display: table;
  width: 100%;
  padding: 2rem;
  background-color: #fff;
  margin-bottom:40px;
  border:0px;

  @media only screen and (max-width: 767px) {
    margin-bottom: 0px;
  }

  & thead{
    width:100%;

    @media only screen and (max-width: 959px) {
      display: none;
    }
  }
  & th{
    box-sizing: border-box;
    display: table-cell;
    padding: 1rem;
    background-color: #f5f5f5;
    border-bottom: 1px solid #707070;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    color:#000;
  }
  & tr{

    &.active{
      background-color: #fdfbe7;
      
      & td{
        background-color: #fdfbe7;
      }
    }
    
    & td{
      box-sizing: border-box;
      display: table-cell;
      padding: 1rem;
      border-bottom: 1px solid #aaa;
      font-size: 1.4rem;
      text-align: center;
      vertical-align:middle;


      @media only screen and (max-width: 959px) {
        display: block;
        padding: 0;
        border-bottom: none;

        &:nth-of-type(1) {
          grid-row: 1 / 3;
          grid-column: 1;
          margin-right: 1rem;
        }
        &:nth-of-type(2) {
          grid-row: 1;
          grid-column: 2 / 5;
          text-align: left;
        }
        &:nth-of-type(3) {
          grid-row: 2;
          grid-column: 2 / 5;
          margin-bottom: 1rem;
        }
        &:nth-of-type(n + 4) {
          grid-column: 1 / 5;
        }
      }

      & .sp{
        font-size: 1.4rem;
      }
    }

    @media only screen and (max-width: 959px) {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      margin: 0 0 2rem;
      padding: 1rem;
      border: 1px solid #DDDDDD;
    }
  }
  & .product_image{
    max-width: 100px;
  }
  & .product_num{
    color: #5390ff;
    font-size: 1.8rem;
  }
  & .product_name{
    font-size: 1.9rem;
    font-weight: 700;
    text-decoration: underline;
    color: #5390ff;
  }
  & .product_price{
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;

    @media only screen and (max-width: 959px) {
      box-sizing: border-box;
      display: flex  ;
      align-items: center;
      justify-content: space-between;
      min-height: 45px;
      margin: 0 0 1rem;
      padding: .5rem;
      background-color: #fff;
      border: 1px solid #aaa;
    }
  }
  & .product_vol{
    font-size: 1.8rem;
    @media only screen and (max-width: 959px) {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 45px;
      margin: 0 0 1rem;
      padding: .5rem;
      background-color: #fff;
      border: 1px solid #aaa;
    }

    & .inputNumber{
      border: 1px solid #aaa;
      padding: .2rem .5rem;
      text-align: right;
      width:auto !important;
    }

    & select{
      @media only screen and (max-width: 959px) {
        width: 100px;
      }
    }
  }
  & .icon_shoppingcart{
    font-size:1.2rem;    
  }

  & .btn{
    @media only screen and (max-width: 959px) {
      width: 100%;
    }
  }
}
/* 利用者情報登録フォーム */
.userinfo_regist_form{
  background-color: #fafafa;
  border:1px solid #ccc;
  margin:0 auto 30px;
  padding:20px 30px;
  
  @media only screen and (max-width: 767px) {
    width:100%;
    padding:10px 15px;
  }

  & dl{
    display:flex;
    margin-bottom:5px;

    @media only screen and (max-width: 767px) {
      flex-flow: column;
    }

    @media only screen and (max-width: 480px) {
      border-bottom: 1px solid #ccc;
      padding-bottom:10px;
    }

  }
  & dt{
    width:25%;
    padding-top:10px;

    @media only screen and (max-width: 767px) {
      width:100%;
      margin-bottom:5px;
    }
  }

  & dd{
    width:75%;
    font-size: 1.4rem;
    color:#545454;
    
    @media only screen and (max-width: 767px) {
      width:100%;
    }
    
    & .comment-confirm{
      padding: .8rem 1rem;
    }
  }

  & .paddingLeft-50{
    @media only screen and (max-width: 767px) {
      padding-left:0px;
    }
  }

  & .error_msg:empty{
    display:none;
  }
}
/*----------------------------------------*/
/* ログイン */
/*----------------------------------------*/
.login{
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100vh - 57.5px);
  border-top: 10px solid #333333;

  & .login-wrapper{
    position:block;
    max-width: 400px;
    margin:75px auto;

    @media only screen and (max-width: 480px) {
      max-width: 90%;
    }
  }

  & .headerLogo{
    margin:0 auto 30px !important;
    display:block;

    & .headerLogo_link{
      width:100% !important;
    }
  }

  & form{
    margin:0 auto;
    padding: 50px 40px;
    background-color: #FCFAFA;
    border: 1px solid #C3C0C0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);

    @media only screen and (max-width: 480px) {
      padding: 20px;
    }

  }

  & h2{
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: 1px solid #DDDDDD;
    font-size: 24px;
    text-align: center;
    font-weight:bold;
    line-height: 1.3;
  }

  & dl{
    width: 300px;
    margin: 0 auto;

    @media only screen and (max-width: 480px) {
      width: 100%;
    }

  }

  & dt{
    font-weight: bold;
  }

  & dd{
    margin: 0 auto 10px;
  }

  & .login-caution {
    margin-top: 5px;
    font-size: 12px;
  }

  & input[type="password"] {
    width: 100%;
  }

  & .pass_remeber{
    display:flex;
    align-items: center;
    gap:10px;
    
    & #login_save_password{
      cursor:pointer;
    }
    & label{
      margin:0px;
      cursor:pointer;
    }
  }

  & .login-btn{
    margin:20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .pass_forget{
    color:#5390ff;
    display:block;
    margin:30px auto 0px;
    width: 275px;

    &:hover{
      text-decoration: underline;
    }

    &::after{
      content:">";
      margin-left:10px;
    }
  }

  & .create_account{
    max-width: 468px;
    text-align: center;
    margin: 50px auto;

    & > p{
      margin-bottom:20px;
      color:#555;

      &::before, &::after {
        content: '';
        background-color: #ccc;
        height: 1px; 
        width: 60px;
        display: inline-block;
        vertical-align: middle;
        margin:0px 10px;
        
        @media only screen and (max-width: 480px) {
          width: 20px;
          margin:0px 5px;
        }
      }
    }
  }
}

/*----------------------------------------*/
/* ↑↑↑↑↑ 共通部品、ここまで。 ↑↑↑↑↑ */
/*----------------------------------------*/



/*----------------------------------------*/
/* ↓↓↓↓↓ 以下、個別ページ ↓↓↓↓↓ */
/*----------------------------------------*/
/* トップページ */
/*----------------------------------------*/
#top{
  font-size:1.4rem;

  & h2{
    font-size:1.8rem !important;
    margin-bottom:20px !important;
    font-weight:700 !important;

    @media only screen and (max-width: 767px) {
      text-align:center;
    }

  }

  & section{
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    
    &:nth-of-type(n + 2) {
      border-bottom: 1px solid #DDDDDD;
    }
    &:last-child{
      border-bottom: 0px;
    }
  }

  & .show_all{
    margin-top:20px;
    text-align:right;

    & a{
      color: #5390ff;
    }
  }

  & .productCategoryList {
    & li {
      width: calc(25% - 8px) !important;
      aspect-ratio: 1/1;

      @media only screen and (max-width: 767px) {
        width: calc(50% - .5rem) !important;
        margin-right: 0 !important;
      }
    }
  }

  & .productCategoryBlock {
    flex-flow:column;
    padding:10px;
  }

  & .productCategoryBlock_image {
    width:auto;
    height:210px;
    margin-right: 0;
    margin-bottom:10px;
    display: flex;
    align-items: center;
  }
  & .productCategoryBlock_name {
    width: 100%;
    text-align:center;
    line-height: 1.5;
  }

}

/* スライダー（メインイメージ） */
.topSlider {
  background-color: #9f9f9f;
  margin-bottom: 60px !important;
  padding-bottom:0 !important;

  & img{
    width:100%;
    aspect-ratio: 1110 / 310.8;
    object-fit: cover;
    border: 1px solid #aaa;

    @media (max-width: 480px) {
      aspect-ratio: 45 / 13;
    }
  }
  & .slick-prev {
    left:20px;
    z-index: 1;
  }
  & .slick-next{
    right:30px;
    z-index: 1;
  }
  & .slick-prev:before, & .slick-next:before {
    color: #555;
    font-size:3rem;
  }
}

 /* 定番商品 */
 .BestSellingList{
  border: 1px solid #c3b0ac;
  padding:20px;
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem 4rem;
  border-radius: 10px;
  font-size:1.6rem;
  
  @media (max-width: 768px) {
    gap:1rem 3rem;
  }
  @media (max-width: 480px) {
    font-size:1.4rem;
    gap:1rem 2rem;
  }

  & a{
    color: #816C67;
    text-decoration: underline;
  }
 }

 /* おすすめ商品 */
.topProductList {
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;

  @media only screen and (max-width: 767px) {
    justify-content: space-between;
  }

  & li{
    width: calc(16.666% - 1.5rem);
    min-width: 120px;

    @media only screen and (max-width: 959px) {
      width: calc(25% - 1.5rem);
    }

    @media only screen and (max-width: 767px) {
      width: calc(50% - 1rem);
      margin: 0 0 3rem;
    }

  }
}

 /* お知らせ */
.topnews{
  font-size:1.4rem;
  & .newslist {
    & li {
      padding:15px;
      border-bottom:1px solid #ccc;

      &:nth-of-type(1) {
        border-top:1px solid #ccc;;
      }

      @media (max-width: 480px) {
        flex-flow: column;
        align-items: flex-start;
        gap: 0px;
      }

      & a{
        color:#5390ff;
      
        &:hover {
          text-decoration: underline;
        }
      }
  
      & time{
        font-size:1.4rem;
      }
    }
  }
}
/* お気に入り */
.topProductBlock {
  display: block;
}
.topProductBlock_image {
  margin-bottom: .5rem;
  border: 1px solid #DDDDDD;
}
.topProductBlock_name {
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
}
.topProductBlock_price-through {
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: line-through;
  text-align: right;
  color: #000;
}
.topProductBlock_price, .topProductBlock_price-small, .p-topProductBlock_price-through, .topProductBlock_price-red {
  display: inline-block;
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: right;
}
.topProductBlock_price-small {
  font-size: 1.1rem;
  font-weight: 400;
}
.topProductBlock_price-red {
  width: 100%;
  color: red;
}
/* スライダー（お気に入り、PICKUP、閲覧履歴） */
.productSlider{
  & .slick-prev:before, & .slick-next:before{
    color: #555;
    font-size:3rem;
  }
  & .slick-prev{
    left:25px;
    z-index:1;
  }
  & .slick-next{
    right:45px;
    z-index:1;
  }
  & .slick-slide{
    margin-right:10px;
  }
  & .slick-track{
    margin-left:initial;
  }
}

/* 会社情報 */
.topshopinfo{
  position: relative;
  width: 100%;
  height:100%;
  border-top: 1px solid #DDDDDD;
  padding:20px;

  @media only screen and (max-width: 480px) {
    padding:20px 10px;
  }

  & .wrapper{
    max-width: fit-content;
    margin: 0 auto;

    & .outer{
      display:flex;
      gap:20px;

      @media only screen and (max-width: 480px) {
        flex-flow: column;
        gap:0px;
      }
    }

    & p{
      font-weight: bold;
      color: var(--base-color);
      margin-bottom:10px;
    }

    & .logo {
      width: 200px;
    }

    & dl {
      display:flex;
      flex-flow: column;
      gap:10px;
      text-align: left;
    }
    & dt {
      font-size: 1.8rem;
      font-weight: bold;
    }

    & a{
      color: #007FCC;
      text-decoration: underline;
    }

    & .btn{
      width:fit-content;
      margin:10px 0px;
      padding:10px 20px;

      & a{
        font-size:1.6rem;
        color: #fff;
        text-decoration: none;
      }
    }
  }
}
/*----------------------------------------*/
/* キャンペーン・特集 */
/*----------------------------------------*/
.topCampaign{
  margin-bottom: 3rem;
  padding-bottom: 3rem;

  & h2{
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
  }
}
.topCampaignList {
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  
  @media only screen and (max-width: 767px) {
    gap:10px;
  }
  
  & li {
    width: calc(25% - 1.5rem);

    @media only screen and (max-width: 767px) {
      width:calc(50% - .5rem);
    }
    & a {
      display: block;

      & figure{
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 18px;
      
      
        &::before{
          content: "";
          width: 40px;
          height: 18px;
          font-size: 1.2rem;
          font-weight: 700;
          text-align: center;
          position: absolute;
          top: 0;
          left: 0;
          vertical-align: middle;
        }
        &.new::before{
          content: "NEW";
          background-color: red;
          color: #fff;
        }
        &:hover{
          opacity: .8;
        }

        & img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform .4s;
        }

      }
    }
  }
}

/*----------------------------------------*/
/* カートページ */
/*----------------------------------------*/
.cart_text {
  font-size: 2rem;
}
.cart_recalc_btn{
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 1rem;
  padding: .25rem 1.5rem;
  background-color: #5390ff;
  border-radius: 3rem;
  box-shadow: 0 0 5px #aaa;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  margin-bottom:0px;
}
.cart_delete_btn{
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #5390ff;
  line-height: 1;

  & .icon_delete{
    color:#5390ff;
    font-size:1.4rem;
  
    &::before{
      transform: scale(1.8);
    }
  }
}
.cartSum {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  background-color: #fdfbe7;
  border: 1px solid #BEBCBC;
  border-radius: 5px;
  font-size:1.6rem;
  padding:30px;
  @media only screen and (max-width: 767px) {
    padding:15px;
  }
}
.cartinfo{
  grid-template-columns:none !important;
  border:0px !important;
  padding-right:0px !important;

  & td{
    font-size:1.6rem !important;
    border-bottom:0px !important;
    text-align:right !important;

    @media only screen and (max-width: 768px) {
      text-align:left !important;
    }
  }
}
.cartBtns {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 5rem;
  flex-wrap: wrap;

  @media only screen and (max-width: 959px) {
    justify-content: center;
    width:300px;
    gap:20px;
  }

  & .order_btn_large{
    width: 550px;
    height: 60px;
    font-size: 1.6rem;
    line-height: 70px;
  }
}
.product_cart .sp.product_btns{
  font-size:1.6rem;
}
.cart_title{
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:20px;
  position:relative;

  @media only screen and (max-width: 480px) {
    flex-wrap: wrap;
  }

}
.kubun{
  display:flex;
  align-items: center;
  font-size:1.4rem !important;
  font-weight:normal;

  & select{
    width:auto;
  }

  & .icon_help{
    color:#000;
    font-size:2rem;
    cursor:pointer;
    top:-1px;
  }
  @media only screen and (max-width: 480px) {
    margin-left:auto;
  }
}
.tooltip{
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.tooltip p{
  margin:0;
  padding:0;
}
.description {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  border-radius: 5px;
  background: #000000;
  color:#fff;
  opacity:.8;
  width: 150px;
}
.description:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 5px solid transparent;
  border-top: 10px solid #000;
  margin-left: -5px;
}
.tooltip:hover .description{
  display: inline-block;
  top: -70px;
  left: -65px;
}

/*----------------------------------------*/
/* 商品一覧ページ */
/*----------------------------------------*/
.product_title {
  margin-bottom: 20px;
  border:0px;
  padding:0;

  @media only screen and (max-width: 767px) {
    font-size: 2.2rem;
  }
}
.product_description{
  font-size:1.6rem;
  margin-bottom: 20px;

  @media only screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}
/* カテゴリーから選ぶ */
.productCategory{
  margin-bottom: 20px;

  & .productCategory_title {
    color: #5390ff;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;

    @media only screen and (max-width: 767px) {
      font-size: 1.6rem;
    }       
  }
  & .productCategoryBlock_name{
    width: calc(70% - 1rem);
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;

    @media only screen and (max-width: 767px) {
      font-size: 1.3rem;
    }

    & span{
      box-sizing: border-box;
      padding: .5rem;
      
      @media only screen and (max-width: 767px) {
        font-size: 1.2rem;
      }
    }
  }
}
.productCategoryList {
  display: flex;
  flex-wrap: wrap;
  gap:1rem;

  @media only screen and (max-width: 767px) {
    justify-content: space-between;
  }

  & li {
    width: 180px;
    
    @media only screen and (max-width: 767px) {
      width: calc(50% - .5rem);
      margin-right: 0;
    }
  }
}
.productCategoryBlock {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100%;
  padding: .5rem;
  border: 2px solid #000;
  border-radius: 4px;

  &:hover{
    opacity: .8;
  }
}
.productCategoryBlock_image {
  width: 30%;
  margin-right: 1rem;
  overflow:hidden;

  & img{
    transition: transform .4s;

    &:hover{
      transform: scale(1.2);
    }
  }
}
.productConditions {
  box-sizing: border-box;
  background-color: #eee;
  margin-bottom:10px;

  & ul {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 1rem 0;
  
    &:empty {
      display: none;
    }

    & li {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      margin-right: 1rem;
      margin-bottom: 1rem;
      padding: .5rem 1rem;
      border-radius: 3rem;
      background-color: #fff;
      font-size: 1.4rem;
    
      & span{
        box-sizing: border-box;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        margin-left: 1rem;
        background-color: #000;
        border: 1px solid #000;
        border-radius: 50%;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1;
      }
    }
  }
}
.productSetting {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: .5rem;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 30px;
  gap:8px;

  @media only screen and (max-width: 767px) {
    box-sizing: border-box;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 1rem;
    background-color: #f2f2f2;
  }
}
.productSetting_left {
  position: relative;
  display: flex;
  align-items: flex-end;

  @media only screen and (max-width: 767px) {
    flex-wrap: wrap;
  }
}
.productSettingNumber {
  font-size: 1.4rem;
  margin-right: 30px;
  
  @media only screen and (max-width: 767px) {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: max-content;
  }

  & span{
    color: #345aa0;
    font-size: 2rem;

    @media only screen and (max-width: 767px) {
      font-size: 1.6rem;
    }
  }
}
.productSettingChange {
  display: flex;

  & li{
    &:nth-of-type(1) a {
      border-right: none;
      border-radius: 5px 0 0 5px;
    }
    &:nth-of-type(2) a {
      border-radius: 0 5px 5px 0;
    }
    & a {
      cursor: pointer;
      display: block;
      width: 85px;
      padding: .5rem;
      background-color: #fff;
      border: 1px solid #000;
      font-size: 1.1rem;
      text-align: center;

      @media only screen and (max-width: 767px) {
        width: auto;
        font-size: 1rem;
      }
    }

    & .active {
        background-color: #345aa0;
        color: #fff;
    }
  }
}
.productSettingSort {
  display: flex;
  align-items: center;
  font-size: 1.4rem;

  & p{
    white-space: nowrap;

    @media only screen and (max-width: 767px) {
      width: auto;
      font-size: 1.2rem;
      white-space: nowrap;
    }
  }
  & select{
    @media only screen and (max-width: 767px) {
      font-size:1.3rem;
    }

  }
}
/* 商品一覧 */
.productList{
  & > ul{
    & > li{
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #DDDDDD;
      display: flex;

      & > div:nth-of-type(1){
        width: 20%;
        margin-right: 3rem;

        @media only screen and (max-width: 767px) {
          margin-right: 1rem;
        }
      }

      & > div:nth-of-type(2){
        width: calc(80% - 3rem);

        @media only screen and (max-width: 767px) {
          width: calc(80% - 1rem);
        }
      }
    }
  }

  & .product_name{
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    
    & .p-code{
      font-size:1.6rem;
    }

    & a{
      color: #000;
      font-size: 1.8rem;
      font-weight: 700;
      text-decoration: underline;
      margin-right:20px;

      @media only screen and (max-width: 767px) {
        font-size: 1.5rem;
      }

      &:hover{
        color: #345aa0;
      }
    }
  }
  & .product_description{
    font-size: 1.4rem;
    margin-bottom: 10px;

    @media only screen and (max-width: 767px) {
      font-size: 1.1rem;
    }
  }
  & .product_maker{
    & a{
      color: #345aa0;
      font-size: 1.4rem;

      &:hover{
        text-decoration: underline;
      }
    }
  }
}
.product_code_List{
  display: flex;
  flex-wrap: wrap;
  margin-bottom:5px;
  font-size:1.6rem;

  @media only screen and (max-width: 767px) {
    font-size: 1rem;
  }

  & li{
    margin-right: .5rem;
    margin-bottom: .5rem;

    &:not(:last-of-type):after {
      content: "\3001";
    }
    & a{
      color: #5390ff;

      &:hover{
        text-decoration: underline;
      }

      @media only screen and (max-width: 767px) {
        font-size: 1rem;
      }
    }
  }
  & p{
    font-size:1.6rem;
    margin-left:10px;

    @media only screen and (max-width: 767px) {
      font-size: 1rem;
    }
  }
}
.product_price_List{
  margin-bottom:10px;
  display: flex;
  align-items: center;

  @media only screen and (max-width: 767px) {
      display: block;
  }

  & .product_kinds{
    box-sizing: border-box;
    padding: .5rem 1.5rem;
    font-size: 1rem;
    background-color: #f3f3f3;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    font-weight: 700;

    @media only screen and (max-width: 767px) {
      margin: 0 0 .5rem;
      padding: 0 .5rem;
    }

    & span{
      font-size: 1.6rem;
    }
  }
  & .product_price{
    box-sizing: border-box;
    padding: .5rem 2rem .5rem 1rem;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    font-size: 1.4rem;

    @media only screen and (max-width: 767px) {
      padding: 0;
      font-size: 1.2rem;
      border-top: none;
      border-bottom: none;
    }

    & span{
      font-size: 1.6rem;
      font-weight: 700;

      @media only screen and (max-width: 767px) {
        font-size: 1.2rem;
      }
    }
  }
  & .btn{
    @media only screen and (max-width: 767px) {
      display: none;
    }
  }
}
.productSpecList{
  margin-bottom:10px;

  @media only screen and (max-width: 767px) {
    display: none;
  }

  & li{
    font-size: 1.2rem;

    &:before {
      content: "\25cf";
    }
  }
}
.product_cate_List{
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  @media only screen and (max-width: 767px) {
    display: none;
  }

  & li{
    position: relative;
    margin-right: 1.5rem;
    padding-right: 1.5rem;

    &:not(:last-of-type):after {
      position: absolute;
      top: 50%;
      right: 0;
      content: "\ff1e";
      color: #aaa;
      font-size: 1.2rem;
      transform: translate(50%, -45%);
    }

    & a{
      color: #345aa0;
      font-size: 1.2rem;

    }
  }
}

/*----------------------------------------*/
/* シリーズ一覧ページ */
/*----------------------------------------*/
.groupBlock{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 50px;

  & > div:nth-of-type(1){
    width: calc(30% - 2rem);
    margin-right: 2rem;

    @media only screen and (max-width: 767px) {
      width: 100%;
      margin: 0 0 1rem;
    }

  }
  & > div:nth-of-type(2){
    width: 70%;
    
    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }

  @media only screen and (max-width: 767px) {
    margin-bottom: 30px;
    margin-top: 30px;
  }

}
.groupContents_name{
  margin-bottom: 10px;
  border-bottom:0px;
  padding:0px;
  margin: 0px 0px 10px; 

  & span{
    color: #000;
    font-size: 2.8rem;
    font-weight: 700;
  }
}
.groupContents_description {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.groupList_wrap{
  & > p{
    font-size: 20px;
    margin-bottom: 20px;

    @media only screen and (max-width: 767px) {
      font-size: 16px;
      margin-bottom: 10px;
    }

    & b{
      font-size: 24px;
      
      @media only screen and (max-width: 767px) {
        font-size: 20px;
      }
    }
  }
}
#modal_cart{
  display:none;
}
.detailContent_maker{
  & a{
    color: #5390ff;
    font-size: 1.6rem;
    text-decoration: underline;

    @media only screen and (max-width: 767px) {
      font-size: 1.4rem;
    }
  }
}
.groupContents_name{
  & span{
    color: #000;
    font-size: 2.8rem;
    font-weight: 700;

    @media only screen and (max-width: 767px) {
      font-size: 2.2rem;
    }
  }
}
.groupContents_description{
  font-size: 1.8rem;

  @media only screen and (max-width: 767px) {
    font-size: 1.6rem;
  }
}
#group{
  & .product_code_List{
    & li{
      & a{
        font-size: 1.6rem;
      }
    }
  }
}


/*----------------------------------------*/
/* 商品詳細ページ */
/*----------------------------------------*/
.product-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem;
  margin-top:20px;

  @media only screen and (max-width: 767px) {
    display: block;
    margin-bottom: 3rem;
  }

  & > div:nth-of-type(1){
    width: 40%;
    margin-right: 4rem;

    @media only screen and (max-width: 767px) {
      width: 100%;
      margin: 0 0 2rem;
    }
  }

  & > div:nth-of-type(2){
    width: calc(60% - 4rem);

    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }
}
.product-detailContent_name{
  font-size: 2.4rem;
  font-weight: 700;
  
  @media only screen and (max-width: 767px) {
    font-size: 2rem;
  }
}
.product-detailCatch{
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  padding: .5rem;
  background-color: #fafafa;
  border: 1px solid #aaa;
  border-bottom: none;
  color: #000;
  z-index:10;

  & p{
    font-size: 1.8rem;
    font-weight: 700;
  }
}
.product-detailImage_caption{
  box-sizing: border-box;
  width: 100%;
  padding: .5rem 1rem;
  border-top: 1px solid #aaa;
  background-color: #f7f7f7;
  font-size: 1.2rem;
  z-index: 100;
}
/* スライダー（商品詳細） */
.product-detailSlider {
  background-color: #9f9f9f;
  margin-bottom: 20px;

  & >div{
    border: 1px solid #aaa;
  }
  & img{
    width:100%;
  }
  & .slick-prev {
    left:20px;
    transform:translateY(-30px);
    z-index: 1;
  }
  & .slick-next{
    right:30px;
    transform:translateY(-30px);
    z-index: 1;
  }
  & .slick-prev:before, & .slick-next:before {
    color: #555;
    font-size:3rem;
  }
}
.product-detailThumbnails{
  margin-bottom:20px;

  & >div{
    cursor:pointer;
  }
  & .slick-track {
    transform:unset!important;
    margin-left:0px;
  }
  & .slick-current{
    border: 2px solid #aaa;
  }

}
/* モーダルウィンドウ（商品画像） */
#modal_img{
  width:90%;
  max-width:90%;
  display:none;
  max-height: 90vh;

  & .modal_header{
    background-color: #fff;

    & .icon_close{
      font-size:2.5rem;
      color:#000;
      position:absolute;
      right:10px;
    }
  }

  & .modal_contents{
    background-color: #fff;
  }
}

/* 商品詳細スペック */
.product-detailSpec{
  & .product-detailSpec_title{
    margin: 0 0 1rem;
    font-weight: 700;
    font-size:1.6rem;
  }

  & .product-detailSpec_tbl{
    width:100%;
    border:none;

    & thead{
      @media only screen and (max-width: 959px) {
        display: none;
      }
    }

    & th{
      box-sizing: border-box;
      display: table-cell;
      padding: 1rem;
      background-color: #f5f5f5;
      border-top: none;
      border-bottom: 1px solid #707070;
      font-size: 1.4rem;
      font-weight: 400;
      text-align: center;
      vertical-align: middle;
      color:#000;
    }
  }

  & td{
    box-sizing: border-box;
    display: table-cell;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #aaa;
    font-size: 1.4rem;
    text-align: center;
    vertical-align: middle;

    @media only screen and (max-width: 959px) {
      display: block;
      padding: 0;
      border-bottom: none;
    }

    & a{
      cursor: pointer;
      color: #5390ff;

      &:hover{
        text-decoration: underline;
      }
    }
  }

  & dl{
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    font-size: 1.4rem;

    &:first-of-type {
      border-top: 1px solid #DDDDDD;
    }

    & dt{
      box-sizing: border-box;
      width: 175px;
      padding: 1rem;
      background-color: #f5f5f5;
      font-weight: 700;
    }

    & dd{
      box-sizing: border-box;
      width: calc(100% - 175px);
      padding: 1rem;
    }
  }

  & .pdfbtn{
    margin-top:20px;

    & a{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 150px;
      height: 40px;
      border: 1px solid #757575;
      border-radius: 3px;

      &:hover{
        opacity: .8;
      }

      & *{
        color: #000;
        font-size:1.6rem;
      }
    }
  }
}

/* 商品詳細情報 */
.product-detailContent{
  & .label_wrap{
    margin:10px auto;

    & *{
      font-size:1.4rem;
      padding: .75rem 1.5rem;
    }
  }

  & .product_description{
    font-size:1.6rem;
    margin-bottom: 20px;
  }

  & .product_num{
    margin-bottom: 10px;
    color: #5390ff;
    font-weight: 700;
    font-size:1.6rem;
  }

  & .product_price{
    font-weight: 700;
    font-size:1.6rem;

    & span{
      font-size: 2.4rem;

      @media only screen and (max-width: 767px) {
        font-size: 2rem;
      }
    }
  }

  & .product_member{
    font-weight: 700;
    font-size:1.6rem;

    & span{
      color: red;
      font-size: 3.2rem;

      @media only screen and (max-width: 767px) {
        font-size: 2.4rem;
      }
    }
  }

  & .product_limit{
    display: flex;
    align-items: center;
    margin-top:10px;
    font-size:1.6rem;
    
    & .icon_info{
      color:#000;
      font-size:2.5rem;
    }
  }

  & .product_favorite{
    width: 100%;
    margin-top: 10px;

    & .favorite_btn{
      cursor: pointer;
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
      padding: 1rem 1.5rem;
      background-color: #fff;
      border: 1px solid #6ed732;
      border-radius: 4px;

      & .icon_favorite{
        color: #6ed732;
        font-size:1.6rem;
      }

      &.active{
        background-color: #6ed732;

        & .icon_favorite{
          color: #fff;
        }

      }
    }
  }

  & .product-detailContent_bottom{
    display: flex;
    align-items: center;
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid #aaa;
    flex-wrap: wrap;
    gap:3rem;

    @media only screen and (max-width: 767px) {
      gap:0px;
    }
  }

  & .product_stock{
    font-size:1.6rem;

    @media only screen and (max-width: 767px) {
      width: 100%;
      margin: 0 0 1rem;
    }
  }

  & .product_select{
    font-size:1.6rem;

    @media only screen and (max-width: 767px) {
      margin-right:30px;
    }

    & select{
      cursor: pointer;
      padding:10px 25px 10px 0px;
    }
  }

  & .btn{
    padding:15px 40px;

    @media only screen and (max-width: 767px) {
      padding:15px 30px;
    }
  }
  & .icon_shoppingcart{
    font-size:20px;
  }
}


/*----------------------------------------*/
/* お気に入り一覧 */
/*----------------------------------------*/
#favorite{
  & .favorite_List{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom:30px;

    @media only screen and (max-width: 767px) {
      justify-content: space-between;
    }

    & li{
      width: calc(16.666% - 1.5rem);
      min-width: 120px;

      @media only screen and (max-width: 959px) {
        width: calc(25% - 1.5rem);
      }

      @media only screen and (max-width: 480px) {
        width: calc(50% - 1rem);
        margin: 0 0 3rem;
      }
    }
  }

}

/*----------------------------------------*/
/* 閲覧履歴一覧 */
/*----------------------------------------*/
#history{
  & .history_List{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom:30px;

    @media only screen and (max-width: 959px) {
      justify-content: space-between;
    }

    & li{
      width: calc(16.666% - 1.5rem);
      min-width: 120px;

      @media only screen and (max-width: 959px) {
        width: calc(25% - 1.5rem);
      }

      @media only screen and (max-width: 480px) {
        width: calc(50% - 1rem);
        margin: 0 0 3rem;
      }
    }
  }

}


/*----------------------------------------*/
/* お知らせ詳細 */
/*----------------------------------------*/
.news_day{
  text-align:right;
  margin-bottom:20px;
  color:var(--base-color);
}
.news_content{
  padding:60px 30px;
  font-size:1.6rem;
  border-radius: 10px;
  margin-bottom:50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border: 1px solid #C3C0C0;

  & *{
    line-height:2;
  }
}
.newsBtns{
  margin:0 auto;
  width:fit-content;
  margin-bottom:50px;
}


/*----------------------------------------*/
/* マイページ */
/*----------------------------------------*/
.mypage_sec{
  min-height:calc(100vh - 320px);

  & ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    gap:20px;
    padding:70px;
    
    @media only screen and (max-width: 480px) {
      padding:0px 0px 30px 0px;
    }

    & li{
      width:30%;
      
      @media only screen and (max-width: 480px) {
        width: 100%;
      }
      
      & a{
        border:1px solid var(--base-color);
        border-radius: 10px;
        text-align:center;
        padding:40px 20px;
        display:block;
        width:100%;
        height:100%;
        color:#000;
        font-size:1.8rem;

        @media only screen and (max-width: 480px) {
          display:flex;
          align-items: center;
          padding:10px 30px;
          gap:15px;
        }

        &:hover{
          background-color:var(--base-color);
          color:#fff;
          transition: .4s;
          
          & *[class^="icon_"]{
            color:#fff;
          }
        }

        & *[class^="icon_"]{
          color:#333;
          margin-bottom:10px;
          width:5rem;
          height:5rem;

          &::before{
            font-size:5rem;
          }
        }
      }
    }
  }

  & .user_name{
    background-color: var(--base-light-color);
    border-top:3px solid var(--base-color);
    padding:20px;

    @media only screen and (max-width: 480px) {
      margin-bottom:20px;
    }

    & .icon_account_circle{
      color:#000;
    }
  }

  & .delete{
    text-align:center;
    margin-bottom:30px;

    & a{
      color:var(--base-color);
      text-decoration: underline;

    }

  }

}


/*----------------------------------------*/
/* 購入手続き */
/*----------------------------------------*/
/* stepページ共通 */
.step{
  & .step_flow{
    width:100%;
    display: flex;
  
    & > div{
      width:25%;
      text-align:center;
      background-color:#ccc;
      padding:10px;
      color:#fff;
      border:1px solid #fff;
      font-weight:bold;
  
      @media only screen and (max-width: 768px) {
        font-size:1.4rem;
        padding:10px 5px;
      }
  
      &.active{
        background-color:var(--base-color);
      }
    }
  }
  
  & section{
    margin:30px 0px;
  }
  
  & .stepBtn{
    display:flex;
    justify-content: center;
    gap:30px;
    margin-bottom:60px;
    position:relative;
  }

  & .address_info{
    & .direct_delivery{
      & .direct_delivery_wrapper{
        display:flex;
        gap:5px;
        align-items: center;
      }
      margin-bottom:30px;

      & *{
        cursor:pointer;
      }

      & p{
        padding-left:16px;
      }
    }
  }
}

/* step1 */
#step1{
  & .addlist{
    margin-bottom:30px;
    border-bottom:1px solid var(--base-color);
    padding-bottom:30px;

    & h3{
      &::after{
        width: 200px;
      }
    }

    & .addlist_wrap{
      display:flex;
      align-items: center;
      gap: 4px;
    }
  }

  & .address_info{
    & .userinfo_regist_form{
      display:none;
    }
  }
}

/* step2 */
#step2{
  & .error{
    color: #FF4C4C;
  }

  & .pay_box {
    border-top: solid 1px var(--base-pale-color);
    margin: 0;
    padding: 0 0 20px 0;

    & .radio {
      background: var(--base-light-color);
      padding: 20px 10px;
      font-weight: bold;
      display:flex;
      gap:5px;
    }

    & p{
      margin:10px;
    }

    & img{
      width:auto;
    }

    & .convenience_logo{
      & img{
        height:55px;
      }
    }
    & ul{
      & li{
        list-style-type: disc;
        margin-left:2em;
      }
    }

    & .accordion{
      margin:20px 0px;

      & .accordion_switch{
        display:inline-block;
        border:1px solid var(--base-pale-color);
        background-color: var(--base-light-color);
        padding:10px;

        &:hover{
          opacity: .8;
        }
      }

      & .accordion_content{
        padding:20px;
        border:1px solid var(--base-pale-color);
        position: relative;
        top:-1px;

        @media only screen and (max-width: 480px) {
          padding:10px;
        }


        & li{
          margin-bottom:20px;

          & a{
            color:var(--base-color);
            text-decoration:underline;
          }
        }
      }
      & .accordion_switch{
        margin:0px;
      }
    }
  }

  & .conveni_tbl{
    margin:20px auto 0px;

    & .sp{
      @media only screen and (max-width: 768px) {
        display:none;
      }
      @media only screen and (max-width: 480px) {
        display:block;
      }
    }
    
    & tr:last-child{
      & td{
        &:nth-of-type(1){
          border-radius: 0px 0px 0px 20px;
        }
        &:nth-of-type(2){
          border-radius: 0px 0px 20px 0px;
        }
      }
    }

    & th, & td{
      font-size:1.5rem;
      min-width:400px;
      padding:15px 50px;
      border:2px solid #fff;

      @media only screen and (max-width: 768px) {
        min-width:330px;
        padding:15px 20px;
      }
      @media only screen and (max-width: 480px) {
        min-width:auto;
        padding:10px;
      }

    }

    & th{
      background-color: var(--base-light-color);
      color:var(--base-color);

      &:nth-of-type(1){
        border-radius: 20px 0px 0px 0px;
      }
      &:nth-of-type(2){
        border-radius: 0px 20px 0px 0px;
      }
    }
    & td{
      background-color: #f5f5f5;

      &:nth-of-type(1){
        text-align: center;
      }s
    }
  }
}

#modal_step2{
  max-width: 700px;
  display:none;

  & .scrollbar {
    overflow-y: auto;
    overflow-x: hidden;
    margin: 10px 0;
    padding: 10px;
    border: solid 1px #cccccc;

    & ol{
      & li{
        margin-left:1.5em;
        border-bottom:0px;
        width:calc(100% - 1.5em);

        &:last-child{
          margin-bottom:0px;
          padding-bottom:0px;
        }
      }
    }
  }

  & .agree_box {
    text-align: center;
    padding: 10px;
    margin:0 auto;

    & label{
      justify-content: center;
    }
  }
}

/* step3 */
#step3{
  & .productListTable{
    & tr.sum_wrap{
      @media only screen and (max-width: 768px) {
        border:0px;
        margin-bottom:0px;
        padding:0px;
      }

      &:last-child{
        & td{
          font-size:25px;
        }
      }

      & td{
        border-bottom:0px !important;
        padding-bottom:5px;
        font-size:16px;

        @media only screen and (max-width: 768px) {
          display: block;
          padding: 10px;
          border-bottom: none;
  
          &:nth-of-type(1) {
            display:none;
          }
          &:nth-of-type(2) {
            grid-column: 1 / 4;
            grid-row:1/1;
            text-align: left;
          }
          &:nth-of-type(3) {
            grid-column: 4 / 5;
            grid-row:1/1;
            margin-bottom: 0px;
          }
        }
      }
    }
  }

  & .step3_note{
    width: 330px;
    font-size:0.8em;
    text-indent: -1em;
    position:relative;
    margin-top:10px;
    margin-left:1em;

    @media only screen and (max-width: 480px) {
      width:calc(250px - 1em);
    }
  }

  & .stepBtn{
    @media only screen and (max-width: 480px) {
      flex-flow: column;
      align-items: center;
    }
  }
}
#modal_step3{
  max-width: 700px;
  display:none;

  & .scrollbar {
    overflow-y: auto;
    overflow-x: hidden;
    margin: 10px 0;
    padding: 10px;
    border: solid 1px #cccccc;

    & ol{
      & li{
        margin-left:1.5em;
        border-bottom:0px;
        width:calc(100% - 1.5em);

        &:last-child{
          margin-bottom:0px;
          padding-bottom:0px;
        }
      }
    }
  }

  & .agree_box {
    text-align: center;
    padding: 10px;
    margin:0 auto;

    & label{
      justify-content: center;
    }
  }
}
/* step4 */
#step4{
  & .thanks{
    margin:30px auto 60px;
    font-size:2rem;
    font-weight:bold;
    text-align:center;
    max-width:400px;
    padding:30px;
    border:1px solid #ccc;
    background-color:var(--base-light-color);
  }
}

/*----------------------------------------*/
/* 注文履歴 */
/*----------------------------------------*/
#order_history{
  margin-bottom:50px;

  & h2{
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
  }

  & .order_history_btn{
    margin:30px auto;
    width:fit-content;
  }
  & .search_result_tbl{
    width:100%;
    border-left:0px;
    border-right:0px;
    margin-bottom:30px;

    & thead{
      & th{
        font-size:1.6rem;
        text-align:left;
        color:#000;
        border-top: 2px solid var(--base-color);
        border-bottom:0px;
        background-color: var(--base-light-color);
        padding:10px;
      }
    }

    & tbody{
      & tr{
        & td{
          font-size:1.6rem;
          text-align:left;
          border-bottom:0px;
          padding:0px;
          background-color: #f4faf4;
        }

        &:nth-of-type(2n - 1) {
          border-top:1px dotted var(--base-color);
          vertical-align:bottom;

          & td:first-child{
            width:120px;

            @media only screen and (max-width: 480px) {
              width: 100%;
            }
          }
        }
        &:nth-of-type(1) {          
          & td{
            /* padding:10px 0px 0px; */
            border-bottom:1px dotted var(--base-color);
            
            & >*{
              padding:10px;
            }
          }
        }
        &:nth-of-type(2) {
          & td{
            padding:10px;
          }
        }
        &:nth-of-type(2n) {
          vertical-align:top;

          & td{
            padding-top:10px;
          }
        }
        &:nth-of-type(3) {
          border-top:1px dotted var(--base-color);
        }
        &:nth-of-type(n + 3) {
          
          @media only screen and (max-width: 480px) {
            display: flex;
            flex-flow: column;
          }

          & td:last-child{
            @media only screen and (max-width: 480px) {
              padding-bottom:10px;
            }

          }
          
        }
        &:last-child {
          border-bottom:2px solid var(--base-color);
        }
      }
  
      & .product_image{
        max-width: 100px;
        margin:0 auto;

        @media only screen and (max-width: 480px) {
          max-width: 200px;
        }
      }

      & .product_name{
        color:#5390ff;
        text-decoration: underline;
      }
    }

    & .order_status{
      display:flex;
      align-items:flex-start;
      gap:10px;

      @media only screen and (max-width: 480px) {
        flex-flow: column;
      }

      *[class^="label_"]{
        white-space: nowrap;
      }
    }

    & .btn.disabled {
      color:#777777;
      cursor:default;
      
      &:hover {
        background: transparent linear-gradient(180deg, #FFFFFF 0%, #EAEAEA 100%) 0% 0% no-repeat padding-box;
      }
    }

    & .order_status_wrap{
      display:flex;
      justify-content: space-between;
      align-items: center;

      @media only screen and (max-width: 480px) {
        display:flex;
        flex-flow: column;
      }
    }
  }

  /* 検索フォーム */
  & .order_history_form{
    background-color: #fafafa;
    border:1px solid #ccc;
    margin:0 auto 30px;
    padding:30px;
    display:flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap:10px 30px;
    width:100%;
    
    @media only screen and (max-width: 767px) {
      width:100%;
      padding:20px;
      gap:10px;
    }

    & dl{
      display:flex;
      flex-wrap: wrap;
      align-items: center;
      gap:10px;
      
      @media only screen and (max-width: 480px) {
        width:100%;
        gap:3px;
      }

      &:last-child{
        width:100%;
      }

      @media only screen and (max-width: 767px) {
        flex-flow: column;
      }

      @media only screen and (max-width: 480px) {
        padding-bottom:0px;
      }

    }
    & dt{
      width:80px;

      @media only screen and (max-width: 767px) {
        width:100%;
      }
    }

    & dd{
      width:calc(100% - 90px);

      @media only screen and (max-width: 767px) {
        width:100%;
      }
    }

    & .paddingLeft-50{
      @media only screen and (max-width: 767px) {
        padding-left:0px;
      }
    }

    & .error_msg:empty{
      display:none;
    }

    & #from_date, & #to_date{
      width:200px;

      @media only screen and (max-width: 480px) {
        width:135px;
      }
    }

    & & #kubun, & #p-code{
      width:200px;

      @media only screen and (max-width: 480px) {
        width:100%;
      }
    }
  }

}

/*----------------------------------------*/
/* パスワードリセット */
/*----------------------------------------*/
#forget_password{
  & dl{
    margin:0px;
    width:100%;
  }

  & .forget_password_Btn{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:10px;
  }
}

/*----------------------------------------*/
/* ご利用ガイド */
/*----------------------------------------*/
#guide{
  & section{
    margin-bottom:50px;
  }

  & #guide_register, #guide_order{
    counter-reset: step-counter;

    & > .counter{
      counter-increment: step-counter;

      &::before{
        content: counter(step-counter) ". ";
      }
    }
  }

  & .title_gray_gl{
    margin-top:20px;
    margin-bottom:15px;

    &::after{
      width:35rem;
    }

  }

  & .guide_order_img{
    display: flex;
    margin:10px 0px 20px;
    gap:10px;

    @media (max-width: 480px){
      flex-wrap: wrap;
    }


    & img{
      width: calc((100% - 20px)/3);
      height:auto;

      @media (max-width: 480px){
        width:100%;
      }
    }

  }

  & ul.disc{
    list-style:disc;
    margin-left:2rem;
  }

  & .tbl1{
    border-collapse: collapse ;
    border:none;

    & th,
    & td {
       padding: 10px;
       line-height: 1.4;
       font-size: 1.6rem;
       text-align:center;
       border: solid 1px #666666;

       @media (max-width: 480px){
        font-size:1.4rem;
       }
    }
    & th{
       background: var(--base-color);
       color: #fff;
       font-weight: bold;
    }
    
    & tr:first-child th:first-child {
      border: none;
      background-color: transparent;
    }

    & .bglight{
      background: var(--base-light-color);
      color:#000;

    }
  }

  & .tbl2{
    border-collapse: collapse ;
    border:none;

    & th,
    & td {
       padding: 10px;
       line-height: 1.4;
       font-size: 1.6rem;
       border-top: solid 1px #666666;
       border-bottom: solid 1px #666666;
       text-align: left;
       vertical-align: top;

       @media (max-width: 480px){
        font-size:1.4rem;
       }
    }
    & th{
       background: #ededed;
       font-weight: normal;
    }
  }
}

/*----------------------------------------------------------------------------*/
/*利用登録依頼 userregist */
header.userregist{
  border-top: 10px solid #333333;
  border-bottom: 1px solid var(--base-color);

  @media only screen and (max-width: 767px){
    margin-top: 0;
  }
}

/*-----------------------*/
/*入力画面*/
#userregist main{
    width: 100%;
    min-height: calc(100vh - 66px - 46px);
}
.userregist_sec{
    & .read-txt{
        margin-bottom: 20px;
        text-align:center;
                
        @media only screen and (max-width: 480px) {
          text-align:left;
        }
    }

    & form {
        & dl {
            display: flex;
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 1px #ccc solid;
        }
        & dt {
            width: 20%;
            padding-top: 10px;
        }
        & dd {
            width: 80%;
        }
        @media only screen and (max-width: 959px) {
            & dt {
                width: 30%;
            }
            & dd {
                width: 70%;
            }
        }
        @media only screen and (max-width: 480px) {
            & dl {
                flex-flow: column;
            }
            & dt {
                width: 100%;
            }
            & dd {
                width: 100%;
            }
        }
    }
}
.userregist_btn{
    justify-content: center;
    display: flex;
    gap: 20px;
    margin: 0 auto 5rem;
    padding-top: 10px;
    flex-wrap: wrap;
}
/*招待メールモーダル*/ 
#modal_sendmail{
  display:none;

	&.modal {
	  max-width: 560px;
	  padding:0px;
	  overflow: hidden;
	  display:none;
	}
	.modal_header {
	  box-sizing: border-box;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 1rem;
	  background-color: #345aa0;

	  & h3{
	    padding-left: 1rem;
	    color: #fff;
	    font-size: 1.4rem;
	    font-weight:normal;
	    border-radius: 8px;
	  }
	}
	.close-modal{
	  display:none !important;
	}
	.modal_contents{
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-between;
	  box-sizing: border-box;
	  padding: 2rem;
	  background-color: #fafafa;

	  & li{
	    box-sizing: border-box;
	    width: 100%;
	    margin-bottom: 1rem;
	    padding-bottom: 1rem;
	    border-bottom: 2px solid #DDDDDD;
	  }

	  & dt{
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    margin: 0 0 .5rem;
	    font-weight: 700;
	    font-size: 1.2rem;
	    margin-bottom: 10px;
	  }
	  & dd{
	    margin-bottom: 10px;
	  }

	  @media only screen and (max-width: 767px) {
	    flex-flow: column;

	    & li{
	      width:100%;
	    }
	  }

	}
	.modal_footer{
	  display: flex;
	  flex-wrap: wrap;
	  padding: 0 2rem 2rem 2rem;
	  align-items: center;
	  justify-content: space-between;
	  
	  & a{
	    font-size:1.4rem;
	    color:#1976D2;

      &.text-white{
        color: #FFFFFF;
      }
	  }
	  & .btn{
	    font-size:1.4rem;
	  }
	}
}


/*----------------------------------------------------------------------------*/
/*お問合せ contact */
#contact{
    display: flex;
    justify-content: center; 
}
#contact main{
    width: 100%;
}
.contact_sec{
  & .title_gray_gl{
    &::after {
      width: 145px;
    }
  }
}
.contact_sec{
    & .read-txt{
        margin-bottom: 20px;

    }
    & form {
        & dl {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 1px #ccc solid;
        }
        & dt {
            width: 20%;
            padding-top: 10px;
        }
        & dd {
            width: 80%;

            & .comment-confirm{
                font-size: 1.4rem;
                padding: .8rem 1rem;
                color:#545454;
            }
        }
        @media only screen and (max-width: 959px) {
            & dt {
                width: 30%;
            }
            & dd {
                width: 70%;
            }
        }
        @media only screen and (max-width: 480px) {
            & dl {
                flex-flow: column;
            }
            & dt {
                width: 100%;
            }
            & dd {
                width: 100%;
            }
        }
    }
    & .checkbox-container{
        padding: 10px 0 20px;

        & a{
          color:var(--base-color);
        }
    }
}

.contact_btn{
    justify-content: center;
    display: flex;
    gap: 20px;
    margin: 0 auto 5rem;
    flex-wrap: wrap;
}  

/*----------------------------------------------------------------------------*/
/*クイックオーダー cart/quickorder.php */
.quickorderListTable{
    box-sizing: border-box;
    display: table;
    width: 100%;
    padding: 2rem;
    background-color: #fff;
    margin-bottom:40px;
    border:0px;
  
    @media only screen and (max-width: 480px) {
      margin-bottom: 0px;
    }
  
    & thead{
      width:100%;
  
      @media only screen and (max-width: 480px) {
        display: none;
      }
    }
    & th{
      box-sizing: border-box;
      display: table-cell;
      padding: 1rem;
      background-color: #f5f5f5;
      border-bottom: 1px solid #707070;
      font-size: 1.4rem;
      font-weight: 400;
      text-align: center;
      vertical-align: middle;
      color:#000;
    }
    & tr{
        margin: 0 0 2rem;
  
      &.active{
        background-color: #fdfbe7;
        
        & td{
          background-color: #fdfbe7;
        }
      }
      
      & td{
        box-sizing: border-box;
        display: table-cell;
        padding: 1rem;
        border-bottom: 1px solid #aaa;
        font-size: 1.4rem;
        text-align: center;
        vertical-align:middle;
  
  
        @media only screen and (max-width: 480px) {
          display: block;
          padding: 0;
          border-bottom: none;
  
          &:nth-of-type(1) {
            grid-column: 1 / 5;
            grid-row: 1;
            margin-right: 0;
          }
          &:nth-of-type(2) {
            grid-column: 1 / 5;
            grid-row: 2;
            &.text-left{
              box-sizing: border-box;
              display: flex;
              align-items: center;
              justify-content: space-between;
              gap: 10px;    
              min-height: 45px;
              padding: .5rem;
              background-color: #fff;
              border: 1px solid #aaa;  
              
              & .sp{
                  text-wrap: nowrap;
                  font-weight: 700;                       
              }
            }
          }
          &:nth-of-type(3) {
            grid-column: 1 / 5;
            grid-row: 3;
            margin-bottom: 0;
              
          }
          &:nth-of-type(4) {
            grid-row: 4;
            grid-column: 1 / 5;
          } 
          & .inputProductNum{
            max-width: 200px;
            text-align: right;
          }               
          & .product_num,                       
          & .product_price{
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 45px;
            padding: .5rem;
            background-color: #fff;
            border: 1px solid #aaa;
            
            & .sp{
                text-wrap: nowrap;
                font-weight: 700;             
            }
          }
        }
  
        & .sp{
          font-size: 1.4rem;
        }
      }
  
      @media only screen and (max-width: 480px) {
        display: grid;
        place-content: center;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin: 0 0 2rem;
        padding: 1rem;
        border: 1px solid #DDDDDD;
      }
    }
    & .product_image{
      max-width: 100px;
    }
    & .product_num{
      color: #5390ff;
      font-size: 1.8rem;
    }
    & .product_name{
      font-size: 1.9rem;
      font-weight: 700;
      text-decoration: underline;
      color: #5390ff;
    }
    & .product_price{
      font-size: 2rem;
      font-weight: 700;
      white-space: nowrap;
      @media only screen and (max-width: 480px) {
        box-sizing: border-box;
        display: flex  ;
        align-items: center;
        justify-content: space-between;
        min-height: 45px;
        padding: .5rem;
        background-color: #fff;
        border: 1px solid #aaa;
      }
    }
    & .product_vol{
      font-size: 1.8rem;
      @media only screen and (max-width: 480px) {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 45px;
        padding: .5rem;
        background-color: #fff;
        border: 1px solid #aaa;
      }
  
      & .inputNumber{
        border: 1px solid #aaa;
        padding: .2rem .5rem;
        text-align: right;
        width:auto !important;
      }
  
      & select{
        @media only screen and (max-width: 480px) {
          width: 100px;
        }
      }
    }
    & .icon_shoppingcart{
      font-size:1.2rem;    
    }
  
    & .btn{
      @media only screen and (max-width: 480px) {
        width: 100%;
      }
    }
  }


.product_cart.quickorder .product_name{
    font-size: 1.4rem;
    font-weight: normal;
    text-decoration: none;
    color: #000000;
}
.product_cart.quickorder .product_price{
    font-size: 1.6rem;        
}
.product_cart.quickorder .product_price .text-through::after{
    height: 0;
}
.product_cart.quickorder .cartBtns{
    justify-content: center;
}



