
#slider {
    position: relative;
    height: 37.5rem;
    /*max-height: calc(100vh - 4.375rem);*/
    background-color: #000;
    overflow: hidden;
}
.slide {
    width: 100%;
    height: 37.5rem;
    /*max-height: calc(100vh - 4.375rem);*/
}
.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: absolute;
    right: 0;
    bottom: 1rem!important;
    left: 0;
    z-index: 1;
    margin: 0 auto!important;
    padding: 0!important;
}
.my-swiper-pagination .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 0.5rem!important;
    height: 0.5rem!important;
    margin: 0!important;
    padding: 0!important;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.2;
}
.my-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.my-swiper-button-prev,
.my-swiper-button-next {
    display: block;
    width: 2rem;
    height: 2rem;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto 0;
    opacity: 0.25;
}
.my-swiper-button-prev {
    left: 0.5rem;
}
.my-swiper-button-next {
    right: 0.5rem;
}
.my-swiper-button-prev::before,
.my-swiper-button-next::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border: solid 1px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.my-swiper-button-prev::before {
    border-width: 0 0 1px 1px;
    left: 0.25rem;
}
.my-swiper-button-next::before {
    border-width: 1px 1px 0 0;
    right: 0.25rem;
}

@media screen and (min-width: 768px)
{
    #header-secondary {
        top: 50rem;
    }

    #slider {
        height: 50rem;
        margin-top: -6.875rem;
        border-top: solid 1px #000;
    }
    .slide {
        height: 50rem;
    }

    .my-swiper-pagination {
        gap: 0.75rem;
        top: auto!important;
        bottom: 1.5rem!important;
    }
    .my-swiper-pagination .swiper-pagination-bullet {
        width: 1.0rem!important;
        height: 1.0rem!important;
    }

    .my-swiper-button-prev,
    .my-swiper-button-next {
        width: 3rem;
        height: 3rem;
        opacity: 0.25;
    }
    .my-swiper-button-prev {
        left: 0.75rem;
    }
    .my-swiper-button-next {
        right: 0.75rem;
    }
    .my-swiper-button-prev::before,
    .my-swiper-button-next::before {
        width: 0.75rem;
        height: 0.75rem;
    }
    .my-swiper-button-prev::before {
        left: 0.375rem;
    }
    .my-swiper-button-next::before {
        right: 0.375rem;
    }
}

@media screen and (min-width: 768px) and (any-hover: hover)
{
    .my-swiper-button-prev,
    .my-swiper-button-next {
        -webkit-transition: opacity .2s;
        transition: opacity .2s;
    }
    .my-swiper-button-prev:hover,
    .my-swiper-button-next:hover {
        opacity: 0.8;
    }
}





#main-grid {
    overflow: hidden;
}

@media screen and (min-width: 768px)
{
    #main-grid {
        display: grid;
        grid-template-columns: 1fr 23.75rem;
        padding-top: 6.875rem;
    }
}





#snapshot {
    width: 100%;
}

#snapshot-header {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.75rem;
    padding-top: 2.125rem;
    padding-bottom: 1.375rem;
    border-bottom: solid 1px #000;
    margin: 0 -0.625rem;
}
#snapshot-header::after {
    content: "";
    display: block;
    width: 3.125rem;
    height: 0.3125rem;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -0.3125rem;
}
#snapshot-header-title {
    font-size: 2.5rem;
    line-height: 1.125;
    margin: 0;
}
#snapshot-header-link {
    margin: 0 0 -0.2rem 0;
}
#snapshot-header-link a {
    position: relative;
    display: block;
    padding-right: 1.375rem;
}
#snapshot-header-link a::after {
    content: "";
    display: block;
    height: 0.5rem;
    width: 1.75rem;
    clip-path: polygon(0 0, 0 100%, 50% 50%);
    background-color: #000;
    position: absolute;
    top: 0.125rem;
    right: -0.75rem;
    bottom: 0;
    margin: auto 0;
}

#snapshot-article-list {
    margin: 0 auto;
}
.snapshot-article {
    position: relative;
    width: 100%;
    padding-bottom: 2.5rem;
}
.snapshot-article::before {
    content: "";
    display: block;
    width: 100%;
    border-bottom: dashed 1px #999;
    position: absolute;
    bottom: 0;
    right: 0;
}
.snapshot-article > a {
    position: relative;
    display: block;
    margin-top: 2.5rem;
}
.snapshot-article-image {
    background-color: #fff;
    margin-bottom: 0.8rem;
}
.snapshot-article-update {
    margin: 0;
}
.snapshot-article-title {
    margin: 0;
    font-weight: 700;
}
.snapshot-article-body {
    margin-bottom: -0.75rem;
}
.snapshot-article-body p {
    margin: 0;
}
.snapshot-article-body::after {
    content: "Continued";
    font-weight: 700;
}

@media screen and (max-width: 767px)
{
    .snapshot-article:last-of-type::before {
        display: none;
    }
}

@media screen and (min-width: 768px)
{
    #snapshot {
        padding-bottom: 6.25rem;
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }
    #snapshot-header {
        justify-content: flex-start;
        padding-top: 7.25rem;
        padding-bottom: 3.75rem;
        margin: 0;
    }
    #snapshot-header::after {
        width: 6.25rem;
        height: 0.625rem;
        bottom: -0.625rem;
    }
    #snapshot-header-title {
        font-size: 5rem;
    }
    #snapshot-header-link {
        margin-bottom: 0.25rem;
    }
    #snapshot-header-link a {
        position: relative;
        display: block;
    }

    #snapshot-article-list {
        width: calc(100% - 0.9375rem);
        padding-top: 1.875rem;
        -webkit-transform: translate(-0.78125rem, 0);
        transform: translate(-0.78125rem, 0);
    }
    .snapshot-article {
        width: calc(100% / 3);
        padding-left: 1.5625rem;
    }
    .snapshot-article::before {
        width: calc(100% - 1.5625rem);
    }
}

@media screen and (min-width: 768px) and (any-hover: hover)
{
    .snapshot-article > a::before {
        content: "";
        display: block;
        width: calc(100% + 1.5625rem);
        height: calc(100% + 0.875rem);
        background-color: rgba(0,0,0,0.05);
        position: absolute;
        top: -0.78125rem;
        left: -0.78125rem;
        z-index: -1;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: .2s;
        transition: .2s;
    }
    .snapshot-article > a:hover::before {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}





#short-comments-header {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-right: -0.625rem;
    margin-left: -0.625rem;
    padding-top: 3.125rem;
    padding-bottom: 1.375rem;
    border-bottom: solid 1px #000;
}
#short-comments-header::before {
    content: "";
    display: block;
    width: 3.125rem;
    height: 0.3125rem;
    background-color: #000;
    position: absolute;
    bottom: calc(-0.3125rem - 1px);
    left: 0;
}
#short-comments-header-title {
    font-size: 1.875rem;
    line-height: 1.125;
    margin: 0;
}
#short-comments-header-link {
    margin: 0 0 -0.1875rem 0;
}
#short-comments-header-link a {
    position: relative;
    display: block;
    padding-right: 1.375rem;
}
#short-comments-header-link a::after {
    content: "";
    display: block;
    height: 0.5rem;
    width: 1.75rem;
    clip-path: polygon(0 0, 0 100%, 50% 50%);
    background-color: #000;
    position: absolute;
    top: 0.125rem;
    right: -0.75rem;
    bottom: 0;
    margin: auto 0;
}

#short-comments {
    padding-bottom: 3.75rem;
}

#short-comments-list {
    padding-top: 0.25rem;
}
.short-comments-article {
    padding: 1.75rem 0;
}
.short-comments-article+.short-comments-article {
    border-top: dashed 1px #999;
}
.short-comments-article a {
    position: relative;
    display: block;
}
.short-comments-article-meta {
    margin: 0;
}
.short-comments-article-meta-posted,
.short-comments-article-meta-updated {
    display: block;
    font-size: 0.75rem;
    line-height: 1.334;
}
.short-comments-article-title {
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.5238;
    margin: 0.625rem 0 0.125rem 0;
}
.short-comments-article-body p {
    margin: 0;
}
.short-comments-article-body {
    margin-bottom: -0.5rem;
}

#short-comments-list+.pager {
    margin-top: 2.25rem;
}

@media screen and (min-width: 768px)
{
    #short-comments {
        position: relative;
        padding-left: 1.25rem;
        padding-right: 2.5rem;
        border-right: solid 1px #000;
    }
    #short-comments-header {
        position: static;
        justify-content: flex-start;
        gap: 1.625rem;
        margin: 0 -2.5rem 0 0;
        padding: 3.375rem 2.5rem 0 0;
        border-bottom: none;
        border-top: solid 1px #000;
    }
    #short-comments-header::before {
        content: "";
        display: block;
        width: 6.25rem;
        height: 0.625rem;
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
    }
    #short-comments-header-title {
        font-size: 3.75rem;
    }
    #short-comments-header-link {
        margin-bottom: 0.125rem;
    }

    #short-comments-list {
        padding: 0.75rem 0 0 0;
    }
    .short-comments-article {
        padding: 2.5rem 0;
    }
    .short-comments-article-meta {
        margin: 0;
    }
    .short-comments-article-meta-posted,
    .short-comments-article-meta-updated {
        display: inline-block;
        font-size: 1rem;
        line-height: 2;
    }
    .short-comments-article-meta-updated::before {
        content: "/";
    }
    .short-comments-article-title {
        font-size: 1.5rem;
        line-height: 1.667;
        margin-top: 0;
        margin-bottom: 0;
    }
    .short-comments-article-body {
        margin-bottom: 0;
    }

    #short-comments-list+.pager {
        margin-top: 0.75rem;
    }
}

@media screen and (min-width: 768px) and (any-hover: hover)
{
    .short-comments-article a::before {
        content: "";
        display: block;
        width: calc(100% + 1.5625rem);
        height: calc(100% + 1rem);
        background-color: rgba(0,0,0,0.05);
        position: absolute;
        top: -0.5rem;
        left: -0.78125rem;
        z-index: -1;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: .2s;
        transition: .2s;
    }
    .short-comments-article a:hover::before {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}





#update-information-header {
    position: relative;
    margin-right: -0.625rem;
    margin-left: -0.625rem;
    padding-top: 2.75rem;
    padding-bottom: 1.375rem;
    border-bottom: solid 1px #000;
}
#update-information-header::before {
    content: "";
    display: block;
    width: 3.125rem;
    height: 0.3125rem;
    background-color: #000;
    position: absolute;
    bottom: calc(-0.3125rem - 1px);
    left: 0;
}
#update-information-header-title {
    font-size: 1.875rem;
    line-height: 1.125;
    margin: 0;
}

#update-information-list {
    padding: 1.875rem 0;
}
.update-information-article {
    padding: 0.25rem 0;
}
.update-information-article a {
    position: relative;
    display: block;
}
.update-information-article-update {
    font-size: 0.75rem;
    line-height: 1;
    margin: 0;
}
.update-information-article-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

@media screen and (min-width: 768px)
{
    #update-information {
        grid-row: 2 / 3;
        grid-column: 2 / 3;
        padding-bottom: 3.75rem;
    }
    #update-information.en {
        grid-column: 1 / 3;
    }

    #update-information-header {
        margin: 0;
        padding-top: 3.75rem;
        padding-right: 1.25rem;
        padding-bottom: 0;
        padding-left: 2.5rem;
        border-top: solid 1px #000;
        border-bottom: none;
    }
    #update-information-header::before {
        width: 6.25rem;
        height: 0.625rem;
        bottom: auto;
        top: 0;
    }
    #update-information-header-title {
        font-size: 2rem;
    }

    #update-information-list {
        padding: 3.125rem 1.25rem 5.25rem 2.5rem;
    }
    .update-information-article {
        padding: 0.5rem 0;
    }
    .update-information-article-update {
        font-size: 1rem;
    }
}

@media screen and (min-width: 768px) and (any-hover: hover)
{
    .update-information-article a::before {
        content: "";
        display: block;
        width: calc(100% + 1.5625rem);
        height: calc(100% + 0.78125rem);
        background-color: rgba(0,0,0,0.05);
        position: absolute;
        top: -0.78125rem;
        left: -0.78125rem;
        z-index: -1;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: .2s;
        transition: .2s;
    }
    .update-information-article a:hover::before {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
