
@charset "UTF-8";
/* CSS Document */

/* グッズ */
#goods .main {
    padding: 100px 0 0;
    background-color: #FDEBCE;
}
#goods .main .read {
    text-align: center;
    font-size: 14px;
}
#goods .main h2 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    color: #FF6201;
}

#goods h3 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 30px;
}


.goods-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 50px auto 0;
    justify-content: center;
    gap: 70px 20px;
}
.goods-list li  {
    width: 40%;
    text-align: center;
}
.goods-img img {
    width: 100%;
}


.goods-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.goods-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.goods-img{
    /*border-radius: 15px;*/
    text-align: center;
    letter-spacing: 2px;
    line-height: 25px;
}
.main a {
    display: inline-block;
    color: #fff;
    position: relative;
    padding: 10px 40px;
    border-radius: 30px;
    background:  #000000;
    margin: 20px 0px 0;
}
p.product-name{
    display: inline-block;
    position: relative;
    color: #FF6201;
    padding: 10px 0;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    height: 100px;
    width: 95%;
}
p.price {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif !important;
    position: relative;
    border-radius: 20px;
    
    
}
#history .comic .comic-list a:active {
  /*ボタンを押したとき*/
  border:none;
  -webkit-transform: translate(3px,3px);
  transform: translate(3px,3px);
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding-bottom: 20px;
    font-family: Arial, sans-serif;
}

.pagination a,
.pagination span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 17px;
    background: none;
    padding: 10px 5px;
    margin: 15px 0 0 ;
}

.pagination .prev.disabled,
.pagination .next.disabled {
    color: #888;
    cursor: default;
    padding: 10px 12px;
}

.pagination a {
    color: #888; /* 通常ページ番号の薄グレー */
}

.pagination span.current {
    color: black; /* 現在ページ黒 */
}


.prev img,.next img  {
    width: 80%;
}