.article {
    width: 100%;
    height: auto;
    display: flex
;
    justify-content: center;
    align-items: center;
    background-color: var(--Color4);
    padding: 20px 60px 20px 60px;
    box-sizing: border-box;
    overflow: hidden;
}
.artSpace{
    position: relative;
    width: 100%;
    max-width: 980px;
    height: auto;
    display: block;
}
.artPhotobox {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: flex
;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 20px 0;
    padding: 0;
}
.artPhotobox img {
    width: 100%;
    height: auto;
    display: block;
}
.article .Tit {
    font-weight: bold;
    font-size: 42px;
    color: var(--Color6);
    padding:0 0 10px 0;
}
.article .date{
    font-size: .9rem;
    color: var(--Color6)
}
.article p {
    line-height: 1.6rem;
    font-size: 1rem;
}
.article .shopBtnSpace{
    margin: 60px 0 20px 0;
    justify-content: center;
}
.shopBtnSpace .artBtn{
    width: calc(30% - 10px);
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--Color1);
    cursor: pointer;
    transition: all .3s linear;
}
.shopBtnSpace .artBtn::after{
    width: 14px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: inline-block;
}
.shopBtnSpace .artBtn:hover{
    background-color: var(--Color5);
}
.shopBtnSpace .artBtn:active{
    opacity: .5;
}
