/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ec4899;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ec4899;
}

/* ヒーローセクション */
.hero {
    position: relative;
    padding: 80px 0 0 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 180, 203, 0.8) 0%, rgba(236, 72, 153, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-catchphrase {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-brand {
    font-size: 4rem;
    font-weight: 900;
    color: #fbbf24;
    transform: rotate(-5deg);
    display: inline-block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: #ec4899;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.cta-button:hover {
    background-color: #be185d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

/* メインメッセージセクション */
.main-message {
    padding: 80px 0;
    background-color: #fce7f3;
    margin-top: 0;
}

.message-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.message-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ec4899;
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
}

/* セクション共通スタイル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* 特徴セクション */
.features {
    padding: 80px 0;
    background-color: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ec4899;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.7;
}

/* 価格比較セクション */
.comparison {
    padding: 80px 0;
    background-color: #f9fafb;
}

.comparison-example {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.comparison-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.comparison-card.highlight {
    background: linear-gradient(135deg, #f8b4cb 0%, #ec4899 100%);
    color: white;
    transform: scale(1.1);
}

.comparison-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 0.9rem;
    opacity: 0.9;
}

.vs {
    font-size: 2rem;
    font-weight: 900;
    color: #ec4899;
    white-space: nowrap;
    min-width: 60px;
    text-align: center;
}

.comparison-note {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
}

/* 販売可能商品セクション */
.products {
    padding: 80px 0;
    background-color: #f9fafb;
}

.products-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #6b7280;
}

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

.product-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    background-color: #ec4899;
    color: white;
    transform: translateY(-3px);
}

/* 利用の流れセクション */
.flow {
    padding: 80px 0;
    background-color: #ffffff;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    background: linear-gradient(135deg, #f8b4cb 0%, #ec4899 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ec4899;
}

.step-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: #ec4899;
    font-weight: 700;
}

.flow-note {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-top: 2rem;
}

/* フォームセクション */
.form-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #dc2626;
    font-weight: 600;
}

.application-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.form-help {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ec4899;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #f8b4cb 0%, #ec4899 100%);
    color: white;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.line-button-container {
    text-align: center;
}

.line-button {
    display: inline-block;
    background-color: #00c300;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.line-button:hover {
    background-color: #00a300;
    transform: translateY(-2px);
}

/* フッター */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ec4899;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ec4899;
}

.footer-text {
    font-size: 1rem;
    color: #6b7280;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-card.highlight {
        transform: none;
    }
    
    .vs {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .application-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 1.5rem;
    }
}



/* ポリシーページ用スタイル */
.policy-main {
    padding: 120px 0 80px;
    background-color: #ffffff;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    text-align: center;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fce7f3;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.policy-date {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.policy-date p {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* ポリシーページのレスポンシブ対応 */
@media (max-width: 768px) {
    .policy-main {
        padding: 100px 0 60px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

