/* section1 */
.c-section.p-section-front-page-content {
    padding: 0 !important;
}

/* section2 */
.loop-text {
    width: 100%;
    overflow: hidden;
}

.loop-text-inner {
    display: flex;
    width: max-content;
    animation: loopText 20s linear infinite;
    padding: clamp(22px, 4.03vw, 55px) 0 clamp(24px, 4.39vw, 60px);
}

.loop-text-inner span {
    font-size: clamp(32px, 5.86vw, 80px);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(152, 197, 224, 0.3);
    line-height: 1;
    white-space: nowrap;
    padding-right: clamp(32px, 5.86vw, 80px);
}

@keyframes loopText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* section3 */
.news-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(24px, 2.93vw, 40px);
    line-height: 1;
    color: #111827;
    font-weight: 500;
}

.news-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(13px, 1.17vw, 16px);
    line-height: 1;
    color: #111827;
    font-weight: 400;
    margin-top: clamp(6px, 0.73vw, 10px);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.83vw, 25px);
    margin-top: clamp(36px, 4.39vw, 60px);
}

.news-card {
    display: flex;
    align-items: center;
    gap: clamp(40px, 5.85vw, 80px);
    padding: clamp(20px, 2.56vw, 35px) clamp(60px, 10.98vw, 150px) clamp(24px, 2.93vw, 40px) clamp(20px, 2.93vw, 40px);
    text-decoration: none;
    text-decoration: none;
    color: inherit;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.news-card.show:hover {
    transform: translateX(0) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.news-left {
    width: clamp(100px, 10.25vw, 140px);
}

.news-category {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(14px, 1.46vw, 20px);
    font-weight: 500;
    line-height: 1;
    padding: clamp(10px, 1.1vw, 15px) clamp(14px, 1.46vw, 20px) clamp(6px, 0.73vw, 10px);
    display: inline-block;
    color: #fff;
    margin-bottom: clamp(12px, 1.46vw, 20px);
    letter-spacing: 0;
}

.news-category.audition {
    background: #98C5E0;
}

.news-category.event {
    background: #E09899;
}

.news-date {
    font-size: clamp(13px, 1.17vw, 16px);
    color: rgba(51, 51, 51, 0.5);
    font-weight: 500;
    line-height: 1;
}

.news-center {
    flex: 1;
    align-self: flex-end
}

.news-text {
    font-size: clamp(13px, 1.17vw, 16px);
    line-height: 2;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-right {
    width: clamp(60px, 7.32vw, 100px);
    height: clamp(60px, 7.32vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-card:nth-of-type(odd) {
    background: #f6f6f6;
}

.news-card:nth-of-type(even) {
    background: #ffffff;
}

.news-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(30px, 4.02vw, 55px);
}

.news-btn {
    font-family: "Josefin Sans", sans-serif;
    display: inline-block;
    font-weight: 400;
    color: #93A0A7;
    line-height: 1;
    padding: clamp(10px, 1.1vw, 15px) clamp(16px, 1.83vw, 25px) clamp(6px, 0.73vw, 10px);
    font-size: clamp(14px, 1.46vw, 20px);
    letter-spacing: 0;
    border: 2px solid #93A0A7;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: clamp(70px, 9.51vw, 130px);
}

.news-btn:hover {
    background: #93A0A7;
    color: #fff;
}

/* 動き */
.news-card {
    opacity: 0;
    transition:
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1.5s ease;
}

.news-card.from-left {
    transform: translateX(-200px);
}

.news-card.from-right {
    transform: translateX(200px);
}

.news-card.show {
    opacity: 1;
    transform: translateX(0);
}

/* =========================
   スマホ対応
========================= */
@media screen and (max-width: 600px) {
    .news-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
    }

    .news-left {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .news-category {
        margin-bottom: 0;
        font-size: 12px;
        padding: 6px 10px 4px;
    }

    .news-date {
        font-size: 12px;
    }

    .news-center {
        width: 100%;
        align-self: auto;
    }

    .news-text {
        font-size: 14px;
        line-height: 1.6;
        -webkit-line-clamp: 2;
    }

    .news-right {
        width: 100%;
        height: auto;
    }

    .news-right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 16 / 9;
    }

    .news-footer {
        justify-content: center;
    }

    .news-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }
}

/* section4 */
.activities-inner {
    margin-bottom: clamp(30px, 5.64vw, 77px);
}

.activities-header {
    margin-bottom: clamp(40px, 7.32vw, 100px);
}

.activities-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(24px, 2.93vw, 40px);
    line-height: 1;
    color: #111827;
    font-weight: 500;
}

.activities-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(13px, 1.17vw, 16px);
    line-height: 1;
    color: #111827;
    font-weight: 400;
    margin-top: clamp(6px, 0.73vw, 10px);
}

.activities-desc {
    margin-top: clamp(24px, 4.39vw, 60px);
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.17vw, 16px);
    line-height: 1.8;
    color: #000;
}

.activities-item {
    display: flex;
    justify-content: space-between;
    gap: clamp(24px, 4.39vw, 60px);
    background: #fff;
    padding: clamp(20px, 2.93vw, 40px);
    margin-bottom: clamp(20px, 2.93vw, 40px);
    border: 1px solid #ADADAD;
}

.activities-item.reverse {
    flex-direction: row-reverse;
}

.activities-item:nth-child(even) {
    margin-right: clamp(40px, 14.64vw, 200px);
}

.activities-item:nth-child(odd) {
    margin-left: clamp(40px, 14.64vw, 200px);
}

.activities-text {
    width: 50%;
}

.activities-text p.activities-num {
    font-family: "Josefin Sans", sans-serif;
    display: flex;
    align-items: center;
    font-size: clamp(12px, 1.02vw, 14px);
    color: #98C5E0;
    margin-bottom: clamp(6px, 0.73vw, 10px);
    line-height: 1;
}

.activities-text p.activities-num .num-span {
    font-size: clamp(18px, 1.76vw, 24px);
    margin-left: clamp(10px, 1.46vw, 20px);
}

.activities-text h3 {
    font-size: clamp(20px, 2.34vw, 32px);
    margin-bottom: clamp(20px, 2.93vw, 40px);
    font-weight: 500;
    color: #000;
    line-height: 1;
}

.activities-text p {
    font-size: clamp(14px, 1.17vw, 16px);
    line-height: 2;
    color: #000;
}

.activities-image {
    width: 50%;
}

.activities-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .activities-item:nth-child(even) {
        margin-right: 0;
    }

    .activities-item:nth-child(odd) {
        margin-left: 0;
    }

    .activities-item {
        flex-direction: column;
        padding: 25px;
    }

    .activities-item.reverse {
        flex-direction: column;
    }

    .activities-text,
    .activities-image {
        width: 100%;
    }
}

.activities-item {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s ease;
}

.activities-item.from-left {
    transform: translateX(-60px);
}

.activities-item.from-right {
    transform: translateX(60px);
}

.activities-item.show {
    opacity: 1;
    transform: translateX(0);
}

/* section5 */
.philosophy {
    padding: clamp(40px, 5.86vw, 80px) 0;
}

.philosophy-header {
    margin-bottom: clamp(30px, 4.39vw, 60px);
}

.philosophy-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(24px, 2.93vw, 40px);
    line-height: 1;
    color: #111827;
    font-weight: 500;
}

.philosophy-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(13px, 1.17vw, 16px);
    line-height: 1;
    color: #111827;
    font-weight: 400;
    margin-top: clamp(6px, 0.73vw, 10px);
}

.philosophy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 1.46vw, 20px) clamp(40px, 5.86vw, 80px);
}

.philosophy-item {
    display: flex;
    gap: clamp(20px, 2.93vw, 40px);
    align-items: flex-start;
    background: #FFFFFF;
    padding: clamp(8px, 1.1vw, 15px) clamp(40px, 5.86vw, 80px) clamp(8px, 1.1vw, 15px) clamp(10px, 1.46vw, 20px);
}

.philosophy-item .num {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(18px, 2.34vw, 32px);
    font-weight: 300;
    color: #333333;
    line-height: 1;
}

.philosophy-item p {
    font-size: clamp(13px, 1.17vw, 16px);
    line-height: 1.8;
    color: #333;
    letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
    .philosophy-item {
        padding: clamp(8px, 1.1vw, 15px) clamp(10px, 1.46vw, 20px) clamp(8px, 1.1vw, 15px) clamp(10px, 1.46vw, 20px);
    }
}

@media screen and (max-width: 875px) {
    .philosophy-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .philosophy-item {
        padding: 16px;
        display: block;
    }

    .philosophy-item .num {
        font-size: 22px;
    }

    .philosophy-item p {
        font-size: 16px;
    }
}

.philosophy-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.philosophy-item.show {
    opacity: 1;
    transform: translateY(0);
}