//SEO Box v.3 by Eneswe
* {
  box-sizing: border-box;
  &::before, &::after {
    box-sizing: border-box;
  }
}

.container {
  margin: 0 auto;
  padding: 4rem;
  width: 48rem;
}

.accordion {
  .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    button[aria-expanded='true'] {
      border-bottom: 1px solid #e5e5e5;
    }
  }
  button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #333333;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    &:hover, &:focus {
      cursor: pointer;
      color: #db0000;
      &::after {
        cursor: pointer;
        color: #db0000;
        border: 1px solid #fff;
      }
    }
    .accordion-title {
      margin: 10px;
    }
    .icon {
      display: inline-block;
      position: absolute;
      top: 18px;
      right: 0;
      width: 22px;
      height: 22px;
      border: 1px solid;
      border-radius: 22px;
      &::before {
        display: block;
        position: absolute;
        content: '';
        top: 9px;
        left: 5px;
        width: 10px;
        height: 2px;
        background: currentColor;
      }
      &::after {
        display: block;
        position: absolute;
        content: '';
        top: 5px;
        left: 9px;
        width: 2px;
        height: 10px;
        background: currentColor;
      }
    }
  }
  button[aria-expanded='true'] {
    color: #db0000;
    .icon {
      &::after {
        width: 0;
      }
    }
    + .accordion-content {
      opacity: 1;
      max-height: fit-content;
      transition: all 200ms linear;
      will-change: opacity, max-height;
    }
  }
  .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    p {
      font-size: 14px;
      font-weight: 300;
      margin: 3em 0;
    }
  }
}

.footer-seo__description {
    font-size: 14px;
    border: 1px solid var(--monotaro-greylight-color_9);
    box-sizing: border-box;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, .1);
    border-radius: 6px;
    text-align: justify;
    padding: 15px;
    margin-bottom: 30px;
}
.shortText {
    transition: height 0.5s;
    height: 43em;
    overflow: hidden;
        }

.shortText.small {
        -webkit-mask-image: black;
        }

.shortText.small span.more {
            display: none;
        }
.small, small {font-size: 100%;}
.moreless-btn {
        margin-top: 15px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 5px;
    background: #e02b27;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    }

.product-table {
    display: block;
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #f9f9f9;
    overflow-x: auto;
}
.product-table th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
}
.product-table th, .product-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}