@charset "UTF-8";

/*=================
Swiper
==================*/
.swiper {
    margin-top: var(--header-height-pc);
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 50px;
    /* pagination用のスペース */
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.swiper h1 {
    position: fixed;
    color: var(--white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1);
    font-family: var(--font-zen);
    font-size: 48px;
    top: 40%;
    left: 10%;
    font-weight: 400;
    z-index: 10;
    opacity: 0;
    transform: translateY(-80px);
    transition: opacity 0.2s, visibility 0.1s;
    animation: slideDown 2s ease-out 0.2s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.group-title.is-hidden {
    opacity: 0;
    visibility: hidden;
}


.swiper .swiper-slide {
    position: relative;
}


.swiper .swiper-wrapper,
.swiper .swiper-slide {
    height: calc(100vh - var(--header-height-pc) - 50px);
}

.swiper .swiper-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.swiper .swiper-slide .HERO1 img,
.swiper .swiper-slide .HERO3 img {
    object-position: center center;
}

.swiper .swiper-slide .HERO2 img,
.swiper .swiper-slide .HERO1_sp img {
    object-position: center top;
}

.swiper .swiper-slide picture.sp {
    display: none;
}

.swiper-pagination {
    margin-top: 12px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--brown);
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    z-index: 500;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--brown);
}

.swiper-button-prev {
    left: 12px;
}

.swiper-button-next {
    right: 12px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #fff;
    font-size: 32px;
}

.swiper-button-prev::after {
    content: '‹';
}

.swiper-button-next::after {
    content: '›';
}

@media (max-width: 768px) {
    .swiper {
        margin-top: var(--header-height-SP);
        padding-bottom: 56px;
    }

    .swiper h1 {
        font-size: 32px;
    }

    .swiper .swiper-slide picture.sp {
        display: block;
    }

    .swiper .swiper-slide picture.pc {
        display: none;
    }

    .swiper .swiper-wrapper,
    .swiper .swiper-slide {
        height: calc(100dvh - var(--header-height-SP) - 56px);
    }

    .swiper-pagination {
        height: 56px;
        gap: 6px;
    }
}


/*=================
desc
==================*/
.desc {
    width: 60%;
    margin-top: 32px;
    margin-inline: auto;
    line-height: 1.5;
}

.desc p {
    font-size: 20px;
}

@media (max-width: 768px) {
    .desc {
        margin-top: 18px;
        width: 80%
    }

    .desc p {
        font-size: 18px;
    }
}

/*=================
concert-info
==================*/
.concert-info {
    margin-top: 80px;
    padding-top: 48px;
    padding-bottom: 48px;
    background-image: url('../img/concertinfo_back.webp');
    background-image: image-set(url('../img/concertinfo_back.webp') type("image/webp"),
            url('../img/concertinfo_back.png') type("image/png"));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    line-height: 1.5;
}

.concert-info h2 {
    margin-bottom: 12px;
}

.concert-info .section-inner {
    width: 40%;
    margin-inline: auto;
    text-align: left;
}

.concert-info .section-inner h2 {
    text-align: center;
}

.concert-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    border-radius: 8px;
    padding: 12px 16px;
}

.concert-table th {
    text-align: left;
    font-weight: 600;
    width: 20%;
    padding: 10px 0;
}

.concert-table td {
    padding: 10px 0;
    line-height: 1.6;
}

.concert-table tr+tr th,
.concert-table tr+tr td {
    padding-top: 18px;
}


@media (max-width: 768px) {
    .concert-info .section-inner {
        width: calc(100% - 64px);
        text-align: left;
        margin-left: 32px;
        margin-right: 32px;
    }
}

/*=================
recruit
==================*/
.recruit {
    padding-top: 48px;
    padding-bottom: 80px;
}

.recruit .section-inner {
    width: 60%;
    margin-inline: auto;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.recruit .section-inner h2 {
    margin-bottom: 24px;
}

.recruit img {
    -webkit-mask-image: radial-gradient(ellipse, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(ellipse, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);

    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .recruit {
        margin-right: 32px;
        margin-left: 32px;
    }

    .recruit .section-inner {
        display: block;
        width: 100%;
        line-height: 1.5;
        text-align: left
    }

    .recruit h2 {
        margin-bottom: 24px;
    }
}