@charset "UTF-8";

/*=================
団の紹介
==================*/
.introduction {
    margin-top: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: intro-fadeup 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes intro-fadeup {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.introduction .section-inner {
    max-width: 1000px;
}

.introduction h2 {
    font-family: var(--font-zen);
    text-align: center;
    position: relative;
}

.introduction h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--brown)
}

.introduction p {
    margin-top: 32px;
    margin-left: 32px;
    margin-right: 32px;
    line-height: 2;
}

.divider {
    margin-top: 64px;
    text-align: center;
    height: 40px;

    background-image:
        url('../img/section_div.jpg'),
        url('../img/section_div.jpg'),
        url('../img/section_div.jpg');

    background-image:
        image-set(url('../img/section_div.webp') type("image/webp"),
            url('../img/section_div.jpg') type("image/jpeg")),
        image-set(url('../img/section_div.webp') type("image/webp"),
            url('../img/section_div.jpg') type("image/jpeg")),
        image-set(url('../img/section_div.webp') type("image/webp"),
            url('../img/section_div.jpg') type("image/jpeg"));

    background-repeat: no-repeat;
    background-size: auto 40px;
    background-position:
        calc(50% - 250px) center,
        center center,
        calc(50% + 250px) center;
}


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

    .introduction .section-inner {
        max-width: calc(100vw - 64px);
    }

    .introduction p {
        margin-top: 24px;
        margin-left: 12px;
        margin-right: 12px;
        line-height: 1.5;
    }

    .divider {
        margin-top: 32px;
        background-image: url('../img/section_div.jpg');

        background-image: image-set(url('../img/section_div.webp') type("image/webp"),
                url('../img/section_div.jpg') type("image/jpeg"));

        background-repeat: no-repeat;
        background-position: center center;
    }
}

/*=================
プロフィール
==================*/
.profile {
    margin-top: 80px;
}

.profile .section-inner {
    padding-left: 60px;
    padding-right: 60px;
}

.profile-item {
    display: flex;
    column-gap: 60px;
    margin-bottom: 80px;
    line-height: 1.75;
    align-items: center;
    position: relative;
}

.profile .profile-item::after {
    content: "";
    position: absolute;
    bottom: -40px;
    width: 100%;
    height: 1px;
    background-color: var(--brown);
    margin-bottom: 0;
}

.profile-item:last-child::after {
    display: none;
}

.profile-left {
    width: 240px;
    flex-shrink: 0;
}

.profile-right {
    flex: 1;
}

.profile-item h3 {
    margin-bottom: 24px;
    font-size: 22px;
}

.profile-item p {
    text-align: justify;
}

@media screen and (max-width:768px) {
    .profile {
        margin-top: 40px;
    }

    .profile .section-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    .profile-item {
        display: block;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .profile .profile-item::after {
        bottom: -12px;
    }

    .profile-left {
        margin-top: 32px;
        width: 100%;
        text-align: center;
    }

    .profile-left img {
        display: inline-block;
        width: 200px;
        height: auto;
    }

    .profile-item h3 {
        margin-top: 12px;
        margin-bottom: 12px;
        font-size: 18px;
    }

    .profile-item .profile-detail p {
        display: block;
        text-align: left;
    }

    .profile-item p br {
        content: "";
        display: block;
        margin-top: 0.5em;
    }
}