﻿:root {
      --bg-1: #fff7fb;
      --bg-2: #f0fbff;
      --bg-3: #fef6e8;
      --accent-1: #ffb3c7;
      --accent-2: #b9d7ff;
      --accent-3: #c8f0d8;
      --accent-4: #f7d7a5;
      --ink-1: #3b3b3f;
      --ink-2: #6a6a74;
      --card: #ffffffcc;
      --shadow: 0 20px 50px rgba(98, 110, 140, 0.18);
      --radius: 28px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic Pro", "BIZ UDPGothic", "Yu Gothic", sans-serif;
      color: var(--ink-1);
      background: radial-gradient(1200px 800px at 10% 10%, var(--bg-2), transparent 60%),
                  radial-gradient(900px 700px at 90% 0%, var(--bg-3), transparent 55%),
                  linear-gradient(135deg, var(--bg-1), #f7f9ff 40%, var(--bg-2));
      min-height: 100vh;
    }

    .wrap {
      max-width: 1080px;
      margin: 0 auto;
      padding: 56px 24px 88px;
      position: relative;
    }

    .blob {
      position: absolute;
      filter: blur(2px);
      opacity: 0.7;
      z-index: 0;
      animation: float 12s ease-in-out infinite;
    }

    .blob.one {
      width: 260px;
      height: 260px;
      background: radial-gradient(circle at 30% 30%, #fff, var(--accent-2));
      border-radius: 60% 40% 60% 40%;
      top: -40px;
      left: -20px;
    }

    .blob.two {
      width: 220px;
      height: 220px;
      background: radial-gradient(circle at 40% 40%, #fff, var(--accent-1));
      border-radius: 55% 45% 50% 50%;
      top: 200px;
      right: -20px;
      animation-delay: -2s;
    }

    .blob.three {
      width: 180px;
      height: 180px;
      background: radial-gradient(circle at 50% 50%, #fff, var(--accent-3));
      border-radius: 50% 50% 60% 40%;
      bottom: -40px;
      left: 30px;
      animation-delay: -4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(18px); }
    }

    header {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 24px;
      align-items: center;
      grid-template-columns: 1fr;
      margin-bottom: 36px;
    }

    .hero {
      background: var(--card);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: #ffffff;
      border-radius: 999px;
      font-size: 0.85rem;
      color: var(--ink-2);
      box-shadow: 0 10px 20px rgba(90, 90, 120, 0.1);
    }

    .profile {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .avatar {
      width: 72px;
      height: 72px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 12px 26px rgba(120, 130, 160, 0.2);
      border: 3px solid #fff;
    }

    h1 {
      margin: 16px 0 12px;
      font-size: clamp(2rem, 5vw, 3.1rem);
      line-height: 1.2;
    }

    .lead {
      color: var(--ink-2);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .chip {
      padding: 8px 14px;
      background: #fff;
      border-radius: 999px;
      font-size: 0.85rem;
      box-shadow: 0 6px 16px rgba(100, 120, 140, 0.12);
    }

    section {
      position: relative;
      z-index: 1;
      margin-top: 28px;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .card {
      background: var(--card);
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(98, 110, 140, 0.22);
    }

    .card.no-lift:hover {
      transform: none;
      box-shadow: var(--shadow);
    }

    .card h3 {
      margin: 0 0 8px;
      font-size: 1.1rem;
    }

    .card p {
      margin: 0 0 12px;
      color: var(--ink-2);
      line-height: 1.7;
    }

    .card a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #4d6aa6;
      text-decoration: none;
      font-weight: 600;
    }

    .link-list {
      display: grid;
      gap: 12px;
    }

    .link-item {
      background: #fff;
      border-radius: 18px;
      padding: 14px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      box-shadow: 0 10px 24px rgba(100, 120, 140, 0.12);
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .link-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(90, 110, 140, 0.18);
    }

    .link-item:focus-visible {
      outline: 3px solid rgba(132, 180, 255, 0.6);
      outline-offset: 3px;
    }

    .link-item span {
      color: var(--ink-2);
      font-size: 0.9rem;
    }

    .note {
      font-size: 0.9rem;
      color: var(--ink-2);
      margin-top: 16px;
    }

    footer {
      margin-top: 42px;
      text-align: center;
      color: var(--ink-2);
      font-size: 0.9rem;
    }

    @media (max-width: 640px) {
      .wrap { padding: 40px 18px 64px; }
      .hero { padding: 24px; }
      .link-item { flex-direction: column; align-items: flex-start; }
    }
