    /* PC ここから-------------------------------- */
    @media (min-width: 768px) {
        .smp , .sp{display:none;}
        
        h1{
            text-align:center;
            font-size: 50px;
            border: none;
            color: rgb(79, 65, 53);
        }

        .main{
            width: 1000px;
            margin:0 auto;
        }

        .movie{
            width: 500px;
            margin: 0 auto;
        }
    
        .link-title{
            text-align: center;
            margin: 0 auto;
        }
    
        .link-table{
            width: 80%;
            margin: 0 auto;
        }
    
        .link-table ul{
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
    
        .link-table ul li{
            display: block;
            list-style: none;
        }
    
        .link-table img{
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%
        } 
    }
    /* PC ここまで-------------------------------- */
    
    
    /* スマホ ここから-------------------------------- */
    @media screen and (max-width: 767px) {
        .pc{display:none;}

        h1{
            text-align:center;
            font-size: 2rem;
            border: none;
            color: rgb(79, 65, 53);
        }

        .movie{
            width: 100%;
            margin: 0 auto;
        }

        .link-title{
            text-align: center;
            margin: 0 auto;
            font-size: 2rem;
        }
    
        .link-table{
            margin: 0 auto;
        }
    
        .link-table ul{
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 5px;
        }
    
        .link-table ul li{
            display: block;
            list-style: none;
        }
    
        .link-table img{
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 50%
        } 

    }
    /* スマホ ここまで-------------------------------- */
    .visual img{
        height : 300px;
        object-fit: cover;
    }
    .footer{
        text-align:center;
    }
    
    a{
        border: none;
        color: rgb(79, 65, 53);
        font-size: 1.2rem;
    }