@charset "UTF-8";
/* CSS Document */
.Breadcrumb {
  padding: 1em;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}

body a {text-decoration: none;}    
.category {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;    
}

.item {
text-align: center;     
width: 48%;
margin-bottom: 10px;
padding: 2px;
margin: 10px 0px 0px 10px;    
font-family:Arial;
font-size:18px;
color:#333333;
border: solid 1px #333333;
text-decoration:none;        
}
/* ボタン */
.button001 {
      display: inline-block;
      padding: 10px 30px;
      color: #333333;
      border: solid 1px #333;    
      text-decoration: none;
      font-family: Arial;
      font-size: 18px;
      text-align: center;
      margin: 0px 0px;
    }
    .button001 a:hover {color:#333;}
    .button001 a:visited {color:#333;}
    .button001 a:link {color:#333;}

.button002 {
      display: inline-block;
      padding: 10px 30px;
      color: #fff;
      border: solid 1px #fff;    
      text-decoration: none;
      font-family: Arial;
      font-size: 18px;
      text-align: center;
      margin: 0px 0px;
    }
    .button002 a:hover {color:#fff;}
    .button002 a:visited {color:#fff;}
    .button002 a:link {color:#fff;}

/* カテゴリ */
.category ul {
  list-style: none;
  padding: 0;
  margin: 0px auto;
  text-align: center;
}

.category li {
  background-color: #fff;
  color: #333;
  padding: 12px 20px;
  display: inline-block;    
  box-sizing: border-box;
  font-family: Arial;
  border: solid 1px #333;    
  margin: 5px;
  text-align: center;
  width: calc(25% - 20px);
  text-align: center;        
}
    

.category li:last-child {
  margin-right: 10px;
}

.category li a {
  color: #333;
  text-decoration: none;
}

.category li a:link,
.category li a:visited {
  color: #333;
}

.category li a:hover,
.category li a:active {
  color: #333;
}

@media (max-width: 768px) {
  .category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-left: -10px;
    margin-right: -10px;
  }

  .category li {
    width: calc(50% - 20px);
    margin: 10px;
    text-align: center;    
  }
}
.saleitem_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.saleitem_list-item {
  width: 25%;
  max-width: 25%;
  padding: 0px;
  text-align: center;
  color: #333333;
  font-size: 12px;
  font-family: serif;
  background-color: #ffffff;
  margin: 10px;
}

@media screen and (max-width: 768px) {
  .saleitem_list {
    justify-content: center;
  }
  .saleitem_list-item {
    width: 43%;
    max-width: 43%;
    margin-bottom: 15px;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ポップアップ */      
       .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background-color: #ffffff;
            border: none;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 9999;
        }
        
        .popup.show {
            display: block;
        }
        
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9998;
        }
        
        .popup-overlay.show {
            display: block;
        }
      .qr-button {
      border: 1px solid #333333;
      background-color: #fff;
      color: #333;
      font-size: 14px;
      padding: 5px 10px;
      cursor: pointer;
    }          
/* テキストエリア */      
  .copy-button {
      border: 1px solid #333333;
      background-color: #fff;
      color: #333;
      font-size: 14px;
      padding: 5px 10px;
      cursor: pointer;
      text-align: center;
    }

    .copy-textarea {
      border: 1px solid #cccccc;
      color: #333333;
      font-size: 14px;
      padding: 5px;
      resize: vertical;
      vertical-align: middle;
    }

    .textareacontainer {
      display: flex;
      align-items: center;
    justify-content: flex-start;    
    }
/* Color */
.color-container {
    display: flex;
    align-items: center; /* 垂直方向にセンタリング */
    gap: 5px;
  }

  .color-circle {
    display: inline-table;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    box-shadow: 0 0 0 0.5px #ccc;
    overflow: hidden;
  }

  .color-label {
    font-size: 12px;
    white-space: nowrap; /* テキストが折り返されないようにする */
  }

.color-circle span{
  display: table-cell;
}
.color-circle .black {
  background: #000;
}
.color-circle .beige{
  background: #EFE3D3;
}
.color-circle .white{
  background: #fff;
}
.color-circle .pink{
  background: #E0848C;
}
.color-circle .brown{
  background: #9C8269;
}
.color-circle .navy{
  background: #4C5778;
}
.color-circle .purple{
  background: #553477;
}
.color-circle .darkgreen{
  background: #1C4F4F;
}
.color-circle .orangebrown{
  background: #8B4513;
}