:root {
    --font-noto-serif-jp: 'Noto Serif JP';
    --color-clear-blue: rgba(0, 189, 255, 0.3);
}

section#fv {
    padding: 0;
    background-color: #F8F8F8;

    .fv {
        aspect-ratio: 1 / 1.5;
        border-radius: 0;
        overflow: hidden;

        >img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
        }

        >img:nth-of-type(1) {
            z-index: 1;
        }

        >img:nth-of-type(2) {
            position: absolute;
            inset: 0;
            object-fit: contain;
            margin: auto;
            transform: scale(0.95);
            transform-origin: center;
            z-index: 2;
            top: 10px;
            height: 95%;
        }
    }
}


section#about {
    padding-top: 0;
    background-color: #F9F4F3;
    padding-bottom: 5rem;

    h1 {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 28px;
        padding: 20px 0 8px;
        margin: 0;
        text-align: center;
        position: relative;
        color: #C8B4A0;

        span {
            font-size: 2.6rem;
        }
    }

    .intor {
        line-height: 1.8;
        font-size: 1.3rem;
        margin-top: 10px;
        text-align: center;
        color: #C8B4A0;
    }

    .event-container {

        background-color: #fff;
        padding: 20px 16px 40px;
        margin: 0 auto;
        position: relative;
        margin-top: 60px;
        border-top: 3px solid rgba(217, 217, 217, 0.5);
        border-bottom: 3px solid rgba(217, 217, 217, 0.5);
        position: relative;

        &::before,
        &::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 105%;
            height: 5px;
            background-color: #B89679;
        }

        &::before {
            top: -6px;
        }

        &::after {
            bottom: -6px;
        }

        h3 {
            text-align: center;
            color: #C8B4A0;
            margin: 16px 0 20px;
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 2;
        }

        table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            font-size: 13.5px;
            line-height: 1.5;

            tr {
                border-bottom: 1px solid rgba(187, 168, 131, 0.3);

                &:first-child {
                    border-top: 1px solid rgba(187, 168, 131, 0.3);
                }

                td {
                    vertical-align: top;
                    padding: 8px 0;
                    color: #686868;
                    line-height: 1.8;
                }

                .label {
                    width: 30%;
                    padding-left: 5px;
                    font-weight: 400;
                    font-size: 1.2rem;
                }

                .value {
                    width: 60%;
                    font-weight: 500;
                    font-size: 1.4rem;

                    span {
                        font-size: 1rem;
                    }
                }
            }
        }
    }
}


/* おすすめ */
section#recommend {
    padding: 33px var(--section-gutter) 45px;
    background-color: var(--color-white);

    .recommend {
        background-color: #F9F4F3;
        border-radius: 8px;
        position: relative;
        overflow: visible;
        margin: 50px auto 0;
        text-align: center;
        padding: 48px 0 35px;

        .section-title {
            h2 {
                font-size: 2.4rem;
                color: #B89679;
                margin-bottom: 20px;
            }

        }

        >img {
            height: 35px;
            margin: 25px 0 10px;
        }

        .recommend_decoration {
            img {
                width: 193px;
            }
        }

        .image-wrapper::after {
            content: "";
            background-image: url(/img/lp/event/bigfair/kagoshima/202512/arrow_white.webp);
            ;
        }

        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            padding: 1rem;
            gap: 4px;

            .recommend-card {
                position: relative;
                text-align: center;
                width: 112.5%;
                background-color: #ffffff;
                overflow: hidden;
                cursor: pointer;

                .recommend-img-aspect {
                    aspect-ratio: 3 / 2;

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



                &:nth-child(1),
                &:nth-child(3) {
                    transform: translateX(-11%) !important;
                    box-shadow: 2px 2px 4px -1px #94CBBC33;
                    border-radius: 25px 0 0 0;

                    .image-wrapper {
                        margin-left: 0;
                    }
                }

                &:nth-child(3) {
                    border-radius: 0 0 0 25px;
                }

                &:nth-child(2),
                &:nth-child(4) {
                    box-shadow: 2px 2px 4px -1px #94CBBC33;
                    border-radius: 0 25px 0 0;

                    .image-wrapper {
                        aspect-ratio: 1 / 1;
                    }
                }

                &:nth-child(4) {
                    border-radius: 0 0 25px 0;
                }

                .recommend-title {
                    margin-top: 10px;
                    font-weight: 400;
                    line-height: 1.5;
                    text-align: left;
                    padding: 0 12px;
                    height: 100px;
                }

                button {
                    border: none;
                    background-color: unset;
                    color: #A58D74;
                    bottom: 16px;
                    right: 10px;
                    position: absolute;
                    display: flex;
                    gap: 8px;
                    align-items: center;

                    &::after {
                        content: "";
                        background-image: url(/img/lp/arrow_brown.webp);
                        background-repeat: no-repeat;
                        background-size: contain;
                        width: 9px;
                        height: 8px;
                    }
                }

                &:hover {
                    opacity: 0.7 !important;
                }
            }
        }
    }
}


/* このフェアでできること */
section#contents {
    padding: 0 var(--section-gutter) 10px;
    background-color: unset;

    .section-title {
        margin: 5px 0 30px;

        h2 {
            font-size: 2.4rem;
        }
    }


    .card {
        position: relative;
        overflow: visible;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 10px;
        border: none;
        background-color: unset;

        &:hover {
            opacity: 0.7 !important;
        }

        span {
            display: block;
            display: block;
            padding: 0px 10px;
            width: fit-content;
            border: 1px solid #B89679;
            color: #B89679;
            margin-bottom: 5px;
            border-radius: 4px;
        }

        img {
            width: 100%;
            object-fit: cover;
        }

        .more-button {
            bottom: -11px;
            right: 0px;
            border-radius: 0 0 8px 0;
            position: absolute;
            border: none;
            color: white;
            background-color: #B89679;
            padding: 3px 27px 3px 20px;
            width: auto;

            &::after {
                content: "";
                background-image: url(/img/lp/event/bigfair/kagoshima/202512/white_arrow.webp);
                background-repeat: no-repeat;
                background-size: contain;
                width: 11px;
                height: 11px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                margin-left: 10px;
            }
        }

        h3 {
            margin-top: 15px;
            font-size: 1.5rem;
            line-height: 1.5;
            color: #B89679;
            text-align: center;
        }
    }

    .movie-card {
        margin-bottom: 0;

        .image-wrapper {
            aspect-ratio: 2 / 1.1;
            overflow: hidden;
            cursor: pointer;

            .more-button {
                bottom: 31px;
                padding: 3px 33px 3px 20px;
                position: absolute;
            }
        }

        h3 {
            margin-bottom: 10px !important;
        }
    }

    .recommend-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 10px;
        margin-bottom: 60px;

        .image-wrapper {
            position: relative;
            overflow: visible;
            cursor: pointer;
            aspect-ratio: 1 / 1;
            width: -webkit-fill-available;

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

        &:nth-child(1),
        &:nth-child(3) {
            .image-wrapper {
                margin-left: 0;
            }
        }

        &:nth-child(2),
        &:nth-child(4) {

            .image-wrapper {
                margin-left: auto;

            }
        }

    }


    /* grooms */

    .consultation {
        >div {
            padding: 25px 45px;
            background-color: #B89679;
            margin-left: calc(-1 * var(--section-gutter));
            margin-right: calc(-1 * var(--section-gutter));
            border-radius: 15px;

            h3 {
                color: #ffffff;
                font-size: 1.5rem;
                margin-bottom: 14px;
                font-weight: 500;
                text-align: left;
            }

            ul {
                all: unset;
                list-style: none;
                margin: 0;
                padding: 0;
                margin-left: 0 !important;

                li {
                    margin: 7px 0;
                    padding-left: 20px;
                    color: #ffffff;
                    height: fit-content;

                    &::before {
                        content: '';
                        background-image: url(/img/lp/white_check.webp);
                        width: 12px;
                        height: 12px;
                        background-size: contain;
                        background-repeat: no-repeat;
                        position: absolute;
                        top: 5px;
                        left: 0;
                    }
                }
            }
        }
    }
}


/* 魅力 */
section#charm {
    padding-top: 45px;

    .section-title {
        h2 {
            font-size: 2.4rem;
        }
    }

    .charm-card {
        background-color: #F9F4F3;
        padding: 18px 22px 0;
        margin-top: 45px;
        border-radius: 10px;
        position: relative;

        .charm-card-title {
            h3 {
                align-items: center;
                flex-direction: row;
                text-align: left;
                color: #B89679;

                span {
                    color: #B89679;
                    font-size: 5.5rem;
                    padding-right: 10px;
                    margin-bottom: 10px;

                    &::after {
                        content: "";
                        height: 1.5px;
                        width: 35px;
                        background-color: #B89679;
                        display: block;
                        margin: 2px auto;
                    }
                }
            }

            img {
                width: 100%;
                border-radius: 14px;
                object-fit: cover;
                cursor: pointer;
            }
        }

        a {
            .charm-text {
                padding-bottom: 10px;

                p {
                    font-size: 1.4rem;
                    background-color: var(--color-white);
                    margin-top: 20px;
                    padding: 20px 20px 50px;
                    border-radius: 10px;
                    cursor: pointer;
                }
            }

            >p {
                position: absolute;
                bottom: -21px;
                right: 22px;
                background-color: #B89679;
                color: var(--color-white);
                width: 86px;
                font-size: 1.5rem;
                text-align: center;
                border-radius: 0 0 10px 0;
                cursor: pointer;

                .collapsed &::after {
                    content: "MORE";
                    background-repeat: no-repeat;
                    background-size: 6px auto;
                    padding-right: 18px;
                    background-image: url(/img/lp/event/bigfair/kagoshima/202512/white_arrow.webp);
                    background-position: right center;
                }

                a:not(.collapsed) &::after {
                    content: "";
                    background-image: url(/img/lp/arrow_brown.webp);
                    width: 12px;
                    height: 21px;
                    position: absolute;
                    background-repeat: no-repeat;
                    background-size: contain;
                    bottom: 45px;
                    transform: rotate(-90deg);
                }
            }
        }

        &:hover {
            opacity: 0.7 !important;
        }
    }
}

/* 会場コンテンツ */
section#facility {
    border-bottom-left-radius: 30px;
    position: relative;
    padding-top: 90px;
    padding-bottom: 0;
    background: linear-gradient(180deg, rgba(249, 244, 243, 0) 50%, #F9F4F3 63%);

    .section-title {
        margin-bottom: 55px;

        h2 {
            font-size: 2.4rem;
        }
    }

    .facility-equipment {
        position: relative;

        button {
            &::after {
                content: "";
                background-image: url(/img/lp/arrow_brown.webp);
                width: 8px;
                height: 14px;
                position: absolute;
                background-size: contain;
                bottom: 0px;
                cursor: pointer;
            }

            &:hover {
                opacity: 0.7;
            }

            &:nth-of-type(1)::after {
                transform: rotate(180deg);
            }
        }

        .custom-arrow {
            all: unset;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .slick-prev {
            right: 50%;
            transform: translateX(-129px);
        }

        .slick-next {
            left: 50%;
            transform: translateX(123px);
        }

        .slick-track {
            padding-top: 0;
        }

        .slick-center {
            .facility-list {
                &:hover {
                    opacity: 1;
                }
            }
        }

        .facility-list {
            background-color: var(--color-white);
            border: 1px solid #B89679;
            color: #B89679;
            width: 220px !important;
            border-radius: 35px;
            text-align: center;
            transition: transform 0.2s ease-in-out,
                background-color 0.3s ease-in-out,
                color 0.3s ease-in-out;
            transform: scale(0.7);
            height: 50px;
            align-items: center;
            display: flex !important;
            justify-content: center;
            line-height: 1.4;
            cursor: pointer;

            &:hover {
                opacity: 0.7;
            }

            p {
                font-size: 1.4rem;
                margin: 0;
            }
        }

        .slick-slide.slick-current .facility-list,
        .slick-slide.is-active-next .facility-list {
            transform: scale(1);
            background-color: #B89679;
            color: var(--color-white);
            transition: transform 0.2s ease-in-out;
        }
    }

    .facility-contents {
        div {
            img {
                width: 100%;
                border-radius: 0 !important;
                margin: 20px 0 10px;
            }
        }

        .dl:first-of-type {
            border-radius: 10px 10px 0 0;
        }

        .dl {
            margin: 4px 0 !important;
            border-radius: 0;

            div {
                dt {
                    color: #B89679;
                    font-weight: 500;

                    &:empty {
                        display: none;
                    }

                    &::after {
                        content: '';
                        left: 100px;
                        position: absolute;
                        width: 1px;
                        height: 56%;
                        background-color: #B89679;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                }

                dd {
                    color: #B89679;
                    font-size: 1.1rem;
                    font-weight: 600;
                }
            }

            &:first-of-type {
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
            }

            &:last-of-type {
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
            }

            &::after {
                display: none;
            }
        }
    }

    /* 動画 */
    >p {
        color: #B89679;
        font-size: 1.6rem;
        margin: 70px auto 0;
        width: fit-content;
    }

    h3 {
        font-size: 2.4rem;
        color: #B89679;
        margin-top: 13px;
    }

    .full-link {
        color: #B89679 !important;
        background-image: url(/img/lp/arrow_brown.webp) !important;
        background-size: 8px 12px;
        background-position: 90% 50% !important;
    }

    iframe {
        &:hover {
            opacity: 0.7;
        }
    }

    /* 特典 */
    #present {
        padding: 130px 0 0;
        color: #B89679;
        text-align: center;

        h3 {
            font-size: 1.8rem;
            margin: 0;
        }

        >p {
            font-size: 1.6rem;
            margin: 0;

            .price {
                font-size: 4rem;
                font-weight: 500;
            }

            &::after {
                content: "*1";
                font-size: 1rem;
            }
        }

        .average-price {
            border: 1px solid #B89679;
            padding: 20px 0 15px;
            border-radius: 20px;
            margin: 20px 0 5px;

            .average-amount {
                color: #616161CC;
                font-size: 2.4rem;
                font-weight: 500;
                margin: 5px 0 3px;
                display: block;

                &::after {
                    content: "*2";
                    font-size: 1rem;
                }
            }

            .average-titel {
                font-weight: 500;
                font-size: 1.5rem;
                color: #B89679;
                margin: 5px 0 -7px;
                margin-bottom: -0.5rem;
            }

            >span {
                color: #616161CC;
                font-size: 1.3rem;
            }
        }

        >span {
            font-size: 1rem;
            text-align: left;
            display: block;
            padding: 13px 0 42px;
            position: relative;

            &::after {
                content: "";
                background-color: #8F735B;
                width: 100%;
                height: 4px;
                position: absolute;
                bottom: 0;
                left: calc(-1 * var(--section-gutter));
            }
        }

        .present-wrapper {
            border: 10px solid #B89679;
            margin-left: calc(-1 * var(--section-gutter));
            margin-right: calc(-1 * var(--section-gutter));
            border-radius: 0 30px;
            position: relative;
            background-color: #F9F4F3;

            &::before,
            &::after {
                content: "";
                width: calc(2 * var(--section-gutter) - 7px);
                height: calc(1.2 * var(--section-gutter));
                position: absolute;
                background-color: #F9F4F3;
                right: 0;
                top: 0;
                z-index: 1;
                border-top-right-radius: 30px;
            }

            &::after {
                right: auto;
                top: auto;
                bottom: 0;
                left: 0;
                border-bottom-left-radius: 30px;
            }


            .present-box {
                width: calc(100% - 24px);
                height: calc(100% - 24px);
                position: absolute;
                top: 13px;
                border: 0.5px solid #B89679;
                right: 50%;
                transform: translatex(50%);
            }

            h3 {
                font-size: 3.5rem;
                margin: 50px 0 5px;
            }

            p {
                margin: 5px 0;
                font-size: 1.5rem;
            }

            ul {
                padding: 0;
                margin: 30px 0;

                li {
                    list-style: none;
                    padding-bottom: 50px;

                    span {
                        color: #616161;
                        font-size: 1.6rem;
                        font-weight: 500;
                        display: flex;
                        margin-bottom: 10px;
                        flex-direction: column;
                        align-items: center;
                        gap: 4px;

                        &::after {
                            content: "";
                            height: 1px;
                            width: 40px;
                            background-color: #616161;
                        }
                    }

                    p {
                        font-size: 3.2rem;
                        font-weight: 500;
                        line-height: 40px;
                        position: relative;
                        width: fit-content;
                        margin: auto;
                        z-index: 0;

                        &::after {
                            content: "";
                            background-color: #D9D9D999;
                            position: absolute;
                            height: 5px;
                            width: 100%;
                            bottom: 2px;
                            right: 50%;
                            transform: translatex(50%);
                            z-index: -1;
                        }
                    }

                    .present-note {
                        font-size: 1.4rem;
                        color: #B89679;
                        margin-top: 5px;

                        &::after {
                            content: none;
                        }
                    }
                }
            }
        }
    }

    &::after {
        content: "";
        background-color: #8F735B;
        width: calc(100% - (2 * var(--section-gutter)));
        height: 4px;
        position: absolute;
        bottom: -4px;
        right: 0;
    }
}


/* ギャラリー */
section#gallery {
    background-image: none;
    padding-bottom: 100px;
    padding-top: 120px;

    .section-title {
        &::before {
            content: none;
        }

        h2 {
            font-size: 2.4rem;
            color: #B89679;
            margin-bottom: 12px;
            line-height: 37px;
        }

        p {
            font-family: 'Noto Sana jp';
            color: #B89679;
            font-size: 1.5rem;
        }
    }
}



/* 参加者の声 */
section#fes-voice {
    background-color: #F9F4F3;
    padding-top: 45px;

    .section-title {
        p {
            font-family: 'Noto Sana jp';
            color: #B89679;
            font-size: 1.5rem;
        }
    }

    ul {
        padding: 0;

        li {
            list-style: none;
            display: flex;
            align-items: center;
            background-color: var(--color-white);
            padding: 25px 15px;
            border-radius: 10px;
            margin-top: 24px;

            img {
                width: 80px;
            }

            p {
                font-family: 'Noto Sana jp';
                line-height: 18px;
                font-size: 1.1rem;
                margin: 0 0 0 12px;
                color: #00000099;
            }
        }
    }
}

/* スタッフメッセージ */
section#staff-message {
    color: #B89679;

    .slick-list.draggable {
        margin-left: calc(-1 * var(--section-gutter));
        margin-right: calc(-1 * var(--section-gutter));
    }

    .slick-initialized .slick-slide {
        margin: 0 10px;
    }

    .total-message {
        background-color: #F9F4F3;
        padding: 30px;
        box-shadow: 2px 2px 4px 0px #B896794D;
        margin: 20px 0 30px;
        border-radius: 6px;
        position: relative;

        p {
            font-size: 1.3rem;
            margin: 0;
        }

        &::before,
        &::after {
            content: "";
            background-color: #B89679;
            height: 0.5px;
            width: 90%;
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
        }

        &::after {
            bottom: 14px;
            top: auto;
        }
    }

    .staff-message-carousel {

        .slick-list {
            padding-left: var(--section-gutter);

            .staff-card {
                background-color: var(--color-white);
                box-shadow: 2px 2px 4px 0px #0000001A;
                border-radius: 10px;
                overflow: hidden;

                img {
                    width: 220px;
                    height: 190px;
                    object-fit: cover;
                }

                p {
                    font-size: 2.4rem;
                    padding: 15px 23px 18px;
                    margin: 0;

                    span {
                        font-size: 1.2rem;
                        display: block;
                    }
                }

                &:hover {
                    opacity: 0.7 !important;
                }
            }
        }

        .slick-dots {
            display: flex;
            margin-top: 10px;

            li {
                list-style: none;
                display: flex;
                align-items: center;
                justify-content: center;

                button {
                    border: none;
                    background-color: unset;
                    outline: none;
                    color: transparent;
                }

                &:after {
                    content: '';
                    position: absolute;
                    width: 5px;
                    height: 5px;
                    border-radius: 50%;
                    background-color: #B89679;
                    z-index: 1;
                }
            }

            .slick-active::after {
                width: 8px;
                height: 8px;
            }

        }
    }
}


/* FAQ */
section#FAQ {
    background-color: #F9F7F5;
    padding-top: 46px;

    .section-title {
        margin-bottom: 33px;

        p {
            font-family: Noto Sans JP;
            color: #B89679;
            font-size: 1.6rem;
        }
    }

    .questions {

        h2 {
            display: none;
        }

        .row {
            margin: 0 !important;

            dl {
                .accordion-item {
                    background-color: #C8B4A033;
                    color: #B89679;

                    .accordion-header {
                        display: flex;
                        align-items: center;

                        .accordion-button {
                            color: #B89679;
                            padding-left: 0;

                            &::after {
                                background-position: center;
                                background-image: url(/img/lp/event/bigfair/kagoshima/202512/icon_plus.webp);
                                width: 15px;
                                height: 15px;
                                background-size: contain;
                            }

                            &:not(.collapsed):after {
                                background-image: url(/img/lp/event/bigfair/kagoshima/202512/icon_minus.webp) !important;
                            }

                            &::before {
                                content: "Q";
                                font-size: 1.6rem;
                                padding: 0 10px 0 16px;
                            }
                        }

                        .accordion-collapse {
                            position: relative;
                            border-top: none;
                            padding: 15px 30px;

                            &::before {
                                content: "";
                                position: absolute;
                                height: 0.5px;
                                width: 90%;
                                top: 0;
                                background-color: #B89679;
                                left: 50%;
                                transform: translateX(-50%);
                            }
                        }

                        &:hover {
                            opacity: 0.7;
                        }
                    }
                }
            }
        }
    }
}

/* アクセス */
section#access {
    padding-top: 75px;

    .section-title {
        color: #B89679;

        &::before {
            display: none;
        }

        h2 {
            margin-bottom: 6px;
        }

        p {
            font-size: 1.6rem;
            margin-bottom: 25px;
        }
    }

    .access_items {
        font-family: Noto Sans JP;
        background-color: #F9F7F5;
        border-radius: 10px;
        color: #00000099;
        padding: 24px 25px;
        font-weight: 500;

        h3 {
            color: #00000099;
            font-size: 1.6rem;
            font-weight: 500;
            flex-direction: row;
            display: flex;

            &::before {
                content: "";
                background-image: url(/img/lp/event/bigfair/kagoshima/202512/map_icon.webp);
                display: block;
                width: 17px;
                height: 21px;
                background-repeat: no-repeat;
                background-size: contain;
                margin-right: 7px;
            }
        }

        p {
            padding: 0;
            margin: 20px 0;
            font-size: 1.4rem;
        }

        .map {
            iframe {
                height: 480px;
                width: 100%;
            }
        }


    }
}

/* シェラトン鹿児島への問合せ */
section#facility-contact {
    background-color: #F9F7F5;
    color: #B89679;
    background-image: url(/img/lp/event/bigfair/kagoshima/202512/back_flower.webp);
    background-position: right;
    background-size: 260px;

    h2 {
        font-size: 2.2rem;
        text-align: left;
        padding: 12px 0;
    }

    span {
        font-size: 1.5rem;
    }

    .contact-btn {
        margin-top: 30px;

        &::after {}
    }
}

/* お問い合わせ */
section#contact {
    background-color: #F9F7F5;
    padding-top: 30px;

    >div {
        text-align: center;
        color: #B89679;

        span {
            display: block;
        }
    }

    .text {
        background-color: #C8B4A033;
        padding: 10px 0;
        border-radius: 10px;
        margin: 30px 0 0;

        p {
            color: #B89679;
            font-weight: 500;
            font-size: 1.2rem;
            line-height: 22px;
            margin: 0;
        }
    }


    h2 {
        font-size: 32px;
        margin: 0;
        text-align: center;
        position: relative;
        font-family: 'Noto Serif JP';
        color: #B89679;

        span {
            font-size: 24px;
        }

    }

    .form-section {
        margin: 50px 5% 0 5% !important;

        h4 {
            font-weight: 350;
            color: #FFFFFF;
            background-color: #B89679;
            padding: 2% 20px 2%;
            margin: 0;
            border-radius: 10px;
        }

        .group-title {
            display: flex;
            align-items: center;
        }

        small {
            color: #AE1818;
            margin-left: 10px;
        }

        .full-time {
            margin: 10px 0;
            font-weight: 500;
            font-size: 1.4rem;
            color: #A63F3F;
        }

        .form-group {
            margin-top: 20px;
            font-size: 12px;

            input {
                height: 45px;
                border: 0.5px solid #B89679;
                font-size: 1.5rem;
            }

            .note {
                font-size: 1.2rem;
            }

            label {
                font-size: 1.5rem;
            }

            select {
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;

                height: 40px;
                border-radius: 20px;
                border: solid 0.5px #B89679;
                font-size: 12px;
                padding-left: 30px;

                background-image: url(/img/lp/select_arrow.svg);

                background-repeat: no-repeat;

                background-position: right 20px center;

            }

            textarea {
                height: 100px;
                border: 0.5px solid #B89679;
                margin-top: 6px;
                font-size: 1.5rem;
            }

            .custom-placeholder:invalid {
                color: rgba(83, 75, 69, 0.3);
            }

            .custom-placeholder option:not([value=""]) {
                color: #212529;
            }

            .custom-placeholder option[value=""] {
                color: #6c757d;
            }

            >div {
                >div {
                    display: flex;
                    margin-top: 11px;

                    input[type="checkbox"] {
                        appearance: none;
                        /* ブラウザ標準のチェックを消す */
                        width: 20px;
                        height: 20px;
                        margin: 4px 7px 0 0;
                        background-image: url(/img/lp/not_checked_icon.webp);
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                        vertical-align: middle;
                        cursor: pointer;
                        border: none;
                        outline: none;
                        flex-shrink: 0;


                        /* チェック時に画像を切り替え */
                        &:checked {
                            background-image: url(/img/lp/checked_icon.webp);
                        }
                    }
                }
            }
        }
    }

    /* イベント満席・終了画面 */
    .alert-warning {
        background-color: unset;
        border: none;
        color: #00000099;
        font-family: Noto Sans JP;
        position: relative;
        margin-bottom: 150px;
        padding-top: 60px;
        font-weight: 400;

        &::after {
            content: "";
            position: absolute;
            width: 1.5px;
            left: 50%;
            height: 35px;
            bottom: -60px;
            background-color: #A58D74;
        }

        p {
            color: #B89679;
            border: 1px solid #B89679;
            padding: 20px 0;
            margin: 50px 0 0;
        }
    }
}


/* お申し込み確認画面 */
.sp-container {

    .form-flow-header {
        padding: 35px;

        h1 {
            color: #B89679;
            text-align: center;
        }
    }


}

.full-view {
    display: flex;
    flex-direction: column;
    height: 100vh;

    .container-fluid {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .form-flow-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

}

section#confirm {
    font-family: Noto Sans JP;
    padding-top: 0;
    background-color: #F9F7F5;

    >div {
        background-color: #EFEAE4;
        margin-left: calc(-1 * var(--section-gutter));
        margin-right: calc(-1 * var(--section-gutter));
        color: #B89679;
        padding: 20px;
        text-align: center;

        h2 {
            font-family: var(--font-noto-serif-jp);
            font-size: 3rem;
        }

        span {
            font-size: 1.2rem;
        }
    }

    .contact-btn {
        margin-top: 130px;
    }

    &>p {
        text-align: center;
        margin: 40px 0;
    }

    p:nth-of-type(2) {
        text-align: left;
    }


    form {
        .form-group {
            line-height: 0;

            label {
                margin-bottom: 8px;

                .required {
                    color: #AE1818;
                }
            }

            .form-control-plaintext {
                font-size: 1.65rem;
                font-weight: 500;
                margin-bottom: 30px;
            }
        }

        ul li::marker {
            font-size: 0.8rem;
        }

        .cheng_label {
            color: #C8B4A0;
            border: none;
            background-color: unset;
            position: relative;
            margin-top: 40px;
            padding: 0;

            &::after {
                content: "";
                position: absolute;
                height: 1px;
                left: 0;
                bottom: 1px;
                width: -webkit-fill-available;
                background-color: #C8B4A0;
            }
        }

        .contact-btn {
            margin-top: 30px;

            &::after {
                margin: auto 0 auto 14px;
            }
        }
    }
}


/* fotter */
footer {
    background-color: #F9F7F5;
    padding: 0 0 20px;

    div {
        .cl {
            color: #B89679;
            text-align: center;
            margin: 0;
            font-size: 1.5rem;
            font-weight: 500;
            font-family: Noto Sans JP;
        }
    }
}


/* PCサイド */
.pc-wrapper {
    margin-bottom: 0;
    background-color: #FFFBFB;

    .sp-wrapper {
        box-shadow: none;
    }

    .event-info {
        font-size: 2rem;
        margin: 100px 0 40px;

        p {
            color: #B89679;
            margin: 0;
        }

        span {
            color: #C8B4A0;
        }
    }

    .anker-list {
        li {
            a {
                color: #B89679;
            }
        }
    }

    .contact-btn {
        .contact-button {
            height: 55px;
        }
    }
}

.qr-code p {
    color: #B89679;
}



/* 共通 */

body {
    font-family: var(--font-noto-serif-jp);
}

.contact-btn {
    text-align: center;
    margin-top: 50px;

    >img {
        width: 70px;
        height: 30px;
        box-shadow: none;
        margin-bottom: 10px;
    }

    a,
    button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        aspect-ratio: 324/54;
        max-width: 430px;
        margin: 0 auto;
        background-color: #3D3A3A;
        color: #C8B4A0;
        border-radius: 50px;
        border: 2px solid #C8B4A0;
        font-size: 1.6rem;
        font-weight: 300;
        font-family: 'Noto Serif JP', serif;
        letter-spacing: 0;
        font-family: Noto Sans JP;
    }
}

.contact-button::after,
.contact-btn button::after {
    content: "";
    background-image: url(/img/lp/arrow_brown.webp);
    width: 8px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto 0 auto 7px;
}

.contact-button img:hover {
    opacity: 0.7;
}

.contact-button:hover {
    opacity: 0.7 !important;
}

a {
    color: inherit;
}

.section-title {
    text-align: center;
    position: relative;

    h2 {
        font-size: 3rem;
        color: #B89679;
        margin-bottom: 12px;
        line-height: 37px;
    }

    &::before {
        content: "";
        position: absolute;
        width: 1.5px;
        left: 50%;
        height: 35px;
        top: -61px;
        background-color: #B89679;
    }
}

.carousel .slick-slide,
.slick-initialized .slick-slide {
    height: auto;
}

.slick-track {
    margin-bottom: 12px;
}

.navbar {
    display: none;
}


/* モーダル */
.modal-header {
    border-bottom: none;
    justify-content: flex-end;


    .modal-close {
        position: absolute;
        top: 0px;
        right: 5px;
        background: none;
        border: none;
        font-size: 4rem;
        cursor: pointer;
        color: #000000CC;
        z-index: 100;
    }
}

.fade:not(.show) {
    opacity: 0;
}

#contentsModal {
    .modal-content {
        border: none;

        .modal-header {
            background-color: #F9F4F3;
            height: 90px;
        }

        .modal-body {
            padding: 0 25px;
            text-align: center;

            img {
                box-shadow: 4px 4px 1px 0px #A58D7426;
                margin-top: -25px;
            }

            h3 {
                color: #B89679;
                font-size: 1.6rem;
                padding: 15px 0 20px;
            }

            p {
                padding-bottom: 30px;
            }
        }
    }
}

#recommendModal {
    .modal-content {
        background-color: #F9F4F3;
        border-radius: 10px;
        border: none;

        .modal-body {
            padding: 0 20px;

            >img {
                width: 35px;
                height: 35px;
                margin: 0 auto 15px;
                display: block;
            }

            .modal-title {
                font-weight: 500;
                font-size: 2.2rem;
                text-align: center;
                color: #B89679;
                margin-top: 36px;

                &::before {
                    content: "";
                    display: block;
                    margin: 0 auto 19px;
                    width: 1.5px;
                    height: 30px;
                    background-color: #B89679;
                }
            }

            div {
                position: relative;
                background-color: #ffffff;
                border-radius: 20px;
                padding: 28px 15px;
                margin: 30px 0;

                img {
                    width: 110px;
                    position: absolute;
                    left: 25px;
                    bottom: 19%;
                }

                h4 {
                    font-size: 2.2rem;
                    margin-left: 120px;
                    margin-bottom: 11px;
                }

                .problems-list {
                    margin-left: 120px;
                }
            }

            .solutions {

                img {
                    right: 0;
                    left: auto;
                    top: -67px;
                    width: 135px;
                }

                h4 {
                    margin-left: 10px;
                }
            }

            li::marker {
                font-size: 0.8rem;
            }
        }
    }
}