/* eesugi.com - 良すぎ */
/* Colors: #B76E79, #7B2FBE, #F5F0E8, #FAFAFA, #E5E4E2, #2A1040, #D4B8E0, #8A6A90, #3A2050, #F0E8F4 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Sora', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; background: #FAFAFA; color: #2A1040; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: linear-gradient(135deg, #F5F0E8 0%, #F0E8F4 100%); }
.hero-title { font-weight: 700; font-size: clamp(4rem, 15vw, 10rem); color: #7B2FBE; opacity: 0; animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-domain { font-weight: 300; font-size: 18px; color: #B76E79; margin-top: 8px; opacity: 0; animation: fadeIn 1s 0.6s ease forwards; }
.hero-sub { font-weight: 300; font-size: 16px; color: #8A6A90; margin-top: 12px; opacity: 0; animation: fadeIn 1s 1s ease forwards; }
.section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #FAFAFA; }
.section-alt { background: #F5F0E8; }
.section-title { font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: #2A1040; margin-bottom: 20px; }
.section-text { font-weight: 300; font-size: 17px; color: #8A6A90; max-width: 600px; margin-bottom: 40px; }
.pick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 700px; width: 100%; }
.pick { border: 1px solid #E5E4E2; padding: 28px; text-align: left; background: #FAFAFA; transition: border-color 0.3s ease, transform 0.3s ease; }
.pick:hover { border-color: #B76E79; transform: translateY(-4px); }
.pick-badge { font-size: 12px; color: #7B2FBE; background: #D4B8E0; padding: 4px 10px; border-radius: 12px; display: inline-block; margin-bottom: 12px; }
.pick h3 { font-size: 18px; color: #2A1040; margin-bottom: 8px; }
.pick p { font-size: 14px; color: #8A6A90; }
.site-footer { text-align: center; padding: 40px; background: #2A1040; color: #3A2050; font-size: 13px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } .pick-grid { grid-template-columns: 1fr; } }
