@charset "UTF-8";

.gallery h2, h3, h4{
    font-family: "Zen Maru Gothic", sans-serif;
}

.link {
    
    font-family: "Zen Maru Gothic", "Montserrat", sans-serif;
}

.link:hover {
    transition: 0.4s;
    background-color: #847e7c;
    color: #ffffff;
}


/* --------------------------------------------------------------------- */
/* トップビュー */
/* --------------------------------------------------------------------- */
.topview {
    background-image: url(../images/bg/sora.jpg);
    background-size: cover;
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}

.heading-decoration::after {
    display: none;
}





/* --------------------------------------------------------------------- */
/* ニューストップ */
/* --------------------------------------------------------------------- */
.newstop {
    padding: var(--v-space) 0;
    background-color: #ffffff;
}

.newstop h2 {
    text-align: center;
    font-size: 30px;
    padding: 30px 0;
    background-color: #000000;
    color: #ffffff;
    margin-bottom: 30px;
}

.newstop-container {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: 100px 25px;
    justify-content: center;
    
}

@media (max-width: 680px) {
    .newstop-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 400px) {
    .newstop-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.news-item {
    border: solid 1px #000000;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 2px #000000;
}

.news-item.hide {
    display: none;
}

.news-img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.news-img img {
    height: 100%;
    object-fit: cover;
}

.news-text {
    padding-top: 1rem;
    padding: .5rem;
    position: absolute;
    bottom: 1rem;
    width: calc(100% - 2rem);
    color: #ffffff;
    box-sizing: border-box;
    background-color: #00000085;
}

.news-title {
    text-align: center;
    margin-bottom: .5rem;
}

.news-day {
    text-align: right;
}

.page-shift {
    width: 20%;
    min-width: calc(250px * 0.92);
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.page-shift>* {
    background-color: #ffffff;
    border: solid 1px #000000;
    overflow: hidden;
}

.prev {
    border-radius: 2rem 0 0 2rem;
}

.next {
    border-radius: 0 2rem 2rem 0;
}

.page-shift a {
    display: block;
    padding: 1rem 2rem;
}