.ss_title_wrap {
    width: 100%;

    figure {
        width: 100%;
        margin-top: 100px;

        figcaption {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            /* padding: 0 5%; */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 60px;
            text-align: center;

            .logo {
                img {
                    max-height: 140px;
                    object-fit: contain;
                }
            }

            p {
                font-size: 22px;
                font-weight: 400;
                line-height: 1.5;
            }
        }

        .img_wrap {
            width: 100%;
            margin-top: 100px;

            img {
                width: 100%;
                object-fit: contain;
            }
        }
    }
}

.archive {
    width: 100%;

    ul {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;

        li {
            width: 100%;
            margin-bottom: 100px;

            figure {
                width: 100%;

                figcaption {
                    width: 100%;
                    margin-bottom: 30px;

                    p {
                        font-size: 30px;
                        font-weight: 700;
                        text-align: center;
                    }
                }

                .video_wrap {
                    width: 100%;
                    /* aspect-ratio: 16/9; */

                    video{
                        width: 100%;
                        object-fit: contain;
                    }
                    iframe{
                        width: 100%;
                        height: auto;   
                    }
                }
            }

            &:nth-last-of-type(1) {
                /* margin-bottom: 0; */
            }
        }
    }
}

@media (max-width:1200px) {
    .ss_title_wrap {
        figure {

            /* margin-top: 100px; */
            figcaption {
                max-width: 100%;
                margin: 0;
                padding: 0 5%;

                /* gap: 60px; */
                p {
                    /* font-size: 22px; */
                }
            }

            .img_wrap {
                /* margin-top: 100px; */
            }
        }
    }

    .archive {
        ul {
            max-width: 100%;
            padding: 0 5%;
            margin: 0;
            li {
                margin-bottom: 80px;

                figure {
                    figcaption {

                        /* margin-bottom: 30px; */
                        p {
                            /* font-size: 24px; */
                        }
                    }
                }
            }
        }
    }
}

@media (max-width:1023px) {
    .ss_title_wrap {
        figure {

            /* margin-top: 100px; */
            figcaption {
                gap: 40px;

                .logo {
                    img {
                        max-height: 100px;
                    }
                }

                p {
                    font-size: 18px;
                }
            }

            .img_wrap {
                /* margin-top: 100px; */
            }
        }
    }
}

@media (max-width:767px) {
    .ss_title_wrap {
        figure {
            margin-top: 40px;

            figcaption {
                gap: 20px;

                .logo {
                    img {
                        max-height: 80px;
                    }
                }

                p {
                    font-size: 16px;
                }
            }

            .img_wrap {
                margin-top: 40px;
            }
        }
    }

    .archive {
        ul {
            li {
                margin-bottom: 60px;

                figure {
                    figcaption {

                        margin-bottom: 20px;
                        p {
                            font-size: 24px;
                        }
                    }
                }
            }
        }
    }

}

@media (max-width:450px) {
    .ss_title_wrap {
        figure {
            margin-top: 20px;

            figcaption {
                gap: 20px;
                /* .logo{
                    img{
                        max-height: 80px;
                    }
                }
                p{
                    font-size: 16px;
                } */
            }

            .img_wrap {
                margin-top: 20px;
            }
        }
    }

     .archive {
        ul {
            li {
                margin-bottom: 40px;

                figure {
                    figcaption {

                        margin-bottom: 15px;
                        p {
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
}