        /* --- Reset & Base --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body,
        html {
            width: 100%;
            font-family: "LINE Seed JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
            color: #334155;
            background-color: #F8FAFC;
        }

        .line-seed-jp-regular {
            font-family: "LINE Seed JP", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .line-seed-jp-bold {
            font-family: "LINE Seed JP", sans-serif;
            font-weight: 700;
            font-style: normal;
        }

        .line-seed-jp-extrabold {
            font-family: "LINE Seed JP", sans-serif;
            font-weight: 800;
            font-style: normal;
        }

        /* --- Header --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px 40px;
            z-index: 100;
            pointer-events: none;
            /* 下のコンテンツに触れるように */
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .header-logo {
            font-size: 1.5rem;
            color: #00A6D0;
            pointer-events: auto;
        }

        .header-contact-btn {
            display: inline-block;
            padding: 12px 32px;
            background-color: #00A6D0;
            color: #ffffff;
            border-radius: 30px;
            font-size: 1rem;
            text-decoration: none;
            pointer-events: auto;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .header-contact-btn:hover {
            background-color: #008cb0;
            transform: translateY(-2px);
        }

        /* --- Scrolled Header (白ベース) --- */
        .header.is-scrolled .header-logo {
            color: #ffffff;
        }

        .header.is-scrolled .header-contact-btn {
            background-color: #ffffff;
            color: #00A6D0;
        }

        .header.is-scrolled .header-contact-btn:hover {
            background-color: #f8fafc;
        }

        @media (max-width: 768px) {
            .header {
                padding: 16px 20px;
            }

            .header-logo {
                font-size: 1.2rem;
            }

            .header-contact-btn {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
        }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #ffffff;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: left;
        }

        .hero-title-wrap {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 40px;
            position: relative;
        }

        .hero-user-icon {
            width: clamp(6rem, 15vw, 13rem);
            height: auto;
            margin-right: -48px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(3rem, 13vw, 13rem);
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: #00A6D0;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .hero-title-wrap {
                justify-content: center;
            }

            .hero-user-icon {
                position: absolute;
                bottom: 100%;
                left: 50%;
                transform: translateX(-50%);
                margin-right: 0;
                margin-bottom: 10px;
                /* テキストとの間隔 */
            }
        }

        /* Scroll Navigation */
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }

        .scroll-down span {
            color: #00A6D0;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .scroll-line {
            width: 2px;
            height: 60px;
            background-color: rgba(0, 166, 208, 0.2);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-color: #00A6D0;
            animation: scroll-anim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
        }

        @keyframes scroll-anim {
            0% {
                transform: translateY(-100%);
            }

            100% {
                transform: translateY(200%);
            }
        }

        /* --- Animation Container --- */
        .animation-container {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            background-color: #ffffff;
            overflow: hidden;
        }

        .animation-container.is-animating {
            height: auto;
            min-height: 100vh;
            min-height: 100dvh;
            overflow: visible;
        }

        /* 前面の白カバー */
        .white-cover {
            position: absolute;
            inset: 0;
            background-color: #ffffff;
            z-index: 1;
        }

        /* 背面の青コンテンツ層 */
        .content-layer {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            background-color: #00A6D0;
            z-index: 2;
            padding: 80px 20px;
            overflow-y: hidden;
            -ms-overflow-style: none;
            /* IE, Edge */
            scrollbar-width: none;
            /* Firefox */

            /* 初期状態：半径0の円で隠す */
            clip-path: circle(0% at 50% 50%);
            /* 【変更】アニメーションスピードを1.8秒に設定 */
            transition: clip-path 1.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .content-layer.is-animating {
            height: auto;
            min-height: 100vh;
            min-height: 100dvh;
            overflow-y: visible;
        }

        .content-layer::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari */
        }

        .content-layer.is-revealed {
            clip-path: circle(150% at 50% 50%);
        }

        /* --- Content Layout (Cards) --- */
        .content-inner {
            max-width: 1400px;
            margin: 0 auto;
            text-align: left;
        }

        .content-inner h2 {
            font-size: clamp(2.2rem, 7vw, 7.5rem);
            line-height: 1.1;
            margin-bottom: 64px;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        /* PC時はfade・toggleを非表示 */
        .card-grid-fade,
        .card-grid-toggle {
            display: none;
        }

        .card {
            background: #ffffff;
            border-radius: 16px;
            padding: 50px 24px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .card img {
            max-height: 55px;
            height: auto;
            width: auto;
            margin: 0 auto 20px;
            display: block;
        }

        .card p {
            color: #1e293b;
            font-size: 1rem;
            font-weight: bold;
            line-height: 1.4;
        }

        /* --- User Stats --- */
        .user-stats {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 30px;
            width: 100%;
            padding-bottom: 40px;
        }

        .user-img {
            max-height: 380px;
            width: auto;
            position: relative;
            z-index: 1;
        }

        .stats-content {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
        }

        .stats-text {
            font-size: clamp(2rem, 4vw, 4rem);
            color: #ffffff;
            white-space: nowrap;
            margin: 0;
            text-align: center;
        }

        .sp-br {
            display: none;
        }

        /* --- UI Stage (Form & Cursor) --- */
        .stage {
            position: absolute;
            inset: 0;
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            transition: opacity 0.5s ease-in, transform 0.5s ease-in;
        }

        .stage.is-fading {
            opacity: 0;
            transform: scale(0.95);
        }

        /* 【変更】フォーム全体のコンテナ */
        .ui {
            display: flex;
            gap: 16px;
            /* 隙間を広めに */
            align-items: center;
            width: 60vw;
            /* 中央配置なので自動的に左右20%余白になる */
            max-width: 900px;
            /* 広がりすぎ防止のストッパー */
            opacity: 0;
            transform: scale(0.95);
        }

        .ui.is-visible {
            opacity: 1;
            transform: scale(1);
            animation: popIn 0.3s ease-out forwards;
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(0.95);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 【変更】検索ボックスの大型化 */
        .search {
            flex: 1;
            height: 80px;
            /* 48pxから80pxへ */
            min-width: 0;
            background: #ffffff;
            border: 2px solid #E2E8F0;
            border-radius: 20px;
            /* 角丸を大きく */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            padding: 0 32px;
            /* 余白をたっぷりに */
            font-size: 36px;
            font-weight: bold;
            /* 少し太くして見やすく */
            overflow: hidden;
        }

        .text {
            color: #000000;
            white-space: nowrap;
        }

        /* キャレット（点滅する棒）も大きく */
        .caret {
            display: inline-block;
            width: 4px;
            height: 40px;
            background-color: #000000;
            margin-left: 4px;
            opacity: 0;
        }

        .caret.active {
            opacity: 1;
        }

        .caret.blink {
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        /* 【変更】確認ボタンの大型化 */
        .btn {
            flex-shrink: 0;
            height: 80px;
            /* 検索枠に合わせる */
            padding: 0 48px;
            background: #00A6D0;
            color: #ffffff;
            border: none;
            border-radius: 20px;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn.is-squishing {
            animation: squish 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        @keyframes squish {
            0% {
                transform: scale(1, 1) translateY(0);
            }

            20% {
                transform: scale(0.96, 0.92) translateY(1px);
            }

            50% {
                transform: scale(1.03, 1.05) translateY(0);
            }

            70% {
                transform: scale(0.99, 0.98) translateY(0);
            }

            100% {
                transform: scale(1, 1) translateY(0);
            }
        }

        .sheen {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-20deg);
            animation: sheenAnim 0.5s ease-out forwards;
        }

        @keyframes sheenAnim {
            100% {
                left: 200%;
            }
        }

        .ripple {
            position: absolute;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(1);
            animation: rippleAnim 0.6s ease-out forwards;
        }

        @keyframes rippleAnim {
            100% {
                transform: translate(-50%, -50%) scale(15);
                opacity: 0;
            }
        }

        /* --- Cursor --- */
        .cursor {
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 30px;
            /* カーソルも少しだけ大きく */
            filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
            z-index: 1000;
            opacity: 0;
            will-change: transform, opacity;
        }

        .cursor-shape {
            width: 100%;
            height: 100%;
            background-color: #111111;
            clip-path: polygon(0 0, 0 100%, 28% 72%, 50% 100%, 70% 90%, 45% 65%, 100% 65%);
        }

        /* --- Solution Section --- */
        .solution {
            background-color: #00A6D0;
            padding: 120px 20px;
        }

        .text-center {
            text-align: center !important;
        }

        .solution-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        .solution-item img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
        }

        /* --- Use Case Section --- */
        .use-case {
            background-color: #00A6D0;
            padding: 80px 20px 120px;
            overflow: hidden;
        }

        .use-case-swiper {
            width: 100%;
            padding: 20px 0 60px 0;
            /* padding-bottomを50pxから60pxに変更 */
            overflow: visible;
        }

        .use-case-swiper .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            overflow: hidden;
        }

        .use-case-swiper .swiper-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 矢印はコンテナ内に配置・丸い枠線デザインに */
        .use-case-swiper .swiper-button-next,
        .use-case-swiper .swiper-button-prev {
            color: #ffffff;
            top: auto;
            bottom: -10px;
            /* 0から10px下へ移動 */
            transform: none;
            margin: 0;
            height: 40px;
            width: 40px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Swiperデフォルトのアイコンサイズを小さく調整 */
        .use-case-swiper .swiper-button-next::after,
        .use-case-swiper .swiper-button-prev::after {
            font-size: 16px;
            font-weight: bold;
        }

        .use-case-swiper .swiper-button-prev {
            left: 0;
            right: auto;
        }

        .use-case-swiper .swiper-button-next {
            left: 56px;
            /* 矢印間の少しの隙間を考慮(40px+16px) */
            right: auto;
        }

        /* --- Partner Section --- */
        .partner {
            background-color: #00A6D0;
            padding: 120px 20px;
        }

        .partner .content-inner h2 {
            margin-bottom: 80px;
            color: #ffffff;
        }

        .partner-area-pc {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            aspect-ratio: 16 / 9;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .partner-center {
            width: 40%;
            aspect-ratio: 1 / 1;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #00A6D0;
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: 0.05em;
            z-index: 2;
        }

        .partner-item {
            position: absolute;
            width: 32%;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            z-index: 1;
        }

        .partner-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 配置設定（PC版） */
        .pos-left-1 {
            top: 0;
            left: 0;
        }

        .pos-left-2 {
            top: 40%;
            left: -5%;
        }

        .pos-left-3 {
            bottom: 0;
            left: 5%;
        }

        .pos-right-1 {
            top: 0;
            right: 0;
        }

        .pos-right-2 {
            top: 40%;
            right: -5%;
        }

        .pos-right-3 {
            bottom: 0;
            right: 5%;
        }

        /* アニメーション順次表示設定 */
        .partner-area-pc.is-active .partner-item {
            opacity: 1;
            transform: translateY(0);
        }

        .partner-area-pc.is-active .pos-left-1 {
            transition-delay: 0.2s;
        }

        .partner-area-pc.is-active .pos-right-1 {
            transition-delay: 0.4s;
        }

        .partner-area-pc.is-active .pos-left-2 {
            transition-delay: 0.6s;
        }

        .partner-area-pc.is-active .pos-right-2 {
            transition-delay: 0.8s;
        }

        .partner-area-pc.is-active .pos-left-3 {
            transition-delay: 1.0s;
        }

        .partner-area-pc.is-active .pos-right-3 {
            transition-delay: 1.2s;
        }

        .partner-area-sp {
            display: none;
        }

        /* アニメーション順次表示設定 (SP) */
        .partner-area-sp.is-active .partner-sp-item {
            opacity: 1;
            transform: translateX(0);
        }

        .partner-area-sp.is-active .partner-sp-item:nth-child(1) {
            transition-delay: 0.2s;
        }

        .partner-area-sp.is-active .partner-sp-item:nth-child(2) {
            transition-delay: 0.4s;
        }

        .partner-area-sp.is-active .partner-sp-item:nth-child(3) {
            transition-delay: 0.6s;
        }

        .partner-area-sp.is-active .partner-sp-item:nth-child(4) {
            transition-delay: 0.8s;
        }

        .partner-area-sp.is-active .partner-sp-item:nth-child(5) {
            transition-delay: 1.0s;
        }

        /* 【追加】レスポンシブデザイン（スマホ向け） */
        @media (max-width: 768px) {
            .partner-area-pc {
                display: none;
            }

            .partner-area-sp {
                display: flex;
                align-items: stretch;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }

            .partner-sp-left {
                width: 65%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 15px;
                z-index: 2;
                /* 白背景の上に重ねる */
                margin-right: -5px;
                /* 右側の白背景要素に5px重なるように指定 */
            }

            .partner-sp-item {
                width: 100%;
                opacity: 0;
                transform: translateX(-20px);
                transition: opacity 0.6s ease, transform 0.6s ease;
            }

            .partner-sp-item img {
                width: 100%;
                height: auto;
                display: block;
            }

            .partner-sp-right {
                width: calc(35% + 5px);
                /* 重なり分を考慮 */
                background-color: #ffffff;
                border-radius: 20px;
                /* 角丸指定 */
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1;
            }

            .partner-sp-right-inner {
                color: #00A6D0;
                text-align: center;
            }

            /* アニメーション順次表示設定 (SP) */
            .partner-area-sp.is-active .partner-sp-item {
                opacity: 1;
                transform: translateX(0);
            }

            .partner-area-sp.is-active .partner-sp-item:nth-child(1) {
                transition-delay: 0.2s;
            }

            .partner-area-sp.is-active .partner-sp-item:nth-child(2) {
                transition-delay: 0.4s;
            }

            .partner-area-sp.is-active .partner-sp-item:nth-child(3) {
                transition-delay: 0.6s;
            }

            .partner-area-sp.is-active .partner-sp-item:nth-child(4) {
                transition-delay: 0.8s;
            }

            .partner-area-sp.is-active .partner-sp-item:nth-child(5) {
                transition-delay: 1.0s;
            }
        }

        /* 【追加】レスポンシブデザイン（スマホ向け） */
        @media (max-width: 768px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            /* SP時のカード表示制限 */
            .card-grid-wrap {
                position: relative;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }

            .card-grid-outer.is-expanded .card-grid-wrap {
                max-height: none;
            }

            /* フェードは非表示 */
            .card-grid-fade {
                display: none;
            }

            /* 全部見るボタン（背景の青に合わせて白系） */
            .card-grid-toggle {
                display: block;
                margin: 20px auto 0;
                padding: 12px 40px;
                background: none;
                border: 2px solid #ffffff;
                color: #ffffff;
                border-radius: 30px;
                font-size: 0.95rem;
                cursor: pointer;
                position: relative;
                z-index: 3;
                transition: background-color 0.3s ease, color 0.3s ease;
            }

            .card-grid-toggle:hover {
                background-color: #ffffff;
                color: #00A6D0;
            }

            .card-grid-outer.is-expanded .card-grid-toggle {
                display: none;
            }

            .solution {
                padding: 80px 20px;
            }

            .use-case {
                padding: 40px 20px 80px;
            }

            .content-inner h2 {
                margin-bottom: 40px;
            }

            .user-stats {
                flex-direction: column;
                margin-top: 60px;
            }

            .user-img {
                max-height: 240px;
                margin-bottom: 24px;
            }

            .stats-content {
                position: static;
                transform: none;
                width: 100%;
            }

            .stats-text {
                position: static;
                transform: none;
                white-space: normal;
                text-align: center;
                line-height: 1.3;
            }

            .sp-br {
                display: block;
            }

            .ui {
                width: 90vw;
                /* スマホでは60%だと狭すぎるため90%に */
                gap: 12px;
            }

            .search {
                height: 60px;
                padding: 0 20px;
                font-size: 20px;
                border-radius: 16px;
            }

            .caret {
                height: 24px;
            }

            .btn {
                height: 60px;
                padding: 0 24px;
                font-size: 18px;
                border-radius: 16px;
            }
        }

        /* --- Contact Section --- */
        .contact {
            background-color: #00A6D0;
            /* いつもの青 */
            padding: 80px 20px 120px;
        }

        .contact-header-wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-header {
            width: 100%;
            margin-bottom: 60px;
        }

        .contact-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .contact-form-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-text {
            text-align: center;
            margin-bottom: 60px;
            color: #ffffff;
            /* 白文字に変更 */
        }

        .contact-text p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            line-height: 1.6;
            letter-spacing: 0.05em;
        }

        .contact-form {
            background-color: #ffffff;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background-color: #f8fafc;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            appearance: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00A6D0;
            background-color: #ffffff;
        }

        .select-wrap {
            position: relative;
        }

        .select-wrap::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #a0aec0;
            pointer-events: none;
        }

        .btn-submit {
            width: 100%;
            padding: 20px;
            background-color: #00A6D0;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #008cb0;
        }

        @media (max-width: 768px) {
            .contact {
                padding-bottom: 80px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-text {
                margin-bottom: 40px;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }

        /* --- Footer --- */
        .footer {
            background-color: #00A6D0;
            padding: 60px 0 40px;
        }

        .footer-img-wrap {
            width: 100%;
        }

        .footer-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .footer-border {
            width: 100%;
            height: 1px;
            background-color: #ffffff;
            margin-top: 40px;
        }

        .footer-copyright {
            text-align: center;
            color: #ffffff;
            font-size: 0.85rem;
            margin-top: 20px;
            letter-spacing: 0.05em;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 30px;
            }

            .footer-copyright {
                font-size: 0.75rem;
            }
        }

        /* --- Thanks Page --- */
        .thanks-main {
            background-color: #00A6D0;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 20px 80px;
        }

        .thanks-content h1 {
            color: #ffffff;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 24px;
            letter-spacing: 0.05em;
        }

        .thanks-content p {
            color: #ffffff;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 48px;
        }

        .btn-back {
            display: inline-block;
            background-color: #ffffff;
            color: #00A6D0;
            padding: 16px 48px;
            border-radius: 40px;
            font-size: 1.1rem;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-back:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .thanks-content p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .btn-back {
                padding: 14px 40px;
                font-size: 1rem;
            }
        }

        /* --- Accessibility --- */
        @media (prefers-reduced-motion: reduce) {

            .ui,
            .btn,
            .sheen,
            .ripple,
            .cursor,
            .caret,
            .content-layer,
            .stage {
                animation: none !important;
                transition: none !important;
            }
        }

        /* --- Menu Modal --- */
        .btn-menu-open {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-top: 15px;
            background-color: #ffffff;
            color: #00A6D0;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease, color 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .btn-menu-open:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
            background-color: #f8fafc;
        }

        .menu-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-modal.is-active {
            opacity: 1;
            visibility: visible;
        }

        .menu-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            cursor: pointer;
        }

        .menu-modal-content {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 95vh;
            background: #ffffff;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            display: flex;
            flex-direction: column;
        }

        .menu-modal.is-active .menu-modal-content {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .menu-modal-content {
                height: 92vh;
            }
        }

        .menu-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #FFFFFF;
            border: none;
            font-size: 28px;
            color: #00a6d0;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .menu-modal-close:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .menu-modal-body {
            flex: 1;
            width: 100%;
            height: 100%;
            position: relative;
            overflow-y: auto;
            background: #00a6d0;
            border-radius: 20px 20px 0 0;
        }

        /* --- Menu List Styles (Extracted from menu.html) --- */
        .menu-list {
            padding: 18px 14px 60px;
            max-width: 780px;
            margin: 0 auto;
            color: #111;
        }

        .menu-hero {
            color: #fff;
            margin: 18px auto 18px;
            text-align: center;
            padding: 18px 10px 8px;
        }

        .menu-hero h2 {
            font-size: 38px;
            line-height: 1.15;
            margin: 0 0 10px;
            color: #fff;
        }

        .menu-hero p {
            margin: 0 auto;
            max-width: 46ch;
            opacity: .92;
            color: #fff;
            font-size: 15px;
        }

        .menu-sub {
            margin-top: 10px;
            font-size: 13px;
            opacity: .86;
        }

        .menu-wrap {
            background: #ffffff;
            padding: 12px 12px 6px;
            border-radius: 15px;
            margin: 0 auto 16px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
        }

        .menu-wrap h3 {
            font-size: 20px;
            margin: 2px 0 10px;
            padding: 8px 12px;
            background: #fff;
            border-left: 6px solid #00a6d0;
            color: #111;
        }

        .menu-wrap table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 0 10px;
            font-size: 16px;
        }

        .menu-wrap th,
        .menu-wrap td {
            padding: 10px 12px;
            border-bottom: 1px solid #e6e6e6;
            vertical-align: top;
            color: #111;
        }

        .menu-wrap th {
            width: 72%;
            text-align: left;
            font-weight: 650;
        }

        .menu-wrap td {
            width: 28%;
            text-align: right;
            white-space: nowrap;
            font-weight: 700;
        }

        .menu-modal iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
            .menu-hero h2 {
                font-size: 25px;
            }

            .menu-wrap table {
                font-size: 12px;
            }
        }