/*==============
    wallpaper
===============*/
ul.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.list li {
    width: calc(50% - 24px);
    margin-bottom: 48px;
}
ul.list li a .thumbnail{
    overflow: hidden;
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f0f0f0;
}
ul.list li a .thumbnail img {
    display: block;
    transition: 0.8s all;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
ul.list li a .thumbnail .ttl {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
#wallpaper .imgWrap {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}
#wallpaper .imgWrap img {
    width: 100%;
}
#wallpaper .link {
    justify-content: center;
    display: flex;
    gap: 24px;
}
#wallpaper .link li a {
    background: var(--color1);
    color: var(--black);
    display: block;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
    transition: 0.4s all;
}
#wallpaper .link li a:hover{
    opacity: 0.5;
}
#wallpaper .link li {
    width: calc(100%/3);
}
@media screen and (max-width: 768px){
    #wallpaper .link {
        row-gap: 40px;
    }
    #wallpaper .link li {
        width: 90%;
        margin: 0 auto 20px;
    }
    #wallpaper .imgWrap {
        width: 100%;
        margin-top: 32px;
    }
    ul.list li{
        width: 100%;
    }
}
@media screen and (max-width: 420px){
    .list li {
        width: 100%;
        margin-bottom: 24px;
    }
    #wallpaper .link li a {
        padding: 18px 0;
    }
    #wallpaper .imgWrap {
        margin-top: 56px;
    }
}
/* 0122 */
ul.list li a .ttl {
  margin-top: 10px;
}
ul.list li:hover a .ttl{
    color: var(--color1);
  }
  ul.list li a .thumbnail {
  overflow: hidden;
}
ul.list li:hover a .thumbnail img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
}
