 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #F8F6F0;  /* 和紙のような温かみ */
            color: #2F2E2A;
            line-height: 1.4;
            padding: 0;
            min-height: 100vh;
            position: relative;
        }

        .main-content {
            max-width: 720px;
            margin: 0 auto;
            padding: 16px 16px 100px 16px;
        }

        .hero-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
            aspect-ratio: 4 / 3;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-container {
            width: 100%;
            margin: 16px 0 20px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1F2A24;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            aspect-ratio: 16 / 9;
            position: relative;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-badge {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.65rem;
            color: white;
            font-weight: 500;
            pointer-events: none;
            font-family: monospace;
        }

        .profile-card {
            background: white;
            border-radius: 20px;
            padding: 20px 18px;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
            border: 1px solid #F0EADD;
        }

        .name-age {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .name {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.2px;
            background: linear-gradient(135deg, #B45F2B, #8E3E1A, #2C6E5C);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .age {
            font-size: 1.3rem;
            font-weight: 700;
            background: #FEF1E0;
            padding: 4px 14px;
            border-radius: 40px;
            color: #C1652C;
        }

        .location-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #EFF2EA;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #4B6A5B;
            margin-bottom: 18px;
        }

        .bio {
            font-size: 1rem;
            line-height: 1.55;
            color: #2E3C36;
            background: #FDFBF8;
            padding: 14px 16px;
            border-radius: 16px;
            border: 1px solid #F0E3D4;
            margin-bottom: 24px;
        }

        .image-duo {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

        .duo-img {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            background: #E4E0D4;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .duo-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .requirements {
            background: #FEFBF5;
            border-radius: 20px;
            padding: 18px 16px;
            border: 1px solid #EFE5D8;
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            color: #B35F2C;
            border-left: 0px solid #E27C3E;
            padding-left: 12px;
        }

        .req-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .req-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: white;
            padding: 10px 16px;
            border-radius: 60px;
            border: 1px solid #EADFCB;
            transition: all 0.1s ease;
        }

        .req-icon {
            font-size: 1.5rem;
            width: 40px;
            text-align: center;
        }

        .req-text {
            font-weight: 500;
            font-size: 0.9rem;
            color: #3C5248;
            flex: 1;
        }

        .highlight {
            font-weight: 800;
            color: #D87A3A;
        }

        .japan-stamp {
            margin-top: 22px;
            text-align: center;
            font-size: 0.7rem;
            color: #B7A88F;
            padding: 12px 0 4px;
            border-top: 1px dashed #E7DBCA;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .floating-contact {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 480px;
            background: linear-gradient(115deg, #CF6F32, #AA4E1E);
            color: white;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: 0 8px 22px rgba(170, 78, 30, 0.35);
            z-index: 1000;
            transition: all 0.2s ease;
            font-family: inherit;
            letter-spacing: 0.5px;
            backdrop-filter: blur(2px);
        }

        .floating-contact:active {
            transform: translateX(-50%) scale(0.96);
            background: linear-gradient(115deg, #AA4E1E, #923F14);
        }

        /* 日本特有の装飾：波/富士山モチーフ */
        .wa-symbol {
            display: inline-block;
            font-size: 0.75rem;
            background: #F2EADF;
            border-radius: 30px;
            padding: 2px 10px;
            margin-right: 6px;
        }

        @media (max-width: 550px) {
            .main-content {
                padding: 12px 12px 90px 12px;
            }
            .name {
                font-size: 1.8rem;
            }
            .floating-contact {
                width: calc(100% - 24px);
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            .req-card {
                border-radius: 40px;
                padding: 8px 14px;
            }
        }