@charset "UTF-8";

/* =========================================================
   TACO GLAMP 団体利用ページ
   既存CSSとの干渉を避けるため .group-page 配下に限定
========================================================= */

.group-page {
    --group-navy: #082756;
    --group-navy-dark: #061f47;
    --group-pink: #df0b70;
    --group-pink-soft: #fdeaf3;
    --group-teal: #078a92;
    --group-bg: #f7f3eb;
    --group-card: #ffffff;
    --group-border: #e5ded2;
    --group-text: #5e6068;
    --group-shadow: 0 18px 45px rgba(20, 29, 48, 0.09);
    --group-radius: 26px;
    --group-container: 1440px;

    background: var(--group-bg);
    color: var(--group-navy);
    font-family:
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        sans-serif;
    line-height: 1.8;
    overflow: hidden;
}

.group-page *,
.group-page *::before,
.group-page *::after {
    box-sizing: border-box;
}

.group-page img {
    display: block;
    width: 100%;
    height: auto;
}

.group-page a {
    text-decoration: none;
}

.group-container {
    width: min(calc(100% - 80px), var(--group-container));
    margin-inline: auto;
}

.group-section {
    padding: 110px 0;
}

.group-section--compact {
    padding: 56px 0;
}

.group-section--alt {
    background: rgba(255, 255, 255, 0.22);
}

.group-section-heading {
    max-width: 1000px;
    margin: 0 auto 56px;
    text-align: center;
}

.group-section-heading__en {
    margin: 0 0 14px;
    color: var(--group-pink);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.group-section-heading h2 {
    margin: 0;
    color: var(--group-navy);
    font-size: clamp(34px, 4vw, 62px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.group-section-heading > p:not(.group-section-heading__en) {
    margin: 24px auto 0;
    color: var(--group-text);
    font-size: 17px;
    line-height: 2;
}

/* IMAGE PLACEHOLDER
   後ほど下記のdivをimgへ差し替えてください。
   <img class="group-card__image" src="..." alt="">
*/
.group-image-placeholder {
    display: grid;
    min-height: 280px;
    place-items: center;
    overflow: hidden;
    background-image: url(../img/pu/mv.png);
   
    color: rgba(8, 39, 86, 0.55);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.group-card__image.group-image-placeholder,
.group-flow__image.group-image-placeholder,
.group-hero__image.group-image-placeholder,
.group-concept__image.group-image-placeholder,
.group-activity-intro__media.group-image-placeholder,
.group-day-bbq__visual.group-image-placeholder {
    background-position: center;
    background-size: cover;
}

.group-card__image img,
.group-flow__image img,
.group-hero__image img,
.group-concept__image img,
.group-activity-intro__media img,
.group-day-bbq__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HERO */
.group-hero {
    position: relative;
    min-height: 860px;
    color: #fff;
}

.group-hero__image {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.group-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 21, 53, 0.72) 0%, rgba(3, 21, 53, 0.24) 58%, rgba(3, 21, 53, 0.08) 100%),
        linear-gradient(0deg, rgba(3, 21, 53, 0.4), transparent 45%);
}

.group-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 780px;
    flex-direction: column;
    justify-content: center;
    padding-top: 130px;
}

.group-hero__en {
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(68px, 9vw, 150px);
    font-weight: 700;
    line-height: 0.95;
}

.group-hero__copy {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.group-hero__copy p {
    margin: 0;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--group-navy);
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 900;
    line-height: 1.5;
}

.group-breadcrumb {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 25px 0;
    background: var(--group-navy-dark);
}

.group-breadcrumb .group-container {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* CTA */
.group-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 44px;
    align-items: center;
    padding: 48px 52px;
    border-radius: var(--group-radius);
    background:
        radial-gradient(circle at 85% 50%, rgba(223, 11, 112, 0.85), transparent 40%),
        linear-gradient(110deg, #0b2e63 0%, #102858 55%, #b60869 100%);
    box-shadow: var(--group-shadow);
    color: #fff;
}

.group-cta__body h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(30px, 3vw, 50px);
    font-weight: 900;
    line-height: 1.35;
}

.group-cta__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.group-cta__buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.group-button {
    display: inline-flex;
    min-width: 190px;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.group-button:hover {
    transform: translateY(-3px);
    opacity: 0.94;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.group-button--white {
    background: #fff;
    color: var(--group-navy);
}

.group-button--pink {
    background: var(--group-pink);
    color: #fff;
}

/* PAGE NAV */
.group-page-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(229, 222, 210, 0.8);
    border-radius: var(--group-radius);
    background: #fff;
    box-shadow: var(--group-shadow);
}

.group-page-nav a {
    display: flex;
    min-height: 94px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--group-border);
    border-radius: 18px;
    background: #fffaf1;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.group-page-nav a:hover {
    transform: translateY(-3px);
    border-color: var(--group-pink);
}

.group-page-nav a span {
    color: var(--group-pink);
    font-size: 20px;
    line-height: 1;
}

/* SHARED PANELS / CARDS */
.group-panel,
.group-card,
.group-feature-card,
.group-plan-card {
    border: 1px solid rgba(229, 222, 210, 0.9);
    border-radius: var(--group-radius);
    background: var(--group-card);
    box-shadow: var(--group-shadow);
}

.group-panel {
    padding: 42px;
}

.group-panel h3 {
    margin: 0 0 24px;
    color: var(--group-navy);
    font-size: clamp(27px, 2.5vw, 42px);
    font-weight: 900;
    line-height: 1.45;
}

.group-panel p {
    margin: 0 0 18px;
    color: var(--group-text);
    font-size: 16px;
}

.group-panel p:last-child {
    margin-bottom: 0;
}

.group-card-grid {
    display: grid;
    gap: 24px;
}

.group-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.group-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.group-card {
    overflow: hidden;
}

.group-card__image {
    min-height: 280px;
}

.group-card__body {
    padding: 30px;
}

.group-card__body h3 {
    margin: 0 0 15px;
    color: var(--group-navy);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.45;
}

.group-card__body p,
.group-card__body li {
    color: var(--group-text);
    font-size: 15px;
}

.group-card__body p {
    margin: 0;
}

.group-card__body ul {
    margin: 16px 0 0;
    padding-left: 1.4em;
}

.group-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.group-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid var(--group-border);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--group-navy);
    font-size: 13px;
    font-weight: 900;
}

/* CONCEPT */
.group-concept {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: stretch;
}

.group-concept__image {
    min-height: 620px;
    border-radius: var(--group-radius);
    box-shadow: var(--group-shadow);
    background-image: url(../img/pu/concept.jpg);
}

.group-concept__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.group-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.group-stats div {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--group-border);
    border-radius: 18px;
    background: #fffaf1;
    text-align: center;
}

.group-stats strong {
    color: var(--group-pink);
    font-size: 27px;
    font-weight: 900;
}

.group-stats span {
    margin-top: 5px;
    color: var(--group-navy);
    font-size: 12px;
    font-weight: 800;
}

/* FEATURE */
.group-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.group-feature-card {
    padding: 36px;
}

.group-feature-card__number {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--group-pink);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.group-feature-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.5;
}

.group-feature-card p {
    margin: 0;
    color: var(--group-text);
    font-size: 15px;
}

/* FACILITY */
.group-facility-card .group-card__image {
    min-height: 430px;
}

/* ACTIVITY */
.group-activity-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    margin-bottom: 34px;
}

.group-activity-intro__media {
    min-height: 520px;
    border-radius: var(--group-radius);
    box-shadow: var(--group-shadow);
}

.group-activity-grid .group-card__image {
    min-height: 235px;
}

.group-activity-grid .group-card__body {
    padding: 24px;
}

.group-activity-grid .group-card__body h3 {
    font-size: 21px;
}

/* DAY BBQ */
.group-day-bbq {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    margin-bottom: 34px;
}

.group-day-bbq__visual {
    min-height: 510px;
    border-radius: var(--group-radius);
    box-shadow: var(--group-shadow);
    background-image: url(../img/pu/bbq_mv.jpg);
    background-size: contain!important;
}

.group-bbq-points {
    margin-bottom: 34px;
}

.group-bbq-points .group-card__image {
    min-height: 220px;
}

.group-bbq-detail .group-panel h3 {
    font-size: 28px;
}

.group-bbq-detail .group-panel ul {
    margin: 0;
    padding-left: 1.4em;
    color: var(--group-text);
}

.group-definition-list {
    margin: 0;
}

.group-definition-list div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--group-border);
}

.group-definition-list div:last-child {
    border-bottom: 0;
}

.group-definition-list dt {
    color: var(--group-pink);
    font-weight: 900;
}

.group-definition-list dd {
    margin: 0;
    color: var(--group-text);
}

/* PLAN */
.group-plan-card {
    padding: 38px;
}

.group-plan-card__label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--group-pink-soft);
    color: var(--group-pink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.group-plan-card h3 {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 900;
}

.group-plan-card p,
.group-plan-card li {
    color: var(--group-text);
    font-size: 15px;
}

.group-plan-card p {
    margin: 0 0 18px;
}

.group-plan-card ul {
    margin: 0;
    padding-left: 1.4em;
}

/* FLOW */
.group-flow {
    display: grid;
    gap: 28px;
}

.group-flow__item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--group-border);
    border-radius: var(--group-radius);
    background: #fff;
    box-shadow: var(--group-shadow);
}

.group-flow__item--reverse .group-flow__content {
    order: 2;
}

.group-flow__item--reverse .group-flow__image {
    order: 1;
}

.group-flow__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 54px;
}

.group-flow__time {
    display: inline-flex;
    min-width: 135px;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    padding: 10px 22px;
    border-radius: 18px;
    background: var(--group-navy);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.group-flow__content h3 {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.45;
}

.group-flow__content p {
    margin: 0;
    color: var(--group-text);
    font-size: 16px;
}

.group-flow__image {
    min-height: 430px;
}

/* FAQ */
.group-faq {
    display: grid;
    gap: 16px;
}

.group-faq details {
    overflow: hidden;
    border: 1px solid var(--group-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(20, 29, 48, 0.06);
}

.group-faq summary {
    position: relative;
    padding: 25px 70px 25px 28px;
    color: var(--group-navy);
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.group-faq summary::-webkit-details-marker {
    display: none;
}

.group-faq summary::after {
    position: absolute;
    top: 50%;
    right: 28px;
    color: var(--group-pink);
    content: "+";
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
}

.group-faq details[open] summary::after {
    content: "−";
}

.group-faq details > div {
    padding: 0 28px 26px;
    color: var(--group-text);
    font-size: 15px;
}

/* HELPERS */
.group-sp-only {
    display: none;
}

@media (max-width: 1200px) {
    .group-container {
        width: min(calc(100% - 48px), var(--group-container));
    }

    .group-card-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .group-cta {
        grid-template-columns: 1fr;
    }

    .group-cta__buttons {
        justify-content: flex-start;
    }

    .group-page-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .group-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .group-section {
        padding: 82px 0;
    }

    .group-section--compact {
        padding: 40px 0;
    }

    .group-hero {
        min-height: 760px;
    }

    .group-hero__content {
        min-height: 680px;
    }

    .group-concept,
    .group-activity-intro,
    .group-day-bbq {
        grid-template-columns: 1fr;
    }

    .group-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .group-flow__content {
        padding: 38px;
    }
}

@media (max-width: 680px) {
    .group-page {
        --group-radius: 20px;
    }

    .group-container {
        width: min(calc(100% - 30px), var(--group-container));
    }

    .group-section {
        padding: 66px 0;
    }

    .group-section--compact {
        padding: 28px 0;
    }

    .group-section-heading {
        margin-bottom: 34px;
        text-align: center!important;
    }

    .group-section-heading h2 {
        font-size: 24px;
        line-height: 1.45;
        text-align: center;
    }

    .group-section-heading > p:not(.group-section-heading__en) {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.9;
        text-align: left;
    }

    .group-hero {
        min-height: 670px;
    }

    .group-hero__overlay {
        background:
            linear-gradient(0deg, rgba(3, 21, 53, 0.82), rgba(3, 21, 53, 0.15) 78%),
            linear-gradient(90deg, rgba(3, 21, 53, 0.38), transparent);
    }

    .group-hero__content {
        min-height: 590px;
        justify-content: flex-end;
        padding-bottom: 65px;
    }

    .group-hero__en {
        margin-bottom: 20px;
        font-size: 57px;
        line-height: 1;
    }

    .group-hero__copy {
        gap: 10px;
    }

    .group-hero__copy p {
        padding: 11px 14px;
        font-size: 16px;
    }

    .group-breadcrumb {
        padding: 18px 0;
    }

    .group-breadcrumb .group-container {
        font-size: 12px;
    }

    .group-cta {
        gap: 25px;
        padding: 30px 24px;
    }

    .group-cta__body h2 {
        font-size: 27px;
    }

    .group-cta__body p {
        font-size: 13px;
    }

    .group-cta__buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .group-button {
        width: 100%;
        min-width: 0;
    }

    .group-page-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        padding: 14px;
    }

    .group-page-nav a {
        min-height: 78px;
        padding: 10px 8px;
        border-radius: 14px;
        font-size: 12px;
    }

    .group-page-nav a span {
        font-size: 17px;
    }

    .group-concept__image,
    .group-activity-intro__media,
    .group-day-bbq__visual {
        min-height: 330px;
    }

    .group-panel {
        padding: 26px 22px;
    }

    .group-panel h3 {
        font-size: 18px;
    }

    .group-panel p {
        font-size: 14px;
    }

    .group-stats {
        gap: 8px;
    }

    .group-stats div {
        min-height: 110px;
        padding: 10px;
    }

    .group-stats strong {
        font-size: 22px;
    }

    .group-card-grid--2,
    .group-card-grid--4,
    .group-feature-grid {
        grid-template-columns: 1fr;
    }

    .group-card-grid {
        gap: 18px;
    }

    .group-card__image,
    .group-facility-card .group-card__image {
        min-height: 240px;
    }

    .group-card__body {
        padding: 24px 21px;
    }

    .group-card__body h3 {
        font-size: 22px;
    }

    .group-card__body p,
    .group-card__body li {
        font-size: 14px;
    }

    .group-feature-card,
    .group-plan-card {
        padding: 27px 22px;
    }

    .group-feature-card h3,
    .group-plan-card h3 {
        font-size: 22px;
    }

    .group-activity-grid {
        display: flex;
        margin-right: -15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .group-activity-grid::-webkit-scrollbar {
        display: none;
    }

    .group-activity-grid .group-card {
        min-width: 82%;
        scroll-snap-align: start;
    }

    .group-definition-list div {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 14px;
        font-size: 14px;
    }

    .group-flow {
        gap: 20px;
    }

    .group-flow__item {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .group-flow__item--reverse .group-flow__content,
    .group-flow__item--reverse .group-flow__image {
        order:revert-rule;
    }

    .group-flow__content {
        padding: 28px 22px;
    }

    .group-flow__time {
        min-width: 110px;
        min-height: 58px;
        margin-bottom: 20px;
        border-radius: 14px;
        font-size: 22px;
    }

    .group-flow__content h3 {
        font-size: 22px;
    }

    .group-flow__content p {
        font-size: 14px;
    }

    .group-flow__image {
        min-height: 260px;
        order: -1;
    }

    .group-faq summary {
        padding: 20px 55px 20px 20px;
        font-size: 14px;
    }

    .group-faq summary::after {
        right: 20px;
    }

    .group-faq details > div {
        padding: 0 20px 22px;
        font-size: 13px;
    }

    .group-sp-only {
        display: initial;
    }
}

@media (prefers-reduced-motion: reduce) {
    .group-page *,
    .group-page *::before,
    .group-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   SCENE CARD SLIDER
========================================================= */

.group-scene-slider {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e9ecef;
    isolation: isolate;
    touch-action: pan-y;
}

.group-scene-slider__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.group-scene-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.group-scene-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.group-scene-slider__slide img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* 矢印 */
.group-scene-slider__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(8, 39, 86, 0.76);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
    backdrop-filter: blur(5px);
}

.group-scene-slider__arrow:hover {
    background: rgba(223, 11, 112, 0.9);
}

.group-scene-slider__arrow:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.group-scene-slider__arrow--prev {
    left: 12px;
}

.group-scene-slider__arrow--next {
    right: 50px;
}

.group-scene-slider__arrow::before {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
}

.group-scene-slider__arrow--prev::before {
    margin-left: 4px;
    transform: rotate(-135deg);
}

.group-scene-slider__arrow--next::before {
    margin-right: 4px;
    transform: rotate(45deg);
}

/* ドット */
.group-scene-slider__dots {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 14px;
    left: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.group-scene-slider__dot {
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    pointer-events: auto;
    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        background-color 0.25s ease;
}

.group-scene-slider__dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

/* 下部を少し暗くしてドットを見やすく */
.group-scene-slider::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 82px;
    background: linear-gradient(
        to top,
        rgba(3, 18, 39, 0.48),
        transparent
    );
    content: "";
    pointer-events: none;
}

/* 画像1枚の場合 */
.group-scene-slider.is-single .group-scene-slider__arrow,
.group-scene-slider.is-single .group-scene-slider__dots,
.group-scene-slider.is-single::after {
    display: none;
}

/* 読み込み失敗時 */
.group-scene-slider__slide img.is-error {
    opacity: 0;
}

/* タブレット */
@media (max-width: 1200px) {
    .group-scene-slider {
        min-height: 300px;
    }
}

/* スマートフォン */
@media (max-width: 680px) {
    .group-scene-slider {
        min-height: 245px;
        aspect-ratio: 16 / 11;
    }

    .group-scene-slider__arrow {
        width: 38px;
        height: 38px;
    }

    .group-scene-slider__arrow--prev {
        left: 9px;
    }

    .group-scene-slider__arrow--next {
        right: 9px;
    }

    .group-scene-slider__dots {
        bottom: 11px;
    }

    .group-scene-slider__dot {
        width: 8px;
        height: 8px;
    }

    .group-scene-slider__dot.is-active {
        width: 24px;
    }
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
    .group-scene-slider__track,
    .group-scene-slider__arrow,
    .group-scene-slider__dot {
        transition: none;
    }
}
/* スライダーの横幅はみ出し対策 */
.group-card-grid,
.group-card,
.group-card__image,
.group-scene-slider,
.group-scene-slider__viewport,
.group-scene-slider__track,
.group-scene-slider__slide {
    min-width: 0;
}

.group-scene-slider {
    position: relative;
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.group-facility-slider {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
}

.group-scene-slider__viewport,
.group-scene-slider__track,
.group-scene-slider__slide {
    width: 100%;
    height: 100%;
}

.group-page .group-scene-slider__arrow--prev {
    right: auto !important;
    left: 14px !important;
}

.group-page .group-scene-slider__arrow--next {
    right: 14px !important;
    left: auto !important;
}

@media (max-width: 680px) {
    .group-scene-slider,
    .group-facility-slider {
        min-height: 0 !important;
        aspect-ratio: 16 / 11;
    }
}

/* =========================================================
   ACTIVITYカード 画像・高さ統一
========================================================= */

.group-activity-grid {
    align-items: stretch;
}

.group-activity-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
}

/* 画像枠の高さをすべて統一 */
.group-activity-card__image {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e9ecef;
}

/* 元画像の縦横比に関係なく枠いっぱいに表示 */
.group-activity-card__image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center center;
}

/* 本文部分も同じ高さに伸ばす */
.group-activity-card .group-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

/* スマートフォン */
@media (max-width: 680px) {
    .group-activity-card__image {
        aspect-ratio: 16 / 11;
    }
}


/* =========================================================
   ACTIVITY VIDEO
========================================================= */

.group-activity-video {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--group-radius);
    background: #061f47;
    box-shadow: var(--group-shadow);
}

.group-activity-video__movie {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    margin: 0;
    border: 0;
    object-fit: cover;
    object-position: center;
}

/* 再生・停止ボタン */
.group-activity-video__control {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(6, 31, 71, 0.78);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(5px);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.group-activity-video__control:hover {
    background: rgba(223, 11, 112, 0.92);
    transform: scale(1.05);
}

.group-activity-video__control:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

/* 停止アイコン */
.group-activity-video__pause {
    display: flex;
    gap: 5px;
}

.group-activity-video__pause::before,
.group-activity-video__pause::after {
    display: block;
    width: 5px;
    height: 19px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

/* 再生アイコン */
.group-activity-video__play {
    display: none;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid currentColor;
}

/* 一時停止中 */
.group-activity-video__control.is-paused
.group-activity-video__pause {
    display: none;
}

.group-activity-video__control.is-paused
.group-activity-video__play {
    display: block;
}

/* スマートフォン */
@media (max-width: 680px) {
    .group-activity-video {
        min-height: 280px;
        border-radius: 18px;
    }

    .group-activity-video__movie {
        min-height: 280px;
    }

    .group-activity-video__control {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
    }
}

/* =========================================================
   DAY BBQ POINT
========================================================= */

.group-bbq-point-card {
    min-width: 0;
    overflow: hidden;
}

.group-bbq-point-card__image {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;

    background-color: #e9ecef;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    transition: transform 0.5s ease;
}

/* 画像を少し暗くしたい場合 */
.group-bbq-point-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 27, 58, 0.18),
        rgba(4, 27, 58, 0)
    );
    content: "";
    pointer-events: none;
}

.group-bbq-point-card:hover
.group-bbq-point-card__image {
    transform: scale(1.04);
}

@media (max-width: 680px) {
    .group-bbq-point-card__image {
        aspect-ratio: 16 / 11;
    }
}