@charset "UTF-8";

/*=================
共通
==================*/
.section-inner h2 {
    margin-top: 64px;
    padding: 4px 8px;
    background: transparent;
    border-left: solid 5px var(--brown);
    background: var(--lightbrown);
}

@media (max-width: 768px) {
    .section-inner h2 {
        margin-top: 40px;
        width: calc(100vw - 64px);
        margin-inline: auto;
        font-size: 21px;
    }
}

/*=================
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: 16px;
    }
}

/*=================
練習について
==================*/
.info-table {
    margin-inline: auto;
    margin-top: 32px;
    max-width: 900px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.info-title {
    width: 120px;
    font-weight: bold;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
    .info-table {
        width: calc(100vw - 64px);
        margin-left: 32px;
        margin-right: 32px;
    }

    .info-row {
        display: block;
        margin-bottom: 16px;
    }

    .info-title {
        width: auto;
        margin-bottom: 4px;
    }

    .info-title::before {
        content: "【";
    }

    .info-title::after {
        content: "】";
    }

    .info-content {
        padding-left: 16px;
    }
}

/*=================
練習日程
==================*/
.schedule-table {
    margin-top: 40px;
    margin-inline: auto;
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid var(--text-color);
    padding: 4px 16px;
    text-align: left;
    vertical-align: top;
}

.schedule-table th {
    font-weight: normal;
    white-space: nowrap;
    width: 15%;
}

.schedule p {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .schedule-table {
        width: calc(100vw - 64px);
        font-size: 14px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 4px;
    }
}

/*=================
google form
==================*/

.google-form-section {
    padding: 0 20px;
}

.google-form-section p {
    margin-top: 40px;
    text-align: center;
}

.google-form-wrap {
    margin-top: 24px;
    max-width: 900px;
    margin-inline: auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.google-form-wrap iframe {
    width: 100%;
    border: none;
    display: block;
    width: 100%;
    height: 2400px;
    border: none;
    display: block;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .google-form-section {
        padding: 30px 10px;
    }

    .google-form-section p {
        margin-top: 16px;
        margin-left: 32px;
        margin-right: 32px;
        text-align: left;
    }

    .google-form-wrap {
        border-radius: 10px;
    }

}

/*=================
写真
==================*/
.pic_wide {
    width: 80%;
    max-width: 1000px;
    margin: 64px auto;
}

.pic_wide picture {
    width: 100%;
}

.pic_long {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 100px auto;
}

.pic_long picture {
    width: 34%;
    max-width: 320px;
}

.pic_long picture img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.pic1,
.pic2,
.pic3 {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.pic1.show,
.pic2.show,
.pic3.show {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (max-width: 768px) {
    .pic_wide {
        margin: 32px auto;
    }

    .pic_long {
        margin: 40px auto 0;
        gap: 20px
    }
}