@charset "UTF-8";


/* 商品ページのディスクリプション見出し */
.markdown h2 {
padding-left: 1rem;
  border-left: 4px solid #000;
 font-size: 1.6rem !important;
}
.markdown h3 {
background-color:#f0f0f0;
  width: fit-content;
padding: 0.5rem 1.0rem;
 border-radius: 0.5rem;
color:#292929;
}

/* アバウトページのレイアウト */
.about-main .text.shop-info{
    display: none;
  }

.about-main h3, .about-main h4{
    text-align: center;
  }

  .about-main .text a {
    text-decoration: underline;
    text-decoration-color: black;
  }
  .about-main .text a:hover {
    color:#fff;
    background-color: black;
  }

/* ボタンのスタイル */
.button01 a {
    background: #000;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 20px 25px;
    font-size: 1.2em;
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: bold;
border:3px solid #000;
text-decoration: none !important;
}
.button01 a:hover {
    background: #eee !important;
    color: #333 !important;
border:3px solid #333 !important;
text-decoration: none !important;
}
.button01 a:after {
    content: '';
width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button01 a:hover:after {
    border-color: #333;
}
