/* Modern Static Pages Common Styles */
body {
    background: #ffffff;
}

.section-md {
    padding: 80px 0;
    background: #ffffff;
    min-height: 100vh;
}

.section-title-wrap-full {
    text-align: center;
    margin-bottom: 50px;
}

.section-sub-title {
    color: #dba360;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

/* Modern Content Card */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    overflow: hidden;
}

/* Company Info Items */
.company-info-item {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.company-info-item:last-child {
    border-bottom: none;
}

.company-info-item:hover {
    background: #f9f9f9;
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
}

.company-info-label {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    min-width: 140px;
    margin-right: 24px;
    flex-shrink: 0;
    padding-top: 2px;
}

.company-info-content {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.company-info-content a {
    color: #dba360;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.company-info-content a:hover {
    color: #c99345;
}

.company-info-content img {
    vertical-align: middle;
    margin-left: 8px;
}

/* External link icon */
.external-link-icon {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
}

/* Text Content Styles */
.text-content {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.text-content h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-content h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.text-content h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.text-content ul, .text-content ol {
    /*margin-left: 20px;*/
    margin-bottom: 20px;
}

.text-content li {
    margin-bottom: 8px;
}

.text-content p {
    margin-bottom: 20px;
}

/* Table Styles */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-table th,
.content-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.content-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #dba360;
    box-shadow: 0 0 0 3px rgba(219, 163, 96, 0.1);
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.btn-primary-custom {
    background: #dba360;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background: #c99345;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(219, 163, 96, 0.3);
}

/* LINE Inquiry Cards */
.line-card-official {
    background: linear-gradient(135deg, #06C755 0%, #00B548 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(6, 199, 85, 0.3);
}

.line-card-official::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.line-card-official .line-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.line-card-official .line-icon svg {
    width: 48px;
    height: 48px;
    fill: #06C755;
}

.line-card-official h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.line-card-official p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 28px;
}

.line-card-official .btn-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #06C755;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.line-card-official .btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.line-card-official .btn-line svg {
    width: 24px;
    height: 24px;
    fill: #06C755;
}

/* 問い合わせ用カード */
.line-card-inquiry {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.line-card-inquiry h3 {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.line-card-inquiry p {
    color: #868e96;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.line-card-inquiry .btn-line-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #06C755;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid #06C755;
    text-decoration: none;
    transition: all 0.2s ease;
}

.line-card-inquiry .btn-line-simple:hover {
    background: #06C755;
    color: #fff;
}

.line-card-inquiry .btn-line-simple:hover svg {
    fill: #fff;
}

.line-card-inquiry .btn-line-simple svg {
    width: 20px;
    height: 20px;
    fill: #06C755;
    transition: fill 0.2s ease;
}

.line-card-inquiry .note {
    color: #adb5bd;
    font-size: 0.8rem;
    margin-top: 16px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .section-md {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 24px;
        margin: 0 16px;
    }
    
    .company-info-item {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .company-info-item:hover {
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .company-info-label {
        margin-right: 0;
        margin-bottom: 8px;
        min-width: auto;
    }
    
    .text-content h2 {
        font-size: 1.3rem;
    }

    .text-content h3 {
        font-size: 1.2rem;
    }

    .line-card-official {
        padding: 40px 24px;
        margin: 0 8px;
    }

    .line-card-official .line-icon {
        width: 64px;
        height: 64px;
    }

    .line-card-official .line-icon svg {
        width: 36px;
        height: 36px;
    }

    .line-card-official h3 {
        font-size: 1.3rem;
    }

    .line-card-official .btn-line {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .line-card-inquiry {
        padding: 24px 20px;
        margin: 0 8px;
    }
}