@charset "utf-8";

/*============================================================
main
============================================================*/
/* main */
.mainVisual {
    position: relative;
}

.mainVisual img {
    aspect-ratio: 4 / 4;
    object-fit: cover;
}

.catchCopy {
    color: #fff;
    text-align: center;
    font-size: clamp(15px, 4.01vw, 40px);
    font-family: "Shippori Mincho";
    font-weight: 700;
    position: absolute;
    width: 75%;
    top: 50%;
    left: 50%;
    background-color: rgba(33, 54, 64, 0.2);
    transform: translate(-50%, -50%);
}

/* main pc */
@media screen and (min-width: 769px) {
    .mainVisual img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

}

/* pc 769px */

/* about */
.about {
    padding: 50px var(--contentPadding);
}

.about__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 30px auto 0;
}

.aboutImg {
    border-radius: 10px;
}

.aboutTxt {
    font-size: 1.2rem;
    text-align: justify;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 10px;
}

.aboutTxt:first-of-type {
    margin-top: 0;
}

/* about pc */
@media screen and (min-width: 769px) {
    .about {
        padding: 80px var(--contentPadding);
    }

    .about__wrapper {
        max-width: 1180px;
        flex-direction: row;
        align-items: center;
        gap: 0 40px;
        margin: 50px auto 0;
    }

    .aboutImg {
        width: 50%;
    }

    .aboutTxt__wrapper {
        width: 50%;
    }

    .aboutTxt {
        font-size: 1.5rem;
    }

}

/* pc 769px */


/* news */
.news {
    padding: 50px var(--contentPadding);
    background-color: var(--colorSecondary);
}

.title--secondaryColor span::after {
    background-color: var(--colorPrimary);
}

.news__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 30px auto 0;
}

.newsImg {
    border-radius: 10px;
}

.newsContent {
    display: flex;
    border-bottom: solid 1.5px var(--colorPrimary);
    padding-bottom: 10px;
    margin-top: 10px;
}

.newsContent:first-of-type {
    margin-top: 0;
}

.newsContent__date,
.newsContent__txt {
    font-size: 1.4rem;
    font-weight: 400;
}

.newsContent__txt:hover {
    cursor: pointer;
    opacity: 0.5;
}

.newsContent__txt {
    margin-left: 20px;
}

.newsArchive {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: right;
    margin-top: 10px;
}

.newsArchive::after {
    display: inline-block;
    content: '';
    width: 8px;
    height: 8px;
    vertical-align: 1px;
    transform: rotate(45deg);
    border-top: 2px solid;
    border-right: 2px solid;
    margin-left: 10px;
}

/* news pc */
@media screen and (min-width: 769px) {
    .news {
        padding: 80px var(--contentPadding);
    }

    .news__wrapper {
        max-width: 1180px;
        flex-direction: row-reverse;
        align-items: center;
        gap: 0 40px;
        margin: 50px auto;
    }

    .newsImg {
        width: 50%;
    }

    .news__group {
        width: 50%;
    }

    .newsContent {
        flex-wrap: wrap;
    }

    .newsContent__date,
    .newsContent__txt {
        text-align: left;
        font-size: 2.0rem;
    }

    .newsArchive {
        font-size: 2.0rem;
    }

    .newsArchive::after {
        vertical-align: 2px;
    }

}/* px 769px */


/* menu */
.menu {
    padding: 50px var(--contentPadding);
}

.menu__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 30px auto 0;
}

.menuImg {
    border-radius: 10px;
}

.menuContent {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1.5px var(--colorSecondary);
    padding-bottom: 10px;
    margin-top: 10px;
}

.menuContent:first-of-type {
    margin-top: 0;
}

.menuContent__item,
.menuContent__txt {
    font-size: 1.4rem;
    font-weight: 400;
}

/* menu */
@media screen and (min-width: 769px) {
    .menu {
        padding: 80px var(--contentPadding);
    }

    .menu__wrapper {
        max-width: 1180px;
        flex-direction: row;
        align-items: center;
        gap: 0 40px;
        margin: 50px auto;
    }

    .menuImg {
        width: 50%;
    }

    .menu__group {
        width: 50%;
    }

    .menuContent__item,
    .menuContent__txt {
        font-size: 2.0rem;
    }

}

/* px 769px */


/* access */
.access {
    padding: 50px var(--contentPadding);
    background-color: var(--colorSecondary);
}

.title--secondary span::after {
    background-color: var(--colorPrimary);
}

.access__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    margin: 30px auto 0;
}

.accessContent {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1.5px var(--colorPrimary);
    padding-bottom: 10px;
    margin-top: 10px;
}

.accessContent:first-of-type {
    margin: 0;
}

.accessContent__item,
.accessContent__txt {
    font-size: 1.4rem;
    font-weight: 400;
}

.map {
    max-width: 1180px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

/* access pc */
@media screen and (min-width: 769px) {
    .access {
        padding: 80px var(--contentPadding);
    }

    .access__wrapper {
        max-width: 1180px;
        flex-direction: row;
        align-items: center;
        gap: 0 40px;
        margin: 50px auto 0;
    }

    .access__group {
        width: 50%;
    }

    .accessContent__item,
    .accessContent__txt {
        font-size: 2.0rem;
    }

    .map {
        width: 50%;
    }

}

/* px 769px */