@charset "UTF-8";

/* ==========================================================================
   Variables & Base Settings (Premium Beauty Theme)
   ========================================================================== */
:root {
    /* Colors (Premium, Clean, Trustworthy) */
    --primary-color: #00a8cc;     /* 清潔感のあるアクアブルー */
    --primary-hover: #008eb0;
    --secondary-color: #1a3a5f;   /* 高級感のあるネイビー（信頼） */
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #ffffff;
    --bg-light: #f0f7f9;
    --border-color: #e2e8f0;
    --accent-color: #d4af37;      /* ゴールド（プレミアム） */
    --danger-color: #e53e3e;

    /* Typography */
    --font-family: 'Noto Sans JP', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 800px;
    --sp-padding: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--sp-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-danger {
    color: var(--danger-color);
    font-weight: bold;
}

.highlight {
    background: linear-gradient(transparent 60%, #fff700 40%);
    font-weight: bold;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 40px 0;
    /* 水をイメージしたグラデーション */
    background: linear-gradient(135deg, #fff 0%, #e0f2f7 100%);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-title .highlight {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Buttons (CTA)
   ========================================================================== */
.cta-area {
    margin: 30px 0;
    text-align: center;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 高級感のあるゴールドまたは鮮やかなブルー */
    background: linear-gradient(180deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); /* 温かみのあるピンク系（美容） */
    background: linear-gradient(180deg, #50c9c3 0%, #96deda 100%); /* 美しいアクア系 */
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 50px;
    border: 3px solid #fff;
    box-shadow: 0 6px 15px rgba(0, 168, 204, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.cta-button.gold {
    background: linear-gradient(180deg, #d4af37 0%, #b8860b 100%);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 204, 0.6);
}

.cta-button-text {
    font-size: 1.4rem;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-button-sub {
    font-size: 0.8rem;
    margin-top: 4px;
    opacity: 0.9;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.pulse-animation {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Sections General
   ========================================================================== */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ==========================================================================
   Content Styles
   ========================================================================== */
.content-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.content-box h2, .content-box h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.content-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-box li {
    margin-bottom: 10px;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.user-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.review-title {
    font-weight: bold;
    margin-bottom: 10px;
}

/* ==========================================================================
   Table Style
   ========================================================================== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.comparison-table th, .comparison-table td {
    border: 1px solid var(--border-color);
    padding: 12px 8px;
    text-align: center;
}

.comparison-table th {
    background-color: var(--bg-light);
    color: var(--secondary-color);
}

.highlight-cell {
    background-color: #e0f2f7;
    font-weight: bold;
    color: var(--primary-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* ==========================================================================
   Navigation (Next Article)
   ========================================================================== */
.next-article-nav {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.next-article-nav h3 {
    margin-bottom: 15px;
}

.nav-link-box {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link-box:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding: 0;
    }
}
