/* このページのみRobotoとZen Maru Gothicを利用しているのでCSSから読み込み */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&display=swap');

:root {
    --roboto: "Roboto", sans-serif;
    --zen: "Zen Maru Gothic", serif;
}

.breadcrumbs {
    display: none;
}

.sp-break {
    display: none;

    @media (max-width: 800px) {
        display: inline;
    }
}

.biz-lp_section_title {
    text-align: center;
    margin-bottom: 30px;

    p {
        font-family: var(--roboto);
        font-size: 36px;
        font-weight: bold;
        color: #d7dfb6;
        letter-spacing: 0.03em;
        line-height: 1.45;
        text-transform: capitalize;
    }

    .section_title {
        font-family: var(--go);
        font-size: 36px;
        font-weight: bold;
        color: #515151;
        letter-spacing: 0.03em;
        line-height: 1.45;
    }

    @media screen and (max-width: 800px) {
        margin-bottom: 20px;

        p {
            font-size: 24px;
            line-height: 1;
        }

        .section_title {
            font-size: 24px;
        }
    }
}

.biz-lp_content_fv {
    background: url(../images/biz-lp/fv_bg.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 108px 0 100px;
    aspect-ratio: 1440 / 820;

    .fv_title {
        position: relative;
        margin-top: 55px;
        padding: 50px 80px 44px;
        background: rgba(255, 255, 255, 0.8);
        border: 5px solid #FFFFFF;
        backdrop-filter: blur(3px);
        border-radius: 20px;
        text-align: left;
        width: fit-content;

        .balloon {
            position: absolute;
            top: -55px;
            left: 60px;
            width: 270px;
            height: 91px;
            background: url(../images/biz-lp/fv_fukidashi.svg) no-repeat center / contain;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 18px;
            font-family: var(--zen);
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            letter-spacing: 0.03em;
        }

        h1 {
            font-size: 36px;
            font-weight: bold;
            color: #515151;
            letter-spacing: 0.04em;
            line-height: 1.45;
            margin: 0;

            .sp-break {
                display: none;
            }
        }

        .orange {
            color: #e97d39;
        }

        .bg-orange {
            display: block;
            background: #e97d39;
            color: #fff;
            padding: 8px 16px;
            margin: 20px 0;
        }

        p:last-child {
            font-family: var(--go);
            font-size: 20px;
            font-weight: bold;
            color: #9AAF47;
            letter-spacing: 0.07em;
            line-height: 1.95;
        }
    }

    @media screen and (max-width: 800px) {
        background-image: url(../images/biz-lp/fv_bg_sp.jpg);
        padding: 80px 0 60px;
        aspect-ratio: 375 / 540;

        .fv_title {
            /* max-width: 340px; */
            margin-top: 40px;
            margin-right: 37px;
            padding: 28px 15px 24px;

            .balloon {
                background-image: url(../images/biz-lp/fv_fukidashi_sp.svg);
                top: -34px;
                left: 15px;
                width: calc(166 / 375 * 100vw);
                height: 56px;
                font-size: 14px;
                padding-bottom: 11px;
            }

            h1 {
                font-size: 20px;

                .sp-break {
                    display: inline;
                }
            }

            /* .h1_main span {
                display: block;
            } */

            .bg-orange {
                -webkit-box-decoration-break: clone;
                box-decoration-break: clone;
                font-size: 24px;
                padding: 0;
                margin: 24px 0 20px;
                line-height: 1.75;
                background-color: transparent;
            }

            .bg-orange-sp {
                display: block;
                width: fit-content;
                background: #e97d39;
                color: #fff;
                padding: 4px 12px;
                line-height: 1.75;

                &:last-child {
                    margin-top: 8px;
                }
            }

            p:last-child {
                font-size: 14px;
            }
        }
    }
}

.biz-lp_content_worries {
    padding: 80px 0 100px;

    .worries_target_list {
        --gap: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--gap);
        background: #9aaf47;
        padding: 14px;
        list-style: none;
        margin: 0 0 30px;

        li {
            font-family: var(--go);
            font-size: 20px;
            font-weight: bold;
            color: #fff;
            letter-spacing: 0.03em;
            white-space: nowrap;

            &::after {
                content: "";
                display: inline-block;
                width: 1px;
                height: 20px;
                background: #fff;
                vertical-align: middle;
                margin-left: var(--gap);
            }

            &:last-child::after {
                display: none;
            }
        }
    }

    .worries_list {
        display: flex;
        justify-content: center;
        gap: 70px;
        list-style: none;
        margin: 0 0 30px;
        padding: 0;

        .worries_item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;

            .worries_img {
                width: 245px;
                height: 245px;
                border-radius: 50%;
                overflow: hidden;
                flex-shrink: 0;

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

            .worries_text {
                padding: 0;
                margin: 0;
                list-style-type: disc;
                list-style-position: outside;
                /* 記号を外側に配置 */
                padding-left: 20px;

                li {
                    font-size: 16px;
                    font-weight: bold;
                    color: #515151;
                    letter-spacing: 0.03em;
                    line-height: 1.45;
                }
            }
        }
    }

    .worries_resolve {
        text-align: center;
        font-family: var(--go);
        font-size: 36px;
        font-weight: bold;
        color: #e97d39;
        letter-spacing: 0.03em;
        line-height: 1.45;
    }

    .cta_banner {
        max-width: 748px;
        margin: 0 auto;
        margin-top: 32px;
    }

    @media screen and (max-width: 800px) {
        padding: 80px 0 60px;
        overflow-x: hidden;

        .worries_target_list {
            --gap: 10px;
            flex-wrap: wrap;
            margin: 0 calc(100% - 100vw) 20px;
            padding: 16px 24px;

            li {
                font-size: 14px;

                &+li::before {
                    height: 16px;
                }
            }
        }

        .worries_list {
            flex-direction: column;
            gap: 15px;

            .worries_item {
                flex-direction: row;
                gap: 10px;

                .worries_img {
                    width: 124px;
                    height: 124px;
                }
            }
        }

        .worries_resolve {
            font-size: 20px;
            text-align: left;
        }
    }
}

.biz-lp_content_package {
    background: #f8f6f3;
    padding: 80px 0 100px;

    .package_badge {
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 30px;
        background: #6b5344;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 0.03em;
        line-height: 1.95;
        padding: 0 30px;
    }

    .package_desc {
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        color: #515151;
        letter-spacing: 0.03em;
        line-height: 1.95;
        margin-bottom: 50px;
    }

    .package_list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 32px 40px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .package_item {
        position: relative;
        padding-top: 26px;
        max-width: 580px;
        width: 100%;
        justify-self: center;

        --color: #9aaf47;

        &.package_item--shop {
            --color: #49a447;
        }

        &.package_item--office {
            --color: #25752b;
        }

        .package_label {
            position: absolute;
            top: 0;
            left: 22px;
            height: clamp(42px, calc(-4.43px + 5.804vw), 55px);
            /* min: 42px, max: 55px */
            width: fit-content;

            img {
                width: auto;
                height: 100%;
                display: block;
            }
        }

        .package_card {
            display: flex;
            align-items: stretch;
            background: #fff;
            border: 3px solid var(--color);
            border-radius: 10px;
            overflow: hidden;
            min-height: 198px;
        }

        .package_info {
            flex: 1;
            padding: 30px 20px 20px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }

        .package_title {
            font-size: clamp(16px, calc(-12.58px + 3.571vw), 24px);
            /* min: 16px, max: 24px */
            font-weight: bold;
            color: #515151;
            letter-spacing: 0.03em;
            line-height: 1.75;
            display: flex;
            flex-direction: column;
        }

        .package_sub {
            font-size: clamp(14px, calc(6.86px + 0.893vw), 16px);
            /* min: 14px, max: 16px */
            font-weight: bold;
            color: #515151;
        }

        .package_price {
            display: flex;
            align-items: baseline;
            gap: 4px;

            .price_num {
                font-family: var(--roboto);
                font-size: clamp(40px, calc(-45.71px + 10.714vw), 64px);
                /* min: 40px, max: 64px */
                font-weight: bold;
                color: #df4545;
                letter-spacing: -0.02em;
                line-height: 1;
            }

            .price_unit {
                font-size: clamp(15px, calc(-2.86px + 2.232vw), 20px);
                /* min: 15px, max: 20px */
                font-weight: bold;
                color: #df4545;
                letter-spacing: 0.03em;
            }
        }

        .package_img {
            padding: 12px 16px;
            padding-left: 0;
            width: 167px;
            aspect-ratio: 155 / 174;
            flex-shrink: 0;
            align-self: stretch;

            img {
                border-radius: 10px;
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }
    }

    @media screen and (max-width: 800px) {
        padding: 50px 0 50px;

        .biz-lp_section_title {
            margin-bottom: 8px;
        }

        .package_badge {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .package_desc {
            font-size: 14px;
            margin-bottom: 30px;
        }

        .package_list {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .package_item {
            padding-top: 20px;

            .package_label {
                left: 0;
                font-size: 16px;
            }

            .package_card {
                min-height: 130px;
            }

            .package_info {
                padding: 32px 8px 16px 16px;
            }

            .package_img {
                width: 96px;
                aspect-ratio: unset;
                padding: 10px;
                padding-left: 0;
            }
        }
    }
}

.biz-lp_content_reason {
    background: #9aaf47;
    padding: 30px 0 80px;
    overflow: hidden;

    .biz-lp_section_title {

        p {
            color: #D7DFB6;
            opacity: 0.18;
            font-size: 96px;
            font-weight: bold;
        }

        .section_title {
            margin-top: -64px;
            color: #fff;
        }
    }

    .flex-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    .reason_text {
        flex: 1;
        position: relative;

        >p {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            letter-spacing: 0.03em;
            line-height: 1.95;
        }
    }

    .reason_img {
        max-width: 630px;
        /* flex-shrink: 0; */

        img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
    }

    @media screen and (max-width: 800px) {
        padding: 20px 0 40px;
        overflow-x: hidden;

        .biz-lp_section_title {
            margin: 0 calc(100% - 100vw) 30px;

            p {
                font-size: 48px;
            }

            .section_title {
                margin-top: -20px;
            }
        }

        .flex-container {
            flex-direction: column;
            gap: 30px;
        }

        .reason_img {
            max-width: 100%;
        }
    }
}

.biz-lp_content_plan {
    padding: 80px 0 100px;


    .plan_badge {
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 30px;
        background: #6b5344;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 0.03em;
        line-height: 1.95;
        padding: 0 30px;
    }

    .plan_desc {
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        color: #515151;
        letter-spacing: 0.03em;
        line-height: 1.95;
        margin-bottom: 50px;
    }

    .plan_list {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px 12px;
        list-style: none;
        padding: 0;
        margin: 0;

        .plan_item {
            grid-column: span 2;

            &:nth-child(4) {
                grid-column: 2 / span 2;
            }

            &:nth-child(5) {
                grid-column: 4 / span 2;
            }
        }

        .plan_card {
            position: relative;
            aspect-ratio: 392 / 216;
            background-size: cover;
            background-position: center;
            padding: 32px 36px;

            &::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.43);
            }

            .plan_title {
                position: relative;
                border-left: 3px solid #fff;
                padding-left: 10px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 0;
            }

            .plan_en,
            .plan_ja {
                position: relative;
                color: #fff;
                white-space: nowrap;
            }

            .plan_en {
                font-family: var(--roboto);
                font-size: 14px;
                font-weight: bold;
                letter-spacing: 0.03em;
                line-height: 1.95;
            }

            .plan_ja {
                font-size: 24px;
                font-weight: bold;
                letter-spacing: 0.03em;
                line-height: 1.95;
            }

            /* &:hover {
                &::before {
                    background: rgba(0, 0, 0, 0.1);
                    transition: background 0.3s ease;
                }
            } */
        }
    }

    @media screen and (max-width: 800px) {
        padding: 60px 0 80px;
        overflow-x: hidden;

        .biz-lp_section_title {
            margin-bottom: 10px;
        }

        .plan_badge {
            width: 100%;
            text-align: center;
            font-size: 16px;
            padding: 0 16px;
            margin-bottom: 20px;
        }

        .plan_desc {
            text-align: left;
            font-size: 14px;
            margin-bottom: 24px;
        }

        .plan_list {
            grid-template-columns: 1fr;
            gap: 10px;
            margin: 0 calc(100% - 100vw);

            .plan_item {
                grid-column: 1;

                &:nth-child(4) {
                    grid-column: 1;
                }

                &:nth-child(5) {
                    grid-column: 1;
                }
            }

            .plan_card {
                aspect-ratio: unset;
                height: 216px;
                padding: 35px 40px;

                .plan_ja {
                    margin-top: -4px;

                    font-size: 20px;
                }
            }
        }
    }
}

.biz-lp_content_works {
    background: #f8f6f3;
    padding: 80px 0 100px;
    display: none;

    .works_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .works_card {
        display: block;
        text-decoration: none;

        .works_img {
            height: 240px;
            overflow: hidden;

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

        .works_body {
            position: relative;
            margin: -74px 16px 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
            min-height: 170px;
            padding: 22px 22px 20px;
        }

        .works_tag {
            display: inline-flex;
            align-items: center;
            background: #9aaf47;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.03em;
            height: 30px;
            padding: 0 10px;
            margin-bottom: 8px;
        }

        .works_location {
            font-size: 14px;
            color: #9d9d9d;
            letter-spacing: 0.03em;
            line-height: 1.65;
            margin-bottom: 4px;
        }

        .works_title {
            font-size: 18px;
            font-weight: bold;
            color: #515151;
            letter-spacing: 0.03em;
            line-height: 1.65;
        }
    }

    @media screen and (max-width: 800px) {
        padding: 40px 0 60px;

        .biz-lp_section_title {

            .section_title {
                font-size: 20px;
            }
        }

        .works_list {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .works_card {
            display: flex;
            justify-content: space-between;
            align-items: center;

            /* 写真: 左側 235×192px */
            .works_img {
                flex-shrink: 0;
                width: calc(235 / 375 * 100%);
                aspect-ratio: 235 / 192;
                height: auto;
            }

            /* 白カード: 74px から始まり写真に 161px かぶさる */
            .works_body {
                /* flex-shrink: 0; */
                width: calc(268 / 375 * 100%);
                min-height: 162px;
                margin: 0 0 0 -161px;
                padding: 16px 16px 14px;
                z-index: 1;
            }

            .works_title {
                font-size: 16px;
            }
        }
    }
}

.biz-lp_content_contact {
    padding-bottom: 40px;

    .section_title {
        font-size: 32px;
    }

    /* reportonly チェック時：来場日時をグレーアウト＆操作不可 */
    .event_datetime.is-reportonly {
        opacity: 0.4;
        pointer-events: none;
        user-select: none;
        transition: opacity 0.2s;
    }

    .contact_form .event_reportonly_blank {
        content: "";
        display: block;
        width: 270px;
        padding-top: 8px;
    }
}

.biz-lp_content_message {
    background: url(../images/biz-lp/message_bg.jpg) no-repeat center;
    background-size: cover;
    /* background-blend-mode: multiply; */
    padding: 100px 0;

    .inner {
        display: flex;
        align-items: flex-start;
        gap: 80px;
        max-width: 1032px;
    }

    .message_img {
        flex-shrink: 0;
        width: 342px;
        margin-top: 31px;
        border: 3px solid #fff;

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

    .message_text {
        flex: 1;
        color: #fff;

        hgroup {
            margin-bottom: 30px;

            p {
                font-size: 24px;
                font-weight: bold;
                color: #d7dfb6;
                letter-spacing: 0.03em;
                line-height: 1.45;
            }

            h2 {
                font-size: 36px;
                font-weight: bold;
                color: #fff;
                letter-spacing: 0.03em;
                line-height: 1.45;
            }
        }

        .message_body {
            font-size: 16px;
            line-height: 1.95;
            letter-spacing: 0.03em;
            margin-bottom: 30px;
        }

        .message_name {
            display: flex;
            align-items: baseline;
            gap: 24px;
            margin-bottom: 16px;

            .name_ja {
                font-size: 24px;
                font-weight: bold;
                letter-spacing: 0.03em;
                line-height: 1.95;
            }

            .name_en {
                font-size: 14px;
                font-weight: bold;
                letter-spacing: 0.03em;
                line-height: 1.95;
            }
        }

        .message_divider {
            border: none;
            border-top: 1px solid #fff;
            margin: 0 0 16px;
        }

        .message_title {
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 0.03em;
            line-height: 1.95;
        }
    }

    @media screen and (max-width: 800px) {
        padding: 30px 0;
        background-image: url(../images/biz-lp/message_bg_sp.jpg);

        .inner {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
        }

        /* display: contents で .message_text のボックスを消し、
           子要素を .inner の直接 flex item として扱う */
        .message_text {
            display: contents;

            hgroup {
                order: 1;
                text-align: center;
                margin-bottom: 10px;

                p {
                    font-size: 16px;
                }

                h2 {
                    font-size: 24px;
                }
            }

            .message_divider {
                order: 2;
                margin: 0 0 10px;
            }

            .message_title {
                order: 3;
                font-size: 14px;
                margin-bottom: 0;
                text-align: center;
            }

            .message_name {
                justify-content: center;
                order: 4;
                margin-bottom: 20px;

                .name_ja {
                    font-size: 20px;
                }

                .name_en {
                    font-size: 12px;
                }
            }

            .message_body {
                order: 6;
                margin-bottom: 0;
            }
        }

        .message_img {
            order: 5;
            align-self: center;
            width: 185px;
            margin-top: 0;
            margin-bottom: 20px;

            img {
                height: 243px;
            }
        }
    }
}