/* 共有パーツ */
.spacing {
    margin-bottom: 1rem;
}

.spacing-large {
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(90deg, transparent 0%, #659921 0%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    color: #333;
    padding: 2px 12px;
    display: inline;
    transition: all 0.8s ease;
    line-height: 2.0;
}

.highlight.no-padding {
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
}

.highlight.show {
    background-size: 100% 100%;
    color: white;
}


/* パンクズリスト */
.breadcrumb {
    color: #000;
    font-size: 14px;
}

.breadcrumb ol {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-right: 2%;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
    color: #999;
}


/* main */
.contents-wrapper {
    background-image: url(../img/about/about-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0 50px 0;

}

.title-wrap {
    margin-bottom: 35px;
    margin-left: 2%;
}

.title {
    font-size: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
    font-weight: bold;
}

.subtitle {
    font-family: Quicksand;
    font-weight: normal;
}




.contents-title {
    padding-top: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.contents-title p {
    font-size: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
    line-height: 1.8;

}

.contents-title img {
    width: 5vw;
    height: auto;

}



.main-text {
    background-color: #fff;
    font-family: Noto Sans JP;
    text-align: center;
    color: #000;
    font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
    padding-bottom: 50px;
    padding-top: 50px;
    line-height: 1.8;
}

.section-wrap {
    margin-top: 71px;
}

/* activities */
.section-wrapper {
    background-color: #FDFDFA;
}

.activities-wrapper {
    padding-bottom: 24vw;
}

.activities-title-wrap {
    margin-bottom: 45px;
}


.activities-main-title-wrap {
    padding: 24vw 0 68px 0;
    text-align: center;
}

.activities-main-subtitle {
    font-family: Quicksand;
    font-weight: normal;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 1040px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.activities-main-title {
    font-size: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
    font-weight: bold;
}

.activities-title {
    font-size: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
    font-weight: bold;
}

.activities-subtitle {
    font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
}

.activities-container {
    font-family: Noto Sans JP;
    color: #000;
    font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
    display: flex;
    gap: 6%;
    margin-top: 43px;
}

.activities-text {
    font-family: Noto Sans JP;
    color: #000;
    font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
    line-height: 1.8;
}



.activities-content_text {
    font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
    margin-top: 1rem;
}

.activities-text-wrap {
    margin-top: 4%;
}

/* スライダーアニメーション */
.coral-swiper {
    position: relative;
    width: 100%;
    height: 533px;
    overflow: hidden;
}

.coral-swiper .swiper-wrapper {
    display: flex;
    transition-property: transform;
}

.coral-swiper .swiper-slide {
    color: #ffffff;
    width: 100%;
    height: 100%;
    text-align: center;
    flex-shrink: 0;
}

.swiper-slide {
    color: #ffffff;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 533px;
}


/* ズームアニメーション */
@keyframes zoomUpAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.10);
    }
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
    animation: zoomUpAnimation 12s linear infinite;
    margin-bottom: 4%;
}

.swiper {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    max-height: 593px;
    min-height: 300px;
    z-index: 1;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.swiper-slide .swiper-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* スマホ対応 */

@media (max-width: 900px) {
    .contents-title img {
        width: 6vw;
    }

    .activities-container {
        flex-direction: column-reverse;
        gap: 0;
    }

    .coral-swiper {
        height: 550px;
        width: 100%;
    }

    .coral-swiper .swiper-slide img {
        object-fit: contain;
        padding: 20px;
    }

    .activities-content_text {
        text-align: center;
    }
}



@media(max-width: 768px) {
    .contents-title img {
        width: 7vw;
    }

    .coral-swiper {
        height: 500px;
        width: 100%;
    }

    .coral-swiper .swiper-slide img {
        object-fit: contain;
        padding: 20px;
    }
}


@media(max-width: 576px) {
    .main-text {
        text-align: left;
        padding: 3rem 1rem;
    }

    .pc-only {
        display: none;
    }

    .coral-swiper {
        height: 450px;
        width: 100%;
    }

    .coral-swiper .swiper-slide img {
        object-fit: contain;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .swiper-slide img.pc-image {
        display: none !important;
    }

    .sp-image {
        width: 1%;
        height: 1%;
    }

    .contents-title img {
        width: 8vw;
    }

}


@media (max-width: 393px) {
    .contents-title img {
        width: 11vw;
        height: auto;
    }

    .coral-swiper {
        height: 330px;
        width: 100%;
    }
}