﻿@charset "UTF-8";

    .content-text-sn {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px 25px;
        margin: 30px auto;
        max-width: 1200px;
        border: 1px solid #e9ecef;
    }
    .siteinfo { font-size: 14px; color: #6c757d; }
    .list-inline { display: flex; flex-wrap: wrap; gap: 30px; list-style: none; padding: 0; margin: 0; }
    .list-inline li { display: flex; align-items: center; gap: 8px; }
    .tel::before { content: "👁️"; margin-right: 5px; }
    .add::before { content: "📅"; margin-right: 5px; }
    .content-text-sn a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f0a020;
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-top: 15px;
    }
    .content-text-sn a:hover { background: #d4891a; transform: translateY(-2px); }
    .content-text-sn a:last-child { background: #6c757d; }
    .content-text-sn a:last-child:hover { background: #5a6268; }
    @media (max-width: 768px) {
        .content-text-sn { padding: 15px; margin: 20px 15px; }
        .list-inline { flex-direction: column; gap: 12px; }
    }
    .keyword-pc img, .keyword-rwd img {
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-width: 100%;
        height: auto;
    }
    .keyword-pc, .keyword-rwd { text-align: center; padding: 40px 20px; }
    @media (max-width: 576px) { .keyword-pc { display: none; } .keyword-rwd { display: block; } }
    @media (min-width: 577px) { .keyword-pc { display: block; } .keyword-rwd { display: none; } }
    .btn-primary { display: inline-block; background: #f0a020; color: white; padding: 10px 25px; border-radius: 30px; text-decoration: none; margin-top: 20px; }
    .btn-primary:hover { background: #d4891a; }
